blob: 5b96f621f7c96bf14bfff5b7b10c898cc21e74a4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/interrupt.h>
46#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080047#include <linux/leds.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/io.h>
49
50#ifdef CONFIG_MTD_PARTITIONS
51#include <linux/mtd/partitions.h>
52#endif
53
54/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020055static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .eccbytes = 3,
57 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020058 .oobfree = {
59 {.offset = 3,
60 .length = 2},
61 {.offset = 6,
62 .length = 2}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020065static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .eccbytes = 6,
67 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020068 .oobfree = {
69 {.offset = 8,
70 . length = 8}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020073static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .eccbytes = 24,
75 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010076 40, 41, 42, 43, 44, 45, 46, 47,
77 48, 49, 50, 51, 52, 53, 54, 55,
78 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020079 .oobfree = {
80 {.offset = 2,
81 .length = 38}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Thomas Gleixner81ec5362007-12-12 17:27:03 +010084static struct nand_ecclayout nand_oob_128 = {
85 .eccbytes = 48,
86 .eccpos = {
87 80, 81, 82, 83, 84, 85, 86, 87,
88 88, 89, 90, 91, 92, 93, 94, 95,
89 96, 97, 98, 99, 100, 101, 102, 103,
90 104, 105, 106, 107, 108, 109, 110, 111,
91 112, 113, 114, 115, 116, 117, 118, 119,
92 120, 121, 122, 123, 124, 125, 126, 127},
93 .oobfree = {
94 {.offset = 2,
95 .length = 78}}
96};
97
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020098static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020099 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200101static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
102 struct mtd_oob_ops *ops);
103
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104/*
Joe Perches8e87d782008-02-03 17:22:34 +0200105 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200106 * compiled away when LED support is disabled.
107 */
108DEFINE_LED_TRIGGER(nand_led_trigger);
109
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530110static int check_offs_len(struct mtd_info *mtd,
111 loff_t ofs, uint64_t len)
112{
113 struct nand_chip *chip = mtd->priv;
114 int ret = 0;
115
116 /* Start address must align on block boundary */
117 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
118 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
119 ret = -EINVAL;
120 }
121
122 /* Length must align on block boundary */
123 if (len & ((1 << chip->phys_erase_shift) - 1)) {
124 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
125 __func__);
126 ret = -EINVAL;
127 }
128
129 /* Do not allow past end of device */
130 if (ofs + len > mtd->size) {
131 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
132 __func__);
133 ret = -EINVAL;
134 }
135
136 return ret;
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
140 * nand_release_device - [GENERIC] release chip
141 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000142 *
143 * Deselect, release chip lock and wake up anyone waiting on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100145static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200147 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200150 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100151
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200152 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200153 spin_lock(&chip->controller->lock);
154 chip->controller->active = NULL;
155 chip->state = FL_READY;
156 wake_up(&chip->controller->wq);
157 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/**
161 * nand_read_byte - [DEFAULT] read one byte from the chip
162 * @mtd: MTD device structure
163 *
164 * Default read function for 8bit buswith
165 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200166static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200168 struct nand_chip *chip = mtd->priv;
169 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
174 * @mtd: MTD device structure
175 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000176 * Default read function for 16bit buswith with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * endianess conversion
178 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200179static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200181 struct nand_chip *chip = mtd->priv;
182 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * nand_read_word - [DEFAULT] read one word from the chip
187 * @mtd: MTD device structure
188 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000189 * Default read function for 16bit buswith without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * endianess conversion
191 */
192static u16 nand_read_word(struct mtd_info *mtd)
193{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200194 struct nand_chip *chip = mtd->priv;
195 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * nand_select_chip - [DEFAULT] control CE line
200 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700201 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 *
203 * Default select function for 1 chip devices.
204 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200205static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200207 struct nand_chip *chip = mtd->priv;
208
209 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200211 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215
216 default:
217 BUG();
218 }
219}
220
221/**
222 * nand_write_buf - [DEFAULT] write buffer to chip
223 * @mtd: MTD device structure
224 * @buf: data buffer
225 * @len: number of bytes to write
226 *
227 * Default write function for 8bit buswith
228 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200229static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200232 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
David Woodhousee0c7d762006-05-13 18:07:53 +0100234 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200235 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000239 * nand_read_buf - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * @mtd: MTD device structure
241 * @buf: buffer to store date
242 * @len: number of bytes to read
243 *
244 * Default read function for 8bit buswith
245 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200246static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200249 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
David Woodhousee0c7d762006-05-13 18:07:53 +0100251 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200252 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000256 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * @mtd: MTD device structure
258 * @buf: buffer containing the data to compare
259 * @len: number of bytes to compare
260 *
261 * Default verify function for 8bit buswith
262 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200263static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200266 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David Woodhousee0c7d762006-05-13 18:07:53 +0100268 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200269 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return 0;
272}
273
274/**
275 * nand_write_buf16 - [DEFAULT] write buffer to chip
276 * @mtd: MTD device structure
277 * @buf: data buffer
278 * @len: number of bytes to write
279 *
280 * Default write function for 16bit buswith
281 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200282static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200285 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 u16 *p = (u16 *) buf;
287 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000288
David Woodhousee0c7d762006-05-13 18:07:53 +0100289 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200290 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000295 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * @mtd: MTD device structure
297 * @buf: buffer to store date
298 * @len: number of bytes to read
299 *
300 * Default read function for 16bit buswith
301 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200302static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200305 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 u16 *p = (u16 *) buf;
307 len >>= 1;
308
David Woodhousee0c7d762006-05-13 18:07:53 +0100309 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200310 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000314 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * @mtd: MTD device structure
316 * @buf: buffer containing the data to compare
317 * @len: number of bytes to compare
318 *
319 * Default verify function for 16bit buswith
320 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200321static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200324 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 u16 *p = (u16 *) buf;
326 len >>= 1;
327
David Woodhousee0c7d762006-05-13 18:07:53 +0100328 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200329 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return -EFAULT;
331
332 return 0;
333}
334
335/**
336 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
337 * @mtd: MTD device structure
338 * @ofs: offset from device start
339 * @getchip: 0, if the chip is already selected
340 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000341 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
343static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
344{
345 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200346 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 u16 bad;
348
Brian Norris30fe8112010-06-23 13:36:02 -0700349 if (chip->options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700350 ofs += mtd->erasesize - mtd->writesize;
351
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100352 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200357 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200360 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200363 if (chip->options & NAND_BUSWIDTH_16) {
364 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100365 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200366 bad = cpu_to_le16(chip->read_word(mtd));
367 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000368 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200369 else
370 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100372 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200373 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000375
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200376 if (likely(chip->badblockbits == 8))
377 res = bad != 0xFF;
378 else
379 res = hweight8(bad) < chip->badblockbits;
380
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200381 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return res;
385}
386
387/**
388 * nand_default_block_markbad - [DEFAULT] mark a block bad
389 * @mtd: MTD device structure
390 * @ofs: offset from device start
391 *
392 * This is the default implementation, which can be overridden by
393 * a hardware specific driver.
394*/
395static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
396{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200397 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200398 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700399 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000400
Brian Norris30fe8112010-06-23 13:36:02 -0700401 if (chip->options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700402 ofs += mtd->erasesize - mtd->writesize;
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400405 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200406 if (chip->bbt)
407 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Do we have a flash based bad block table ? */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200410 if (chip->options & NAND_USE_FLASH_BBT)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200411 ret = nand_update_bbt(mtd, ofs);
412 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300413 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000414
Brian Norris02ed70b2010-07-21 16:53:47 -0700415 /* Write to first two pages and to byte 1 and 6 if necessary.
416 * If we write to more than one location, the first error
417 * encountered quits the procedure. We write two bytes per
418 * location, so we dont have to mess with 16 bit access.
419 */
420 do {
421 chip->ops.len = chip->ops.ooblen = 2;
422 chip->ops.datbuf = NULL;
423 chip->ops.oobbuf = buf;
424 chip->ops.ooboffs = chip->badblockpos & ~0x01;
425
426 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
427
428 if (!ret && (chip->options & NAND_BBT_SCANBYTE1AND6)) {
429 chip->ops.ooboffs = NAND_SMALL_BADBLOCK_POS
430 & ~0x01;
431 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
432 }
433 i++;
434 ofs += mtd->writesize;
435 } while (!ret && (chip->options & NAND_BBT_SCAN2NDPAGE) &&
436 i < 2);
437
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300438 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200439 }
440 if (!ret)
441 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300442
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000446/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * nand_check_wp - [GENERIC] check if the chip is write protected
448 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000449 * Check, if the device is write protected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000451 * The function expects, that the device is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100453static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200455 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200456
457 /* broken xD cards report WP despite being writable */
458 if (chip->options & NAND_BROKEN_XD)
459 return 0;
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200462 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
463 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466/**
467 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
468 * @mtd: MTD device structure
469 * @ofs: offset from device start
470 * @getchip: 0, if the chip is already selected
471 * @allowbbt: 1, if its allowed to access the bbt area
472 *
473 * Check, if the block is bad. Either by reading the bad block table or
474 * calling of the scan function.
475 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200476static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
477 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200479 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000480
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200481 if (!chip->bbt)
482 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100485 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200488/**
489 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
490 * @mtd: MTD device structure
491 * @timeo: Timeout
492 *
493 * Helper function for nand_wait_ready used when needing to wait in interrupt
494 * context.
495 */
496static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
497{
498 struct nand_chip *chip = mtd->priv;
499 int i;
500
501 /* Wait for the device to get ready */
502 for (i = 0; i < timeo; i++) {
503 if (chip->dev_ready(mtd))
504 break;
505 touch_softlockup_watchdog();
506 mdelay(1);
507 }
508}
509
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000510/*
Thomas Gleixner3b887752005-02-22 21:56:49 +0000511 * Wait for the ready pin, after a command
512 * The timeout is catched later.
513 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100514void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000515{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200516 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100517 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000518
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200519 /* 400ms timeout */
520 if (in_interrupt() || oops_in_progress)
521 return panic_nand_wait_ready(mtd, 400);
522
Richard Purdie8fe833c2006-03-31 02:31:14 -0800523 led_trigger_event(nand_led_trigger, LED_FULL);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000524 /* wait until command is processed or timeout occures */
525 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200526 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800527 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700528 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000529 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800530 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000531}
David Woodhouse4b648b02006-09-25 17:05:24 +0100532EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/**
535 * nand_command - [DEFAULT] Send command to NAND device
536 * @mtd: MTD device structure
537 * @command: the command to be sent
538 * @column: the column address for this command, -1 if none
539 * @page_addr: the page address for this command, -1 if none
540 *
541 * Send command to NAND device. This function is used for small page
542 * devices (256/512 Bytes per page)
543 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200544static void nand_command(struct mtd_info *mtd, unsigned int command,
545 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200547 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200548 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /*
551 * Write out the command to the device.
552 */
553 if (command == NAND_CMD_SEQIN) {
554 int readcmd;
555
Joern Engel28318772006-05-22 23:18:05 +0200556 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200558 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 readcmd = NAND_CMD_READOOB;
560 } else if (column < 256) {
561 /* First 256 bytes --> READ0 */
562 readcmd = NAND_CMD_READ0;
563 } else {
564 column -= 256;
565 readcmd = NAND_CMD_READ1;
566 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200567 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200568 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200570 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200572 /*
573 * Address cycle, when necessary
574 */
575 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
576 /* Serially input address */
577 if (column != -1) {
578 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200580 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200581 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200582 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200584 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200585 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200586 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200587 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200588 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200589 if (chip->chipsize > (32 << 20))
590 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200591 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200592 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000593
594 /*
595 * program and erase have their own busy handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 case NAND_CMD_PAGEPROG:
601 case NAND_CMD_ERASE1:
602 case NAND_CMD_ERASE2:
603 case NAND_CMD_SEQIN:
604 case NAND_CMD_STATUS:
605 return;
606
607 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200608 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200610 udelay(chip->chip_delay);
611 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200612 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200613 chip->cmd_ctrl(mtd,
614 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200615 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return;
617
David Woodhousee0c7d762006-05-13 18:07:53 +0100618 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000620 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * If we don't have access to the busy pin, we apply the given
622 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100623 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200624 if (!chip->dev_ready) {
625 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* Apply this short delay always to ensure that we do wait tWB in
630 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100631 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000632
633 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636/**
637 * nand_command_lp - [DEFAULT] Send command to NAND large page device
638 * @mtd: MTD device structure
639 * @command: the command to be sent
640 * @column: the column address for this command, -1 if none
641 * @page_addr: the page address for this command, -1 if none
642 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200643 * Send command to NAND device. This is the version for the new large page
644 * devices We dont have the separate regions as we have in the small page
645 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200647static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
648 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200650 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* Emulate NAND_CMD_READOOB */
653 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200654 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 command = NAND_CMD_READ0;
656 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000657
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200658 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200659 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200660 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200663 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /* Serially input address */
666 if (column != -1) {
667 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200668 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200670 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200671 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200672 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200675 chip->cmd_ctrl(mtd, page_addr, ctrl);
676 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200677 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200679 if (chip->chipsize > (128 << 20))
680 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200681 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200684 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000685
686 /*
687 * program and erase have their own busy handlers
David A. Marlin30f464b2005-01-17 18:35:25 +0000688 * status, sequential in, and deplete1 need no delay
689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 case NAND_CMD_CACHEDPROG:
693 case NAND_CMD_PAGEPROG:
694 case NAND_CMD_ERASE1:
695 case NAND_CMD_ERASE2:
696 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200697 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000699 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return;
701
David Woodhousee0c7d762006-05-13 18:07:53 +0100702 /*
703 * read error status commands require only a short delay
704 */
David A. Marlin30f464b2005-01-17 18:35:25 +0000705 case NAND_CMD_STATUS_ERROR:
706 case NAND_CMD_STATUS_ERROR0:
707 case NAND_CMD_STATUS_ERROR1:
708 case NAND_CMD_STATUS_ERROR2:
709 case NAND_CMD_STATUS_ERROR3:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200710 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000711 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200714 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200716 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200717 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
718 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
719 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
720 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200721 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
723
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200724 case NAND_CMD_RNDOUT:
725 /* No ready / busy check necessary */
726 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
727 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
728 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
729 NAND_NCE | NAND_CTRL_CHANGE);
730 return;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200733 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
734 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
735 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
736 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000737
David Woodhousee0c7d762006-05-13 18:07:53 +0100738 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000740 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * If we don't have access to the busy pin, we apply the given
742 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100743 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200744 if (!chip->dev_ready) {
745 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* Apply this short delay always to ensure that we do wait tWB in
751 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100752 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000753
754 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200758 * panic_nand_get_device - [GENERIC] Get chip for selected access
759 * @chip: the nand chip descriptor
760 * @mtd: MTD device structure
761 * @new_state: the state which is requested
762 *
763 * Used when in panic, no locks are taken.
764 */
765static void panic_nand_get_device(struct nand_chip *chip,
766 struct mtd_info *mtd, int new_state)
767{
768 /* Hardware controller shared among independend devices */
769 chip->controller->active = chip;
770 chip->state = new_state;
771}
772
773/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * nand_get_device - [GENERIC] Get chip for selected access
Randy Dunlap844d3b42006-06-28 21:48:27 -0700775 * @chip: the nand chip descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000777 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
779 * Get the device and lock it for exclusive access
780 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200781static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200782nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200784 spinlock_t *lock = &chip->controller->lock;
785 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100786 DECLARE_WAITQUEUE(wait, current);
David Woodhousee0c7d762006-05-13 18:07:53 +0100787 retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100788 spin_lock(lock);
789
vimal singhb8b3ee92009-07-09 20:41:22 +0530790 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200791 if (!chip->controller->active)
792 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200793
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200794 if (chip->controller->active == chip && chip->state == FL_READY) {
795 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100796 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100797 return 0;
798 }
799 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800800 if (chip->controller->active->state == FL_PM_SUSPENDED) {
801 chip->state = FL_PM_SUSPENDED;
802 spin_unlock(lock);
803 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800804 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100805 }
806 set_current_state(TASK_UNINTERRUPTIBLE);
807 add_wait_queue(wq, &wait);
808 spin_unlock(lock);
809 schedule();
810 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 goto retry;
812}
813
814/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200815 * panic_nand_wait - [GENERIC] wait until the command is done
816 * @mtd: MTD device structure
817 * @chip: NAND chip structure
818 * @timeo: Timeout
819 *
820 * Wait for command done. This is a helper function for nand_wait used when
821 * we are in interrupt context. May happen when in panic and trying to write
822 * an oops trough mtdoops.
823 */
824static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
825 unsigned long timeo)
826{
827 int i;
828 for (i = 0; i < timeo; i++) {
829 if (chip->dev_ready) {
830 if (chip->dev_ready(mtd))
831 break;
832 } else {
833 if (chip->read_byte(mtd) & NAND_STATUS_READY)
834 break;
835 }
836 mdelay(1);
837 }
838}
839
840/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 * nand_wait - [DEFAULT] wait until the command is done
842 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700843 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 *
845 * Wait for command done. This applies to erase and program only
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000846 * Erase can take up to 400ms and program up to 20ms according to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 * general NAND and SmartMedia specs
Randy Dunlap844d3b42006-06-28 21:48:27 -0700848 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200849static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851
David Woodhousee0c7d762006-05-13 18:07:53 +0100852 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200853 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100856 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100858 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Richard Purdie8fe833c2006-03-31 02:31:14 -0800860 led_trigger_event(nand_led_trigger, LED_FULL);
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* Apply this short delay always to ensure that we do wait tWB in
863 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100864 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200866 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
867 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000868 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200869 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200871 if (in_interrupt() || oops_in_progress)
872 panic_nand_wait(mtd, chip, timeo);
873 else {
874 while (time_before(jiffies, timeo)) {
875 if (chip->dev_ready) {
876 if (chip->dev_ready(mtd))
877 break;
878 } else {
879 if (chip->read_byte(mtd) & NAND_STATUS_READY)
880 break;
881 }
882 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800885 led_trigger_event(nand_led_trigger, LED_OFF);
886
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200887 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return status;
889}
890
891/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700892 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530893 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700894 * @mtd: mtd info
895 * @ofs: offset to start unlock from
896 * @len: length to unlock
897 * @invert: when = 0, unlock the range of blocks within the lower and
Vimal Singh7d70f332010-02-08 15:50:49 +0530898 * upper boundary address
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700899 * when = 1, unlock the range of blocks outside the boundaries
Vimal Singh7d70f332010-02-08 15:50:49 +0530900 * of the lower and upper boundary address
901 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700902 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530903 */
904static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
905 uint64_t len, int invert)
906{
907 int ret = 0;
908 int status, page;
909 struct nand_chip *chip = mtd->priv;
910
911 /* Submit address of first page to unlock */
912 page = ofs >> chip->page_shift;
913 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
914
915 /* Submit address of last page to unlock */
916 page = (ofs + len) >> chip->page_shift;
917 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
918 (page | invert) & chip->pagemask);
919
920 /* Call wait ready function */
921 status = chip->waitfunc(mtd, chip);
922 udelay(1000);
923 /* See if device thinks it succeeded */
924 if (status & 0x01) {
925 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
926 __func__, status);
927 ret = -EIO;
928 }
929
930 return ret;
931}
932
933/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700934 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530935 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700936 * @mtd: mtd info
937 * @ofs: offset to start unlock from
938 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530939 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700940 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530941 */
942int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
943{
944 int ret = 0;
945 int chipnr;
946 struct nand_chip *chip = mtd->priv;
947
948 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
949 __func__, (unsigned long long)ofs, len);
950
951 if (check_offs_len(mtd, ofs, len))
952 ret = -EINVAL;
953
954 /* Align to last block address if size addresses end of the device */
955 if (ofs + len == mtd->size)
956 len -= mtd->erasesize;
957
958 nand_get_device(chip, mtd, FL_UNLOCKING);
959
960 /* Shift to get chip number */
961 chipnr = ofs >> chip->chip_shift;
962
963 chip->select_chip(mtd, chipnr);
964
965 /* Check, if it is write protected */
966 if (nand_check_wp(mtd)) {
967 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
968 __func__);
969 ret = -EIO;
970 goto out;
971 }
972
973 ret = __nand_unlock(mtd, ofs, len, 0);
974
975out:
976 /* de-select the NAND device */
977 chip->select_chip(mtd, -1);
978
979 nand_release_device(mtd);
980
981 return ret;
982}
983
984/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700985 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Vimal Singh7d70f332010-02-08 15:50:49 +0530986 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700987 * @mtd: mtd info
988 * @ofs: offset to start unlock from
989 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530990 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700991 * return - lock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530992 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700993 * This feature is not supported in many NAND parts. 'Micron' NAND parts
994 * do have this feature, but it allows only to lock all blocks, not for
Vimal Singh7d70f332010-02-08 15:50:49 +0530995 * specified range for block.
996 *
997 * Implementing 'lock' feature by making use of 'unlock', for now.
998 */
999int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1000{
1001 int ret = 0;
1002 int chipnr, status, page;
1003 struct nand_chip *chip = mtd->priv;
1004
1005 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
1006 __func__, (unsigned long long)ofs, len);
1007
1008 if (check_offs_len(mtd, ofs, len))
1009 ret = -EINVAL;
1010
1011 nand_get_device(chip, mtd, FL_LOCKING);
1012
1013 /* Shift to get chip number */
1014 chipnr = ofs >> chip->chip_shift;
1015
1016 chip->select_chip(mtd, chipnr);
1017
1018 /* Check, if it is write protected */
1019 if (nand_check_wp(mtd)) {
1020 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1021 __func__);
1022 status = MTD_ERASE_FAILED;
1023 ret = -EIO;
1024 goto out;
1025 }
1026
1027 /* Submit address of first page to lock */
1028 page = ofs >> chip->page_shift;
1029 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1030
1031 /* Call wait ready function */
1032 status = chip->waitfunc(mtd, chip);
1033 udelay(1000);
1034 /* See if device thinks it succeeded */
1035 if (status & 0x01) {
1036 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1037 __func__, status);
1038 ret = -EIO;
1039 goto out;
1040 }
1041
1042 ret = __nand_unlock(mtd, ofs, len, 0x1);
1043
1044out:
1045 /* de-select the NAND device */
1046 chip->select_chip(mtd, -1);
1047
1048 nand_release_device(mtd);
1049
1050 return ret;
1051}
1052
1053/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001054 * nand_read_page_raw - [Intern] read raw page data without ecc
1055 * @mtd: mtd info structure
1056 * @chip: nand chip info structure
1057 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001058 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001059 *
1060 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001061 */
1062static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001063 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001064{
1065 chip->read_buf(mtd, buf, mtd->writesize);
1066 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1067 return 0;
1068}
1069
1070/**
David Brownell52ff49d2009-03-04 12:01:36 -08001071 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
1072 * @mtd: mtd info structure
1073 * @chip: nand chip info structure
1074 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001075 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001076 *
1077 * We need a special oob layout and handling even when OOB isn't used.
1078 */
1079static int nand_read_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001080 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001081{
1082 int eccsize = chip->ecc.size;
1083 int eccbytes = chip->ecc.bytes;
1084 uint8_t *oob = chip->oob_poi;
1085 int steps, size;
1086
1087 for (steps = chip->ecc.steps; steps > 0; steps--) {
1088 chip->read_buf(mtd, buf, eccsize);
1089 buf += eccsize;
1090
1091 if (chip->ecc.prepad) {
1092 chip->read_buf(mtd, oob, chip->ecc.prepad);
1093 oob += chip->ecc.prepad;
1094 }
1095
1096 chip->read_buf(mtd, oob, eccbytes);
1097 oob += eccbytes;
1098
1099 if (chip->ecc.postpad) {
1100 chip->read_buf(mtd, oob, chip->ecc.postpad);
1101 oob += chip->ecc.postpad;
1102 }
1103 }
1104
1105 size = mtd->oobsize - (oob - chip->oob_poi);
1106 if (size)
1107 chip->read_buf(mtd, oob, size);
1108
1109 return 0;
1110}
1111
1112/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001113 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001114 * @mtd: mtd info structure
1115 * @chip: nand chip info structure
1116 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001117 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001118 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001119static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001120 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001122 int i, eccsize = chip->ecc.size;
1123 int eccbytes = chip->ecc.bytes;
1124 int eccsteps = chip->ecc.steps;
1125 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001126 uint8_t *ecc_calc = chip->buffers->ecccalc;
1127 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001128 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001129
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001130 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001131
1132 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1133 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1134
1135 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001136 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001137
1138 eccsteps = chip->ecc.steps;
1139 p = buf;
1140
1141 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1142 int stat;
1143
1144 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001145 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001146 mtd->ecc_stats.failed++;
1147 else
1148 mtd->ecc_stats.corrected += stat;
1149 }
1150 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001151}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153/**
Alexey Korolev3d459552008-05-15 17:23:18 +01001154 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
1155 * @mtd: mtd info structure
1156 * @chip: nand chip info structure
Alexey Korolev17c1d2b2008-08-20 22:32:08 +01001157 * @data_offs: offset of requested data within the page
1158 * @readlen: data length
1159 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001160 */
1161static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip, uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
1162{
1163 int start_step, end_step, num_steps;
1164 uint32_t *eccpos = chip->ecc.layout->eccpos;
1165 uint8_t *p;
1166 int data_col_addr, i, gaps = 0;
1167 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1168 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
1169
1170 /* Column address wihin the page aligned to ECC size (256bytes). */
1171 start_step = data_offs / chip->ecc.size;
1172 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1173 num_steps = end_step - start_step + 1;
1174
1175 /* Data size aligned to ECC ecc.size*/
1176 datafrag_len = num_steps * chip->ecc.size;
1177 eccfrag_len = num_steps * chip->ecc.bytes;
1178
1179 data_col_addr = start_step * chip->ecc.size;
1180 /* If we read not a page aligned data */
1181 if (data_col_addr != 0)
1182 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1183
1184 p = bufpoi + data_col_addr;
1185 chip->read_buf(mtd, p, datafrag_len);
1186
1187 /* Calculate ECC */
1188 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1189 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1190
1191 /* The performance is faster if to position offsets
1192 according to ecc.pos. Let make sure here that
1193 there are no gaps in ecc positions */
1194 for (i = 0; i < eccfrag_len - 1; i++) {
1195 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1196 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1197 gaps = 1;
1198 break;
1199 }
1200 }
1201 if (gaps) {
1202 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1203 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1204 } else {
1205 /* send the command to read the particular ecc bytes */
1206 /* take care about buswidth alignment in read_buf */
1207 aligned_pos = eccpos[start_step * chip->ecc.bytes] & ~(busw - 1);
1208 aligned_len = eccfrag_len;
1209 if (eccpos[start_step * chip->ecc.bytes] & (busw - 1))
1210 aligned_len++;
1211 if (eccpos[(start_step + num_steps) * chip->ecc.bytes] & (busw - 1))
1212 aligned_len++;
1213
1214 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize + aligned_pos, -1);
1215 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1216 }
1217
1218 for (i = 0; i < eccfrag_len; i++)
1219 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + start_step * chip->ecc.bytes]];
1220
1221 p = bufpoi + data_col_addr;
1222 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1223 int stat;
1224
1225 stat = chip->ecc.correct(mtd, p, &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001226 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001227 mtd->ecc_stats.failed++;
1228 else
1229 mtd->ecc_stats.corrected += stat;
1230 }
1231 return 0;
1232}
1233
1234/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001235 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001236 * @mtd: mtd info structure
1237 * @chip: nand chip info structure
1238 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001239 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001240 *
1241 * Not for syndrome calculating ecc controllers which need a special oob layout
1242 */
1243static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001244 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001245{
1246 int i, eccsize = chip->ecc.size;
1247 int eccbytes = chip->ecc.bytes;
1248 int eccsteps = chip->ecc.steps;
1249 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001250 uint8_t *ecc_calc = chip->buffers->ecccalc;
1251 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001252 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001253
1254 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1255 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1256 chip->read_buf(mtd, p, eccsize);
1257 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1258 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001259 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001260
1261 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001262 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001263
1264 eccsteps = chip->ecc.steps;
1265 p = buf;
1266
1267 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1268 int stat;
1269
1270 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001271 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001272 mtd->ecc_stats.failed++;
1273 else
1274 mtd->ecc_stats.corrected += stat;
1275 }
1276 return 0;
1277}
1278
1279/**
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001280 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
1281 * @mtd: mtd info structure
1282 * @chip: nand chip info structure
1283 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001284 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001285 *
1286 * Hardware ECC for large page chips, require OOB to be read first.
1287 * For this ECC mode, the write_page method is re-used from ECC_HW.
1288 * These methods read/write ECC from the OOB area, unlike the
1289 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
1290 * "infix ECC" scheme and reads/writes ECC from the data area, by
1291 * overwriting the NAND manufacturer bad block markings.
1292 */
1293static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1294 struct nand_chip *chip, uint8_t *buf, int page)
1295{
1296 int i, eccsize = chip->ecc.size;
1297 int eccbytes = chip->ecc.bytes;
1298 int eccsteps = chip->ecc.steps;
1299 uint8_t *p = buf;
1300 uint8_t *ecc_code = chip->buffers->ecccode;
1301 uint32_t *eccpos = chip->ecc.layout->eccpos;
1302 uint8_t *ecc_calc = chip->buffers->ecccalc;
1303
1304 /* Read the OOB area first */
1305 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1306 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1307 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1308
1309 for (i = 0; i < chip->ecc.total; i++)
1310 ecc_code[i] = chip->oob_poi[eccpos[i]];
1311
1312 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1313 int stat;
1314
1315 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1316 chip->read_buf(mtd, p, eccsize);
1317 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1318
1319 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1320 if (stat < 0)
1321 mtd->ecc_stats.failed++;
1322 else
1323 mtd->ecc_stats.corrected += stat;
1324 }
1325 return 0;
1326}
1327
1328/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001329 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001330 * @mtd: mtd info structure
1331 * @chip: nand chip info structure
1332 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001333 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001334 *
1335 * The hw generator calculates the error syndrome automatically. Therefor
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001336 * we need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001337 */
1338static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001339 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001340{
1341 int i, eccsize = chip->ecc.size;
1342 int eccbytes = chip->ecc.bytes;
1343 int eccsteps = chip->ecc.steps;
1344 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001345 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001346
1347 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1348 int stat;
1349
1350 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1351 chip->read_buf(mtd, p, eccsize);
1352
1353 if (chip->ecc.prepad) {
1354 chip->read_buf(mtd, oob, chip->ecc.prepad);
1355 oob += chip->ecc.prepad;
1356 }
1357
1358 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1359 chip->read_buf(mtd, oob, eccbytes);
1360 stat = chip->ecc.correct(mtd, p, oob, NULL);
1361
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001362 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001363 mtd->ecc_stats.failed++;
1364 else
1365 mtd->ecc_stats.corrected += stat;
1366
1367 oob += eccbytes;
1368
1369 if (chip->ecc.postpad) {
1370 chip->read_buf(mtd, oob, chip->ecc.postpad);
1371 oob += chip->ecc.postpad;
1372 }
1373 }
1374
1375 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001376 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001377 if (i)
1378 chip->read_buf(mtd, oob, i);
1379
1380 return 0;
1381}
1382
1383/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001384 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1385 * @chip: nand chip structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07001386 * @oob: oob destination address
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001387 * @ops: oob ops structure
Vitaly Wool70145682006-11-03 18:20:38 +03001388 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001389 */
1390static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001391 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001392{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001393 switch(ops->mode) {
1394
1395 case MTD_OOB_PLACE:
1396 case MTD_OOB_RAW:
1397 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1398 return oob + len;
1399
1400 case MTD_OOB_AUTO: {
1401 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001402 uint32_t boffs = 0, roffs = ops->ooboffs;
1403 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001404
1405 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001406 /* Read request not from offset 0 ? */
1407 if (unlikely(roffs)) {
1408 if (roffs >= free->length) {
1409 roffs -= free->length;
1410 continue;
1411 }
1412 boffs = free->offset + roffs;
1413 bytes = min_t(size_t, len,
1414 (free->length - roffs));
1415 roffs = 0;
1416 } else {
1417 bytes = min_t(size_t, len, free->length);
1418 boffs = free->offset;
1419 }
1420 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001421 oob += bytes;
1422 }
1423 return oob;
1424 }
1425 default:
1426 BUG();
1427 }
1428 return NULL;
1429}
1430
1431/**
1432 * nand_do_read_ops - [Internal] Read data with ECC
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001433 *
David A. Marlin068e3c02005-01-24 03:07:46 +00001434 * @mtd: MTD device structure
1435 * @from: offset to read from
Randy Dunlap844d3b42006-06-28 21:48:27 -07001436 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001437 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001438 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001439 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1441 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001442{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001443 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001444 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001445 struct mtd_ecc_stats stats;
1446 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1447 int sndcmd = 1;
1448 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001449 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001450 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001451 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1452 mtd->oobavail : mtd->oobsize;
1453
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001454 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001456 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001458 chipnr = (int)(from >> chip->chip_shift);
1459 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001461 realpage = (int)(from >> chip->page_shift);
1462 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001464 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001466 buf = ops->datbuf;
1467 oob = ops->oobbuf;
1468
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001469 while(1) {
1470 bytes = min(mtd->writesize - col, readlen);
1471 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001472
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001473 /* Is the current page in the buffer ? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001474 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001475 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001477 if (likely(sndcmd)) {
1478 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1479 sndcmd = 0;
1480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001482 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001483 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001484 ret = chip->ecc.read_page_raw(mtd, chip,
1485 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001486 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
1487 ret = chip->ecc.read_subpage(mtd, chip, 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) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001496 if (!NAND_SUBPAGE_READ(chip) && !oob)
1497 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001498 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001500
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001501 buf += bytes;
1502
1503 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001504
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001505 int toread = min(oobreadlen, max_oobsize);
1506
1507 if (toread) {
1508 oob = nand_transfer_oob(chip,
1509 oob, ops, toread);
1510 oobreadlen -= toread;
1511 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001512 }
1513
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001514 if (!(chip->options & NAND_NO_READRDY)) {
1515 /*
1516 * Apply delay or wait for ready/busy pin. Do
1517 * this before the AUTOINCR check, so no
1518 * problems arise if a chip which does auto
1519 * increment is marked as NOAUTOINCR by the
1520 * board driver.
1521 */
1522 if (!chip->dev_ready)
1523 udelay(chip->chip_delay);
1524 else
1525 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001527 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001528 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001529 buf += bytes;
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001532 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001533
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001534 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /* For subsequent reads align to page boundary. */
1538 col = 0;
1539 /* Increment page address */
1540 realpage++;
1541
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001542 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 /* Check, if we cross a chip boundary */
1544 if (!page) {
1545 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001546 chip->select_chip(mtd, -1);
1547 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001549
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001550 /* Check, if the chip supports auto page increment
1551 * or if we have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001552 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001553 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001554 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001557 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001558 if (oob)
1559 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001561 if (ret)
1562 return ret;
1563
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001564 if (mtd->ecc_stats.failed - stats.failed)
1565 return -EBADMSG;
1566
1567 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001568}
1569
1570/**
1571 * nand_read - [MTD Interface] MTD compability function for nand_do_read_ecc
1572 * @mtd: MTD device structure
1573 * @from: offset to read from
1574 * @len: number of bytes to read
1575 * @retlen: pointer to variable to store the number of read bytes
1576 * @buf: the databuffer to put data
1577 *
1578 * Get hold of the chip and call nand_do_read
1579 */
1580static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1581 size_t *retlen, uint8_t *buf)
1582{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001583 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001584 int ret;
1585
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001586 /* Do not allow reads past end of device */
1587 if ((from + len) > mtd->size)
1588 return -EINVAL;
1589 if (!len)
1590 return 0;
1591
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001592 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001593
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001594 chip->ops.len = len;
1595 chip->ops.datbuf = buf;
1596 chip->ops.oobbuf = NULL;
1597
1598 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001599
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001600 *retlen = chip->ops.retlen;
1601
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001602 nand_release_device(mtd);
1603
1604 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001608 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1609 * @mtd: mtd info structure
1610 * @chip: nand chip info structure
1611 * @page: page number to read
1612 * @sndcmd: flag whether to issue read command or not
1613 */
1614static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1615 int page, int sndcmd)
1616{
1617 if (sndcmd) {
1618 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1619 sndcmd = 0;
1620 }
1621 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1622 return sndcmd;
1623}
1624
1625/**
1626 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1627 * with syndromes
1628 * @mtd: mtd info structure
1629 * @chip: nand chip info structure
1630 * @page: page number to read
1631 * @sndcmd: flag whether to issue read command or not
1632 */
1633static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1634 int page, int sndcmd)
1635{
1636 uint8_t *buf = chip->oob_poi;
1637 int length = mtd->oobsize;
1638 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1639 int eccsize = chip->ecc.size;
1640 uint8_t *bufpoi = buf;
1641 int i, toread, sndrnd = 0, pos;
1642
1643 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1644 for (i = 0; i < chip->ecc.steps; i++) {
1645 if (sndrnd) {
1646 pos = eccsize + i * (eccsize + chunk);
1647 if (mtd->writesize > 512)
1648 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1649 else
1650 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1651 } else
1652 sndrnd = 1;
1653 toread = min_t(int, length, chunk);
1654 chip->read_buf(mtd, bufpoi, toread);
1655 bufpoi += toread;
1656 length -= toread;
1657 }
1658 if (length > 0)
1659 chip->read_buf(mtd, bufpoi, length);
1660
1661 return 1;
1662}
1663
1664/**
1665 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1666 * @mtd: mtd info structure
1667 * @chip: nand chip info structure
1668 * @page: page number to write
1669 */
1670static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1671 int page)
1672{
1673 int status = 0;
1674 const uint8_t *buf = chip->oob_poi;
1675 int length = mtd->oobsize;
1676
1677 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1678 chip->write_buf(mtd, buf, length);
1679 /* Send command to program the OOB data */
1680 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1681
1682 status = chip->waitfunc(mtd, chip);
1683
Savin Zlobec0d420f92006-06-21 11:51:20 +02001684 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001685}
1686
1687/**
1688 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1689 * with syndrome - only for large page flash !
1690 * @mtd: mtd info structure
1691 * @chip: nand chip info structure
1692 * @page: page number to write
1693 */
1694static int nand_write_oob_syndrome(struct mtd_info *mtd,
1695 struct nand_chip *chip, int page)
1696{
1697 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1698 int eccsize = chip->ecc.size, length = mtd->oobsize;
1699 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1700 const uint8_t *bufpoi = chip->oob_poi;
1701
1702 /*
1703 * data-ecc-data-ecc ... ecc-oob
1704 * or
1705 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1706 */
1707 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1708 pos = steps * (eccsize + chunk);
1709 steps = 0;
1710 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001711 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001712
1713 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1714 for (i = 0; i < steps; i++) {
1715 if (sndcmd) {
1716 if (mtd->writesize <= 512) {
1717 uint32_t fill = 0xFFFFFFFF;
1718
1719 len = eccsize;
1720 while (len > 0) {
1721 int num = min_t(int, len, 4);
1722 chip->write_buf(mtd, (uint8_t *)&fill,
1723 num);
1724 len -= num;
1725 }
1726 } else {
1727 pos = eccsize + i * (eccsize + chunk);
1728 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1729 }
1730 } else
1731 sndcmd = 1;
1732 len = min_t(int, length, chunk);
1733 chip->write_buf(mtd, bufpoi, len);
1734 bufpoi += len;
1735 length -= len;
1736 }
1737 if (length > 0)
1738 chip->write_buf(mtd, bufpoi, length);
1739
1740 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1741 status = chip->waitfunc(mtd, chip);
1742
1743 return status & NAND_STATUS_FAIL ? -EIO : 0;
1744}
1745
1746/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001747 * nand_do_read_oob - [Intern] NAND read out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 * @mtd: MTD device structure
1749 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001750 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 *
1752 * NAND read out-of-band data from the spare area
1753 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001754static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1755 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001757 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001758 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001759 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001760 int readlen = ops->ooblen;
1761 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001762 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
vimal singh20d8e242009-07-07 15:49:49 +05301764 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1765 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Adrian Hunter03736152007-01-31 17:58:29 +02001767 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001768 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001769 else
1770 len = mtd->oobsize;
1771
1772 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301773 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1774 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001775 return -EINVAL;
1776 }
1777
1778 /* Do not allow reads past end of device */
1779 if (unlikely(from >= mtd->size ||
1780 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1781 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301782 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1783 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001784 return -EINVAL;
1785 }
Vitaly Wool70145682006-11-03 18:20:38 +03001786
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001787 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001788 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001790 /* Shift to get page */
1791 realpage = (int)(from >> chip->page_shift);
1792 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001794 while(1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001795 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001796
1797 len = min(len, readlen);
1798 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001799
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001800 if (!(chip->options & NAND_NO_READRDY)) {
1801 /*
1802 * Apply delay or wait for ready/busy pin. Do this
1803 * before the AUTOINCR check, so no problems arise if a
1804 * chip which does auto increment is marked as
1805 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001806 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001807 if (!chip->dev_ready)
1808 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001809 else
1810 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001812
Vitaly Wool70145682006-11-03 18:20:38 +03001813 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001814 if (!readlen)
1815 break;
1816
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001817 /* Increment page address */
1818 realpage++;
1819
1820 page = realpage & chip->pagemask;
1821 /* Check, if we cross a chip boundary */
1822 if (!page) {
1823 chipnr++;
1824 chip->select_chip(mtd, -1);
1825 chip->select_chip(mtd, chipnr);
1826 }
1827
1828 /* Check, if the chip supports auto page increment
1829 * or if we have hit a block boundary.
1830 */
1831 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1832 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834
Vitaly Wool70145682006-11-03 18:20:38 +03001835 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return 0;
1837}
1838
1839/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001840 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001843 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001845 * NAND read data and/or out-of-band data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001847static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1848 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001850 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001851 int ret = -ENOTSUPP;
1852
1853 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001856 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301857 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1858 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return -EINVAL;
1860 }
1861
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001862 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001864 switch(ops->mode) {
1865 case MTD_OOB_PLACE:
1866 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001867 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001868 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001869
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001870 default:
1871 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
1873
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001874 if (!ops->datbuf)
1875 ret = nand_do_read_oob(mtd, from, ops);
1876 else
1877 ret = nand_do_read_ops(mtd, from, ops);
1878
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001879 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001881 return ret;
1882}
1883
1884
1885/**
1886 * nand_write_page_raw - [Intern] raw page write function
1887 * @mtd: mtd info structure
1888 * @chip: nand chip info structure
1889 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001890 *
1891 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001892 */
1893static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1894 const uint8_t *buf)
1895{
1896 chip->write_buf(mtd, buf, mtd->writesize);
1897 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001900/**
David Brownell52ff49d2009-03-04 12:01:36 -08001901 * nand_write_page_raw_syndrome - [Intern] raw page write function
1902 * @mtd: mtd info structure
1903 * @chip: nand chip info structure
1904 * @buf: data buffer
1905 *
1906 * We need a special oob layout and handling even when ECC isn't checked.
1907 */
1908static void nand_write_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1909 const uint8_t *buf)
1910{
1911 int eccsize = chip->ecc.size;
1912 int eccbytes = chip->ecc.bytes;
1913 uint8_t *oob = chip->oob_poi;
1914 int steps, size;
1915
1916 for (steps = chip->ecc.steps; steps > 0; steps--) {
1917 chip->write_buf(mtd, buf, eccsize);
1918 buf += eccsize;
1919
1920 if (chip->ecc.prepad) {
1921 chip->write_buf(mtd, oob, chip->ecc.prepad);
1922 oob += chip->ecc.prepad;
1923 }
1924
1925 chip->read_buf(mtd, oob, eccbytes);
1926 oob += eccbytes;
1927
1928 if (chip->ecc.postpad) {
1929 chip->write_buf(mtd, oob, chip->ecc.postpad);
1930 oob += chip->ecc.postpad;
1931 }
1932 }
1933
1934 size = mtd->oobsize - (oob - chip->oob_poi);
1935 if (size)
1936 chip->write_buf(mtd, oob, size);
1937}
1938/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001939 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001940 * @mtd: mtd info structure
1941 * @chip: nand chip info structure
1942 * @buf: data buffer
1943 */
1944static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1945 const uint8_t *buf)
1946{
1947 int i, eccsize = chip->ecc.size;
1948 int eccbytes = chip->ecc.bytes;
1949 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001950 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001951 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001952 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001953
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001954 /* Software ecc calculation */
1955 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1956 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001957
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001958 for (i = 0; i < chip->ecc.total; i++)
1959 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001960
Thomas Gleixner90424de2007-04-05 11:44:05 +02001961 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001962}
1963
1964/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001965 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001966 * @mtd: mtd info structure
1967 * @chip: nand chip info structure
1968 * @buf: data buffer
1969 */
1970static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1971 const uint8_t *buf)
1972{
1973 int i, eccsize = chip->ecc.size;
1974 int eccbytes = chip->ecc.bytes;
1975 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001976 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001977 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001978 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001979
1980 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1981 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001982 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001983 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1984 }
1985
1986 for (i = 0; i < chip->ecc.total; i++)
1987 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1988
1989 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1990}
1991
1992/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001993 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001994 * @mtd: mtd info structure
1995 * @chip: nand chip info structure
1996 * @buf: data buffer
1997 *
1998 * The hw generator calculates the error syndrome automatically. Therefor
1999 * we need a special oob layout and handling.
2000 */
2001static void nand_write_page_syndrome(struct mtd_info *mtd,
2002 struct nand_chip *chip, const uint8_t *buf)
2003{
2004 int i, eccsize = chip->ecc.size;
2005 int eccbytes = chip->ecc.bytes;
2006 int eccsteps = chip->ecc.steps;
2007 const uint8_t *p = buf;
2008 uint8_t *oob = chip->oob_poi;
2009
2010 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2011
2012 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2013 chip->write_buf(mtd, p, eccsize);
2014
2015 if (chip->ecc.prepad) {
2016 chip->write_buf(mtd, oob, chip->ecc.prepad);
2017 oob += chip->ecc.prepad;
2018 }
2019
2020 chip->ecc.calculate(mtd, p, oob);
2021 chip->write_buf(mtd, oob, eccbytes);
2022 oob += eccbytes;
2023
2024 if (chip->ecc.postpad) {
2025 chip->write_buf(mtd, oob, chip->ecc.postpad);
2026 oob += chip->ecc.postpad;
2027 }
2028 }
2029
2030 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002031 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002032 if (i)
2033 chip->write_buf(mtd, oob, i);
2034}
2035
2036/**
David Woodhouse956e9442006-09-25 17:12:39 +01002037 * nand_write_page - [REPLACEABLE] write one page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002038 * @mtd: MTD device structure
2039 * @chip: NAND chip descriptor
2040 * @buf: the data to write
2041 * @page: page number to write
2042 * @cached: cached programming
Jesper Juhlefbfe96c2006-10-27 23:24:47 +02002043 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002044 */
2045static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002046 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002047{
2048 int status;
2049
2050 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2051
David Woodhouse956e9442006-09-25 17:12:39 +01002052 if (unlikely(raw))
2053 chip->ecc.write_page_raw(mtd, chip, buf);
2054 else
2055 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002056
2057 /*
2058 * Cached progamming disabled for now, Not sure if its worth the
2059 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
2060 */
2061 cached = 0;
2062
2063 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2064
2065 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002066 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002067 /*
2068 * See if operation failed and additional status checks are
2069 * available
2070 */
2071 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2072 status = chip->errstat(mtd, chip, FL_WRITING, status,
2073 page);
2074
2075 if (status & NAND_STATUS_FAIL)
2076 return -EIO;
2077 } else {
2078 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002079 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002080 }
2081
2082#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2083 /* Send command to read back the data */
2084 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2085
2086 if (chip->verify_buf(mtd, buf, mtd->writesize))
2087 return -EIO;
2088#endif
2089 return 0;
2090}
2091
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002092/**
2093 * nand_fill_oob - [Internal] Transfer client buffer to oob
2094 * @chip: nand chip structure
2095 * @oob: oob data buffer
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002096 * @len: oob data write length
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002097 * @ops: oob ops structure
2098 */
Maxim Levitsky782ce792010-02-22 20:39:36 +02002099static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,
2100 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002101{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002102 switch(ops->mode) {
2103
2104 case MTD_OOB_PLACE:
2105 case MTD_OOB_RAW:
2106 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2107 return oob + len;
2108
2109 case MTD_OOB_AUTO: {
2110 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002111 uint32_t boffs = 0, woffs = ops->ooboffs;
2112 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002113
2114 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002115 /* Write request not from offset 0 ? */
2116 if (unlikely(woffs)) {
2117 if (woffs >= free->length) {
2118 woffs -= free->length;
2119 continue;
2120 }
2121 boffs = free->offset + woffs;
2122 bytes = min_t(size_t, len,
2123 (free->length - woffs));
2124 woffs = 0;
2125 } else {
2126 bytes = min_t(size_t, len, free->length);
2127 boffs = free->offset;
2128 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002129 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002130 oob += bytes;
2131 }
2132 return oob;
2133 }
2134 default:
2135 BUG();
2136 }
2137 return NULL;
2138}
2139
Thomas Gleixner29072b92006-09-28 15:38:36 +02002140#define NOTALIGNED(x) (x & (chip->subpagesize - 1)) != 0
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002141
2142/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002143 * nand_do_write_ops - [Internal] NAND write with ECC
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002144 * @mtd: MTD device structure
2145 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002146 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002147 *
2148 * NAND write with ECC
2149 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002150static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2151 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002152{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002153 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002154 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002155 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002156
2157 uint32_t oobwritelen = ops->ooblen;
2158 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2159 mtd->oobavail : mtd->oobsize;
2160
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002161 uint8_t *oob = ops->oobbuf;
2162 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002163 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002164
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002165 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002166 if (!writelen)
2167 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002168
2169 /* reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002170 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302171 printk(KERN_NOTICE "%s: Attempt to write not "
2172 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002173 return -EINVAL;
2174 }
2175
Thomas Gleixner29072b92006-09-28 15:38:36 +02002176 column = to & (mtd->writesize - 1);
2177 subpage = column || (writelen & (mtd->writesize - 1));
2178
2179 if (subpage && oob)
2180 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002181
Thomas Gleixner6a930962006-06-28 00:11:45 +02002182 chipnr = (int)(to >> chip->chip_shift);
2183 chip->select_chip(mtd, chipnr);
2184
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002185 /* Check, if it is write protected */
2186 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002187 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002188
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002189 realpage = (int)(to >> chip->page_shift);
2190 page = realpage & chip->pagemask;
2191 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2192
2193 /* Invalidate the page cache, when we write to the cached page */
2194 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002195 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002196 chip->pagebuf = -1;
2197
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01002198 /* If we're not given explicit OOB data, let it be 0xFF */
2199 if (likely(!oob))
2200 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002201
Maxim Levitsky782ce792010-02-22 20:39:36 +02002202 /* Don't allow multipage oob writes with offset */
2203 if (ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
2204 return -EINVAL;
2205
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002206 while(1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002207 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002208 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002209 uint8_t *wbuf = buf;
2210
2211 /* Partial page write ? */
2212 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2213 cached = 0;
2214 bytes = min_t(int, bytes - column, (int) writelen);
2215 chip->pagebuf = -1;
2216 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2217 memcpy(&chip->buffers->databuf[column], buf, bytes);
2218 wbuf = chip->buffers->databuf;
2219 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002220
Maxim Levitsky782ce792010-02-22 20:39:36 +02002221 if (unlikely(oob)) {
2222 size_t len = min(oobwritelen, oobmaxlen);
2223 oob = nand_fill_oob(chip, oob, len, ops);
2224 oobwritelen -= len;
2225 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002226
Thomas Gleixner29072b92006-09-28 15:38:36 +02002227 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002228 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002229 if (ret)
2230 break;
2231
2232 writelen -= bytes;
2233 if (!writelen)
2234 break;
2235
Thomas Gleixner29072b92006-09-28 15:38:36 +02002236 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002237 buf += bytes;
2238 realpage++;
2239
2240 page = realpage & chip->pagemask;
2241 /* Check, if we cross a chip boundary */
2242 if (!page) {
2243 chipnr++;
2244 chip->select_chip(mtd, -1);
2245 chip->select_chip(mtd, chipnr);
2246 }
2247 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002248
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002249 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002250 if (unlikely(oob))
2251 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002252 return ret;
2253}
2254
2255/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002256 * panic_nand_write - [MTD Interface] NAND write with ECC
2257 * @mtd: MTD device structure
2258 * @to: offset to write to
2259 * @len: number of bytes to write
2260 * @retlen: pointer to variable to store the number of written bytes
2261 * @buf: the data to write
2262 *
2263 * NAND write with ECC. Used when performing writes in interrupt context, this
2264 * may for example be called by mtdoops when writing an oops while in panic.
2265 */
2266static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2267 size_t *retlen, const uint8_t *buf)
2268{
2269 struct nand_chip *chip = mtd->priv;
2270 int ret;
2271
2272 /* Do not allow reads past end of device */
2273 if ((to + len) > mtd->size)
2274 return -EINVAL;
2275 if (!len)
2276 return 0;
2277
2278 /* Wait for the device to get ready. */
2279 panic_nand_wait(mtd, chip, 400);
2280
2281 /* Grab the device. */
2282 panic_nand_get_device(chip, mtd, FL_WRITING);
2283
2284 chip->ops.len = len;
2285 chip->ops.datbuf = (uint8_t *)buf;
2286 chip->ops.oobbuf = NULL;
2287
2288 ret = nand_do_write_ops(mtd, to, &chip->ops);
2289
2290 *retlen = chip->ops.retlen;
2291 return ret;
2292}
2293
2294/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002295 * nand_write - [MTD Interface] NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 * @mtd: MTD device structure
2297 * @to: offset to write to
2298 * @len: number of bytes to write
2299 * @retlen: pointer to variable to store the number of written bytes
2300 * @buf: the data to write
2301 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002302 * NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002304static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002305 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002307 struct nand_chip *chip = mtd->priv;
2308 int ret;
2309
2310 /* Do not allow reads past end of device */
2311 if ((to + len) > mtd->size)
2312 return -EINVAL;
2313 if (!len)
2314 return 0;
2315
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002316 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002317
2318 chip->ops.len = len;
2319 chip->ops.datbuf = (uint8_t *)buf;
2320 chip->ops.oobbuf = NULL;
2321
2322 ret = nand_do_write_ops(mtd, to, &chip->ops);
2323
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002324 *retlen = chip->ops.retlen;
2325
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002326 nand_release_device(mtd);
2327
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002328 return ret;
2329}
2330
2331/**
2332 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
2333 * @mtd: MTD device structure
2334 * @to: offset to write to
2335 * @ops: oob operation description structure
2336 *
2337 * NAND write out-of-band
2338 */
2339static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2340 struct mtd_oob_ops *ops)
2341{
Adrian Hunter03736152007-01-31 17:58:29 +02002342 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002343 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
vimal singh20d8e242009-07-07 15:49:49 +05302345 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2346 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Adrian Hunter03736152007-01-31 17:58:29 +02002348 if (ops->mode == MTD_OOB_AUTO)
2349 len = chip->ecc.layout->oobavail;
2350 else
2351 len = mtd->oobsize;
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002354 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302355 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2356 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return -EINVAL;
2358 }
2359
Adrian Hunter03736152007-01-31 17:58:29 +02002360 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302361 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2362 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002363 return -EINVAL;
2364 }
2365
2366 /* Do not allow reads past end of device */
2367 if (unlikely(to >= mtd->size ||
2368 ops->ooboffs + ops->ooblen >
2369 ((mtd->size >> chip->page_shift) -
2370 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302371 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2372 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002373 return -EINVAL;
2374 }
2375
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002376 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002377 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002379 /* Shift to get page */
2380 page = (int)(to >> chip->page_shift);
2381
2382 /*
2383 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2384 * of my DiskOnChip 2000 test units) will clear the whole data page too
2385 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2386 * it in the doc2000 driver in August 1999. dwmw2.
2387 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002388 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 /* Check, if it is write protected */
2391 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002392 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002395 if (page == chip->pagebuf)
2396 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002398 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002399 nand_fill_oob(chip, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002400 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2401 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002402
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002403 if (status)
2404 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Vitaly Wool70145682006-11-03 18:20:38 +03002406 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002408 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002409}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002411/**
2412 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2413 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002414 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002415 * @ops: oob operation description structure
2416 */
2417static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2418 struct mtd_oob_ops *ops)
2419{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002420 struct nand_chip *chip = mtd->priv;
2421 int ret = -ENOTSUPP;
2422
2423 ops->retlen = 0;
2424
2425 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002426 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302427 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2428 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002429 return -EINVAL;
2430 }
2431
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002432 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002433
2434 switch(ops->mode) {
2435 case MTD_OOB_PLACE:
2436 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002437 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002438 break;
2439
2440 default:
2441 goto out;
2442 }
2443
2444 if (!ops->datbuf)
2445 ret = nand_do_write_oob(mtd, to, ops);
2446 else
2447 ret = nand_do_write_ops(mtd, to, ops);
2448
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002449 out:
2450 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return ret;
2452}
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2456 * @mtd: MTD device structure
2457 * @page: the page address of the block which will be erased
2458 *
2459 * Standard erase command for NAND chips
2460 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002461static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002463 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002465 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2466 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
2468
2469/**
2470 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2471 * @mtd: MTD device structure
2472 * @page: the page address of the block which will be erased
2473 *
2474 * AND multi block erase command function
2475 * Erase 4 consecutive blocks
2476 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002477static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002479 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002481 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2482 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2483 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2484 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2485 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
2488/**
2489 * nand_erase - [MTD Interface] erase block(s)
2490 * @mtd: MTD device structure
2491 * @instr: erase instruction
2492 *
2493 * Erase one ore more blocks
2494 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002495static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
David Woodhousee0c7d762006-05-13 18:07:53 +01002497 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002499
David A. Marlin30f464b2005-01-17 18:35:25 +00002500#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002502 * nand_erase_nand - [Internal] erase block(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 * @mtd: MTD device structure
2504 * @instr: erase instruction
2505 * @allowbbt: allow erasing the bbt area
2506 *
2507 * Erase one ore more blocks
2508 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002509int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2510 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Adrian Hunter69423d92008-12-10 13:37:21 +00002512 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002513 struct nand_chip *chip = mtd->priv;
Adrian Hunter69423d92008-12-10 13:37:21 +00002514 loff_t rewrite_bbt[NAND_MAX_CHIPS]={0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002515 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002516 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
vimal singh20d8e242009-07-07 15:49:49 +05302518 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2519 __func__, (unsigned long long)instr->addr,
2520 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302522 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002525 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002528 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002531 page = (int)(instr->addr >> chip->page_shift);
2532 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002535 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002538 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 /* Check, if it is write protected */
2541 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302542 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2543 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 instr->state = MTD_ERASE_FAILED;
2545 goto erase_exit;
2546 }
2547
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002548 /*
2549 * If BBT requires refresh, set the BBT page mask to see if the BBT
2550 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2551 * can not be matched. This is also done when the bbt is actually
2552 * erased to avoid recusrsive updates
2553 */
2554 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2555 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /* Loop through the pages */
2558 len = instr->len;
2559
2560 instr->state = MTD_ERASING;
2561
2562 while (len) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002563 /*
2564 * heck if we have a bad block, we do not erase bad blocks !
2565 */
2566 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2567 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302568 printk(KERN_WARNING "%s: attempt to erase a bad block "
2569 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 instr->state = MTD_ERASE_FAILED;
2571 goto erase_exit;
2572 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002573
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002574 /*
2575 * Invalidate the page cache, if we erase the block which
2576 * contains the current cached page
2577 */
2578 if (page <= chip->pagebuf && chip->pagebuf <
2579 (page + pages_per_block))
2580 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002582 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002583
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002584 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002586 /*
2587 * See if operation failed and additional status checks are
2588 * available
2589 */
2590 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2591 status = chip->errstat(mtd, chip, FL_ERASING,
2592 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002595 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302596 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2597 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002599 instr->fail_addr =
2600 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 goto erase_exit;
2602 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002603
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002604 /*
2605 * If BBT requires refresh, set the BBT rewrite flag to the
2606 * page being erased
2607 */
2608 if (bbt_masked_page != 0xffffffff &&
2609 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002610 rewrite_bbt[chipnr] =
2611 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002614 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 page += pages_per_block;
2616
2617 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002618 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002620 chip->select_chip(mtd, -1);
2621 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002622
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002623 /*
2624 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2625 * page mask to see if this BBT should be rewritten
2626 */
2627 if (bbt_masked_page != 0xffffffff &&
2628 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2629 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2630 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 }
2632 }
2633 instr->state = MTD_ERASE_DONE;
2634
David Woodhousee0c7d762006-05-13 18:07:53 +01002635 erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 /* Deselect and wake up anyone waiting on the device */
2640 nand_release_device(mtd);
2641
David Woodhouse49defc02007-10-06 15:01:59 -04002642 /* Do call back function */
2643 if (!ret)
2644 mtd_erase_callback(instr);
2645
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002646 /*
2647 * If BBT requires refresh and erase was successful, rewrite any
2648 * selected bad block tables
2649 */
2650 if (bbt_masked_page == 0xffffffff || ret)
2651 return ret;
2652
2653 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2654 if (!rewrite_bbt[chipnr])
2655 continue;
2656 /* update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302657 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2658 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2659 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002660 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002661 }
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 /* Return more or less happy */
2664 return ret;
2665}
2666
2667/**
2668 * nand_sync - [MTD Interface] sync
2669 * @mtd: MTD device structure
2670 *
2671 * Sync is actually a wait for chip ready function
2672 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002673static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002675 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
vimal singh20d8e242009-07-07 15:49:49 +05302677 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002680 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002682 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002686 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002688 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002690static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
2692 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002693 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002695
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002696 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
2699/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002700 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 * @mtd: MTD device structure
2702 * @ofs: offset relative to mtd start
2703 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002704static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002706 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 int ret;
2708
David Woodhousee0c7d762006-05-13 18:07:53 +01002709 if ((ret = nand_block_isbad(mtd, ofs))) {
2710 /* If it was bad already, return success and do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (ret > 0)
2712 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002713 return ret;
2714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002716 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
2719/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002720 * nand_suspend - [MTD Interface] Suspend the NAND flash
2721 * @mtd: MTD device structure
2722 */
2723static int nand_suspend(struct mtd_info *mtd)
2724{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002725 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002726
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002727 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002728}
2729
2730/**
2731 * nand_resume - [MTD Interface] Resume the NAND flash
2732 * @mtd: MTD device structure
2733 */
2734static void nand_resume(struct mtd_info *mtd)
2735{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002736 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002737
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002738 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002739 nand_release_device(mtd);
2740 else
vimal singh20d8e242009-07-07 15:49:49 +05302741 printk(KERN_ERR "%s called for a chip which is not "
2742 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002743}
2744
Thomas Gleixnera36ed292006-05-23 11:37:03 +02002745/*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002746 * Set default functions
2747 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002748static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002749{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002751 if (!chip->chip_delay)
2752 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002755 if (chip->cmdfunc == NULL)
2756 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002759 if (chip->waitfunc == NULL)
2760 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002762 if (!chip->select_chip)
2763 chip->select_chip = nand_select_chip;
2764 if (!chip->read_byte)
2765 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2766 if (!chip->read_word)
2767 chip->read_word = nand_read_word;
2768 if (!chip->block_bad)
2769 chip->block_bad = nand_block_bad;
2770 if (!chip->block_markbad)
2771 chip->block_markbad = nand_default_block_markbad;
2772 if (!chip->write_buf)
2773 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2774 if (!chip->read_buf)
2775 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2776 if (!chip->verify_buf)
2777 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2778 if (!chip->scan_bbt)
2779 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002780
2781 if (!chip->controller) {
2782 chip->controller = &chip->hwcontrol;
2783 spin_lock_init(&chip->controller->lock);
2784 init_waitqueue_head(&chip->controller->wq);
2785 }
2786
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002787}
2788
2789/*
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002790 * sanitize ONFI strings so we can safely print them
2791 */
2792static void sanitize_string(uint8_t *s, size_t len)
2793{
2794 ssize_t i;
2795
2796 /* null terminate */
2797 s[len - 1] = 0;
2798
2799 /* remove non printable chars */
2800 for (i = 0; i < len - 1; i++) {
2801 if (s[i] < ' ' || s[i] > 127)
2802 s[i] = '?';
2803 }
2804
2805 /* remove trailing spaces */
2806 strim(s);
2807}
2808
2809static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2810{
2811 int i;
2812 while (len--) {
2813 crc ^= *p++ << 8;
2814 for (i = 0; i < 8; i++)
2815 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2816 }
2817
2818 return crc;
2819}
2820
2821/*
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002822 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise
2823 */
2824static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2825 int busw)
2826{
2827 struct nand_onfi_params *p = &chip->onfi_params;
2828 int i;
2829 int val;
2830
2831 /* try ONFI for unknow chip or LP */
2832 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2833 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2834 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2835 return 0;
2836
2837 printk(KERN_INFO "ONFI flash detected\n");
2838 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2839 for (i = 0; i < 3; i++) {
2840 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2841 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2842 le16_to_cpu(p->crc)) {
2843 printk(KERN_INFO "ONFI param page %d valid\n", i);
2844 break;
2845 }
2846 }
2847
2848 if (i == 3)
2849 return 0;
2850
2851 /* check version */
2852 val = le16_to_cpu(p->revision);
2853 if (val == 1 || val > (1 << 4)) {
2854 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2855 __func__, val);
2856 return 0;
2857 }
2858
2859 if (val & (1 << 4))
2860 chip->onfi_version = 22;
2861 else if (val & (1 << 3))
2862 chip->onfi_version = 21;
2863 else if (val & (1 << 2))
2864 chip->onfi_version = 20;
2865 else
2866 chip->onfi_version = 10;
2867
2868 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2869 sanitize_string(p->model, sizeof(p->model));
2870 if (!mtd->name)
2871 mtd->name = p->model;
2872 mtd->writesize = le32_to_cpu(p->byte_per_page);
2873 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2874 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
2875 chip->chipsize = le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
2876 busw = 0;
2877 if (le16_to_cpu(p->features) & 1)
2878 busw = NAND_BUSWIDTH_16;
2879
2880 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2881 chip->options |= (NAND_NO_READRDY |
2882 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2883
2884 return 1;
2885}
2886
2887/*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002888 * Get the flash and manufacturer id and lookup if the type is supported
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002889 */
2890static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002891 struct nand_chip *chip,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002892 int busw, int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002893 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002894{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002895 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002896 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002897 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002900 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Karl Beldanef89a882008-09-15 14:37:29 +02002902 /*
2903 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2904 * after power-up
2905 */
2906 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002909 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002912 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002913 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Ben Dooksed8165c2008-04-14 14:58:58 +01002915 /* Try again to make sure, as some systems the bus-hold or other
2916 * interface concerns can cause random data which looks like a
2917 * possibly credible NAND flash to appear. If the two results do
2918 * not match, ignore the device completely.
2919 */
2920
2921 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2922
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002923 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002924 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002925
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002926 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ben Dooksed8165c2008-04-14 14:58:58 +01002927 printk(KERN_INFO "%s: second ID read did not match "
2928 "%02x,%02x against %02x,%02x\n", __func__,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002929 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002930 return ERR_PTR(-ENODEV);
2931 }
2932
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002933 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002934 type = nand_flash_ids;
2935
2936 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002937 if (*dev_id == type->id)
David Woodhouse5e81e882010-02-26 18:32:56 +00002938 break;
2939
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002940 chip->onfi_version = 0;
2941 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002942 /* Check is chip is ONFI compliant */
2943 ret = nand_flash_detect_onfi(mtd, chip, busw);
2944 if (ret)
2945 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002946 }
2947
2948 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2949
2950 /* Read entire ID string */
2951
2952 for (i = 0; i < 8; i++)
2953 id_data[i] = chip->read_byte(mtd);
2954
David Woodhouse5e81e882010-02-26 18:32:56 +00002955 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002956 return ERR_PTR(-ENODEV);
2957
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002958 if (!mtd->name)
2959 mtd->name = type->name;
2960
Adrian Hunter69423d92008-12-10 13:37:21 +00002961 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002962
2963 /* Newer devices have all the information in additional id bytes */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002964 if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002965 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002966 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002967 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002968 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002969 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002970
Kevin Cernekee426c4572010-05-04 20:58:03 -07002971 /*
2972 * Field definitions are in the following datasheets:
2973 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002974 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002975 *
2976 * Check for wraparound + Samsung ID + nonzero 6th byte
2977 * to decide what to do.
2978 */
2979 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2980 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002981 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002982 id_data[5] != 0x00) {
2983 /* Calc pagesize */
2984 mtd->writesize = 2048 << (extid & 0x03);
2985 extid >>= 2;
2986 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07002987 switch (extid & 0x03) {
2988 case 1:
2989 mtd->oobsize = 128;
2990 break;
2991 case 2:
2992 mtd->oobsize = 218;
2993 break;
2994 case 3:
2995 mtd->oobsize = 400;
2996 break;
2997 default:
2998 mtd->oobsize = 436;
2999 break;
3000 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003001 extid >>= 2;
3002 /* Calc blocksize */
3003 mtd->erasesize = (128 * 1024) <<
3004 (((extid >> 1) & 0x04) | (extid & 0x03));
3005 busw = 0;
3006 } else {
3007 /* Calc pagesize */
3008 mtd->writesize = 1024 << (extid & 0x03);
3009 extid >>= 2;
3010 /* Calc oobsize */
3011 mtd->oobsize = (8 << (extid & 0x01)) *
3012 (mtd->writesize >> 9);
3013 extid >>= 2;
3014 /* Calc blocksize. Blocksize is multiples of 64KiB */
3015 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3016 extid >>= 2;
3017 /* Get buswidth information */
3018 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3019 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003020 } else {
3021 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003022 * Old devices have chip data hardcoded in the device id table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003023 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003024 mtd->erasesize = type->erasesize;
3025 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003026 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003027 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003028
3029 /*
3030 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3031 * some Spansion chips have erasesize that conflicts with size
3032 * listed in nand_ids table
3033 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3034 */
3035 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3036 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3037 id_data[7] == 0x00 && mtd->writesize == 512) {
3038 mtd->erasesize = 128 * 1024;
3039 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3040 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003041 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003042 /* Get chip options, preserve non chip based options */
3043 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3044 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3045
3046 /* Check if chip is a not a samsung device. Do not clear the
3047 * options for chips which are not having an extended id.
3048 */
3049 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3050 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3051ident_done:
3052
3053 /*
3054 * Set chip as a default. Board drivers can override it, if necessary
3055 */
3056 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003057
3058 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003059 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003060 if (nand_manuf_ids[maf_idx].id == *maf_id)
3061 break;
3062 }
3063
3064 /*
3065 * Check, if buswidth is correct. Hardware drivers should set
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003066 * chip correct !
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003067 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003068 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003069 printk(KERN_INFO "NAND device: Manufacturer ID:"
3070 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003071 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003072 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003073 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003074 busw ? 16 : 8);
3075 return ERR_PTR(-EINVAL);
3076 }
3077
3078 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003079 chip->page_shift = ffs(mtd->writesize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003080 /* Convert chipsize to number of pages per chip -1. */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003081 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003082
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003083 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003084 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003085 if (chip->chipsize & 0xffffffff)
3086 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
3087 else
3088 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32)) + 32 - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003089
3090 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003091 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003092 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003093 else
3094 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003095
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003096 /*
3097 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003098 * on Samsung and Hynix MLC devices; stored in first two pages
3099 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003100 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3101 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003102 */
3103 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3104 (*maf_id == NAND_MFR_SAMSUNG ||
3105 *maf_id == NAND_MFR_HYNIX))
Brian Norris30fe8112010-06-23 13:36:02 -07003106 chip->options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003107 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3108 (*maf_id == NAND_MFR_SAMSUNG ||
3109 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003110 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003111 *maf_id == NAND_MFR_AMD)) ||
3112 (mtd->writesize == 2048 &&
3113 *maf_id == NAND_MFR_MICRON))
3114 chip->options |= NAND_BBT_SCAN2NDPAGE;
3115
Brian Norris58373ff2010-07-15 12:15:44 -07003116 /*
3117 * Numonyx/ST 2K pages, x8 bus use BOTH byte 1 and 6
3118 */
3119 if (!(busw & NAND_BUSWIDTH_16) &&
3120 *maf_id == NAND_MFR_STMICRO &&
3121 mtd->writesize == 2048) {
3122 chip->options |= NAND_BBT_SCANBYTE1AND6;
3123 chip->badblockpos = 0;
3124 }
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003125
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003126 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003127 if (chip->options & NAND_4PAGE_ARRAY)
3128 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003129 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003130 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003131
3132 /* Do not replace user supplied command function ! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003133 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3134 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003135
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003136 /* TODO onfi flash name */
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003137 printk(KERN_INFO "NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003138 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3139 nand_manuf_ids[maf_idx].name,
3140 chip->onfi_version ? type->name:chip->onfi_params.model);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003141
3142 return type;
3143}
3144
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003145/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003146 * nand_scan_ident - [NAND Interface] Scan for the NAND device
3147 * @mtd: MTD device structure
3148 * @maxchips: Number of chips to scan for
David Woodhouse5e81e882010-02-26 18:32:56 +00003149 * @table: Alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003150 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003151 * This is the first phase of the normal nand_scan() function. It
3152 * reads the flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003153 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003154 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003155 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003156int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3157 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003158{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003159 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003160 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003161 struct nand_flash_dev *type;
3162
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003163 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003164 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003166 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003167
3168 /* Read the flash type */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003169 type = nand_get_flash_type(mtd, chip, busw, &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003170
3171 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003172 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3173 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003174 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003175 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 }
3177
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003178 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003179 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003180 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003181 /* See comment in nand_get_flash_type for reset */
3182 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003184 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003186 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003187 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 break;
3189 }
3190 if (i > 1)
3191 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003194 chip->numchips = i;
3195 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
David Woodhouse3b85c322006-09-25 17:06:53 +01003197 return 0;
3198}
3199
3200
3201/**
3202 * nand_scan_tail - [NAND Interface] Scan for the NAND device
3203 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003204 *
3205 * This is the second phase of the normal nand_scan() function. It
3206 * fills out all the uninitialized function pointers with the defaults
3207 * and scans for a bad block table if appropriate.
3208 */
3209int nand_scan_tail(struct mtd_info *mtd)
3210{
3211 int i;
3212 struct nand_chip *chip = mtd->priv;
3213
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003214 if (!(chip->options & NAND_OWN_BUFFERS))
3215 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3216 if (!chip->buffers)
3217 return -ENOMEM;
3218
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003219 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003220 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003221
3222 /*
3223 * If no default placement scheme is given, select an appropriate one
3224 */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003225 if (!chip->ecc.layout) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003226 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003228 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 break;
3230 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003231 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 break;
3233 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003234 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003236 case 128:
3237 chip->ecc.layout = &nand_oob_128;
3238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003240 printk(KERN_WARNING "No oob scheme defined for "
3241 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 BUG();
3243 }
3244 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003245
David Woodhouse956e9442006-09-25 17:12:39 +01003246 if (!chip->write_page)
3247 chip->write_page = nand_write_page;
3248
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003249 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003250 * check ECC mode, default to software if 3byte/512byte hardware ECC is
3251 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003252 */
David Woodhouse956e9442006-09-25 17:12:39 +01003253
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003254 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003255 case NAND_ECC_HW_OOB_FIRST:
3256 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3257 if (!chip->ecc.calculate || !chip->ecc.correct ||
3258 !chip->ecc.hwctl) {
3259 printk(KERN_WARNING "No ECC functions supplied; "
3260 "Hardware ECC not possible\n");
3261 BUG();
3262 }
3263 if (!chip->ecc.read_page)
3264 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3265
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003266 case NAND_ECC_HW:
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003267 /* Use standard hwecc read page function ? */
3268 if (!chip->ecc.read_page)
3269 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003270 if (!chip->ecc.write_page)
3271 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003272 if (!chip->ecc.read_page_raw)
3273 chip->ecc.read_page_raw = nand_read_page_raw;
3274 if (!chip->ecc.write_page_raw)
3275 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003276 if (!chip->ecc.read_oob)
3277 chip->ecc.read_oob = nand_read_oob_std;
3278 if (!chip->ecc.write_oob)
3279 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003280
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003281 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003282 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3283 !chip->ecc.hwctl) &&
3284 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003285 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003286 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003287 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003288 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003289 "Hardware ECC not possible\n");
3290 BUG();
3291 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003292 /* Use standard syndrome read/write page function ? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003293 if (!chip->ecc.read_page)
3294 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003295 if (!chip->ecc.write_page)
3296 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003297 if (!chip->ecc.read_page_raw)
3298 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3299 if (!chip->ecc.write_page_raw)
3300 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003301 if (!chip->ecc.read_oob)
3302 chip->ecc.read_oob = nand_read_oob_syndrome;
3303 if (!chip->ecc.write_oob)
3304 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003305
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003306 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003307 break;
3308 printk(KERN_WARNING "%d byte HW ECC not possible on "
3309 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003310 chip->ecc.size, mtd->writesize);
3311 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003313 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003314 chip->ecc.calculate = nand_calculate_ecc;
3315 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003316 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003317 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003318 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003319 chip->ecc.read_page_raw = nand_read_page_raw;
3320 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003321 chip->ecc.read_oob = nand_read_oob_std;
3322 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003323 if (!chip->ecc.size)
3324 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003325 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003327
3328 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003329 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3330 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003331 chip->ecc.read_page = nand_read_page_raw;
3332 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003333 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003334 chip->ecc.read_page_raw = nand_read_page_raw;
3335 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003336 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003337 chip->ecc.size = mtd->writesize;
3338 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003342 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003343 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003344 BUG();
3345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003347 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003348 * The number of bytes available for a client to place data into
3349 * the out of band area
3350 */
3351 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003352 for (i = 0; chip->ecc.layout->oobfree[i].length
3353 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003354 chip->ecc.layout->oobavail +=
3355 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003356 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003357
3358 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003359 * Set the number of read / write steps for one page depending on ECC
3360 * mode
3361 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003362 chip->ecc.steps = mtd->writesize / chip->ecc.size;
3363 if(chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003364 printk(KERN_WARNING "Invalid ecc parameters\n");
3365 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003367 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003368
Thomas Gleixner29072b92006-09-28 15:38:36 +02003369 /*
3370 * Allow subpage writes up to ecc.steps. Not possible for MLC
3371 * FLASH.
3372 */
3373 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3374 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
3375 switch(chip->ecc.steps) {
3376 case 2:
3377 mtd->subpage_sft = 1;
3378 break;
3379 case 4:
3380 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003381 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003382 mtd->subpage_sft = 2;
3383 break;
3384 }
3385 }
3386 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3387
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003388 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003389 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003392 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003395 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397 /* Fill in remaining MTD driver data */
3398 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003399 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3400 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 mtd->erase = nand_erase;
3402 mtd->point = NULL;
3403 mtd->unpoint = NULL;
3404 mtd->read = nand_read;
3405 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003406 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 mtd->read_oob = nand_read_oob;
3408 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 mtd->sync = nand_sync;
3410 mtd->lock = NULL;
3411 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003412 mtd->suspend = nand_suspend;
3413 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 mtd->block_isbad = nand_block_isbad;
3415 mtd->block_markbad = nand_block_markbad;
3416
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003417 /* propagate ecc.layout to mtd_info */
3418 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003420 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003421 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
3424 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003425 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
Rusty Russella6e6abd2009-03-31 13:05:31 -06003428/* is_module_text_address() isn't exported, and it's mostly a pointless
David Woodhouse3b85c322006-09-25 17:06:53 +01003429 test if this is a module _anyway_ -- they'd have to try _really_ hard
3430 to call us from in-kernel code if the core NAND support is modular. */
3431#ifdef MODULE
3432#define caller_is_module() (1)
3433#else
3434#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003435 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003436#endif
3437
3438/**
3439 * nand_scan - [NAND Interface] Scan for the NAND device
3440 * @mtd: MTD device structure
3441 * @maxchips: Number of chips to scan for
3442 *
3443 * This fills out all the uninitialized function pointers
3444 * with the defaults.
3445 * The flash ID is read and the mtd/chip structures are
3446 * filled with the appropriate values.
3447 * The mtd->owner field must be set to the module of the caller
3448 *
3449 */
3450int nand_scan(struct mtd_info *mtd, int maxchips)
3451{
3452 int ret;
3453
3454 /* Many callers got this wrong, so check for it for a while... */
3455 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303456 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3457 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003458 BUG();
3459 }
3460
David Woodhouse5e81e882010-02-26 18:32:56 +00003461 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003462 if (!ret)
3463 ret = nand_scan_tail(mtd);
3464 return ret;
3465}
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003468 * nand_release - [NAND Interface] Free resources held by the NAND device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 * @mtd: MTD device structure
3470*/
David Woodhousee0c7d762006-05-13 18:07:53 +01003471void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003473 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475#ifdef CONFIG_MTD_PARTITIONS
3476 /* Deregister partitions */
David Woodhousee0c7d762006-05-13 18:07:53 +01003477 del_mtd_partitions(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478#endif
3479 /* Deregister the device */
David Woodhousee0c7d762006-05-13 18:07:53 +01003480 del_mtd_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Jesper Juhlfa671642005-11-07 01:01:27 -08003482 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003483 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003484 if (!(chip->options & NAND_OWN_BUFFERS))
3485 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003486
3487 /* Free bad block descriptor memory */
3488 if (chip->badblock_pattern && chip->badblock_pattern->options
3489 & NAND_BBT_DYNAMICSTRUCT)
3490 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491}
3492
Vimal Singh7d70f332010-02-08 15:50:49 +05303493EXPORT_SYMBOL_GPL(nand_lock);
3494EXPORT_SYMBOL_GPL(nand_unlock);
David Woodhousee0c7d762006-05-13 18:07:53 +01003495EXPORT_SYMBOL_GPL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003496EXPORT_SYMBOL_GPL(nand_scan_ident);
3497EXPORT_SYMBOL_GPL(nand_scan_tail);
David Woodhousee0c7d762006-05-13 18:07:53 +01003498EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003499
3500static int __init nand_base_init(void)
3501{
3502 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3503 return 0;
3504}
3505
3506static void __exit nand_base_exit(void)
3507{
3508 led_trigger_unregister_simple(nand_led_trigger);
3509}
3510
3511module_init(nand_base_init);
3512module_exit(nand_base_exit);
3513
David Woodhousee0c7d762006-05-13 18:07:53 +01003514MODULE_LICENSE("GPL");
3515MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>, Thomas Gleixner <tglx@linutronix.de>");
3516MODULE_DESCRIPTION("Generic NAND flash driver code");