blob: b9dc65c7253ca437454c616113a64acc424570b3 [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>
45#include <linux/mtd/compatmac.h>
46#include <linux/interrupt.h>
47#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080048#include <linux/leds.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/io.h>
50
51#ifdef CONFIG_MTD_PARTITIONS
52#include <linux/mtd/partitions.h>
53#endif
54
55/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020056static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .eccbytes = 3,
58 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020059 .oobfree = {
60 {.offset = 3,
61 .length = 2},
62 {.offset = 6,
63 .length = 2}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020066static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .eccbytes = 6,
68 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020069 .oobfree = {
70 {.offset = 8,
71 . length = 8}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020074static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .eccbytes = 24,
76 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010077 40, 41, 42, 43, 44, 45, 46, 47,
78 48, 49, 50, 51, 52, 53, 54, 55,
79 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020080 .oobfree = {
81 {.offset = 2,
82 .length = 38}}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Thomas Gleixner81ec5362007-12-12 17:27:03 +010085static struct nand_ecclayout nand_oob_128 = {
86 .eccbytes = 48,
87 .eccpos = {
88 80, 81, 82, 83, 84, 85, 86, 87,
89 88, 89, 90, 91, 92, 93, 94, 95,
90 96, 97, 98, 99, 100, 101, 102, 103,
91 104, 105, 106, 107, 108, 109, 110, 111,
92 112, 113, 114, 115, 116, 117, 118, 119,
93 120, 121, 122, 123, 124, 125, 126, 127},
94 .oobfree = {
95 {.offset = 2,
96 .length = 78}}
97};
98
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020099static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200100 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200102static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
103 struct mtd_oob_ops *ops);
104
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200105/*
Joe Perches8e87d782008-02-03 17:22:34 +0200106 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200107 * compiled away when LED support is disabled.
108 */
109DEFINE_LED_TRIGGER(nand_led_trigger);
110
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530111static int check_offs_len(struct mtd_info *mtd,
112 loff_t ofs, uint64_t len)
113{
114 struct nand_chip *chip = mtd->priv;
115 int ret = 0;
116
117 /* Start address must align on block boundary */
118 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
119 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
120 ret = -EINVAL;
121 }
122
123 /* Length must align on block boundary */
124 if (len & ((1 << chip->phys_erase_shift) - 1)) {
125 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
126 __func__);
127 ret = -EINVAL;
128 }
129
130 /* Do not allow past end of device */
131 if (ofs + len > mtd->size) {
132 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
133 __func__);
134 ret = -EINVAL;
135 }
136
137 return ret;
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/**
141 * nand_release_device - [GENERIC] release chip
142 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000143 *
144 * Deselect, release chip lock and wake up anyone waiting on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100146static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200148 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200151 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100152
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200153 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200154 spin_lock(&chip->controller->lock);
155 chip->controller->active = NULL;
156 chip->state = FL_READY;
157 wake_up(&chip->controller->wq);
158 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161/**
162 * nand_read_byte - [DEFAULT] read one byte from the chip
163 * @mtd: MTD device structure
164 *
165 * Default read function for 8bit buswith
166 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200167static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200169 struct nand_chip *chip = mtd->priv;
170 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
175 * @mtd: MTD device structure
176 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000177 * Default read function for 16bit buswith with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * endianess conversion
179 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200180static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200182 struct nand_chip *chip = mtd->priv;
183 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * nand_read_word - [DEFAULT] read one word from the chip
188 * @mtd: MTD device structure
189 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000190 * Default read function for 16bit buswith without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * endianess conversion
192 */
193static u16 nand_read_word(struct mtd_info *mtd)
194{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200195 struct nand_chip *chip = mtd->priv;
196 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * nand_select_chip - [DEFAULT] control CE line
201 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700202 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * Default select function for 1 chip devices.
205 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200206static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200208 struct nand_chip *chip = mtd->priv;
209
210 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200212 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 break;
214 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
216
217 default:
218 BUG();
219 }
220}
221
222/**
223 * nand_write_buf - [DEFAULT] write buffer to chip
224 * @mtd: MTD device structure
225 * @buf: data buffer
226 * @len: number of bytes to write
227 *
228 * Default write function for 8bit buswith
229 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200230static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200233 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
David Woodhousee0c7d762006-05-13 18:07:53 +0100235 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200236 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000240 * nand_read_buf - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * @mtd: MTD device structure
242 * @buf: buffer to store date
243 * @len: number of bytes to read
244 *
245 * Default read function for 8bit buswith
246 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200247static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200250 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
David Woodhousee0c7d762006-05-13 18:07:53 +0100252 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200253 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000257 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * @mtd: MTD device structure
259 * @buf: buffer containing the data to compare
260 * @len: number of bytes to compare
261 *
262 * Default verify function for 8bit buswith
263 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200264static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200267 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
David Woodhousee0c7d762006-05-13 18:07:53 +0100269 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200270 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273}
274
275/**
276 * nand_write_buf16 - [DEFAULT] write buffer to chip
277 * @mtd: MTD device structure
278 * @buf: data buffer
279 * @len: number of bytes to write
280 *
281 * Default write function for 16bit buswith
282 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200283static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200286 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 u16 *p = (u16 *) buf;
288 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000289
David Woodhousee0c7d762006-05-13 18:07:53 +0100290 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200291 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000296 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 * @mtd: MTD device structure
298 * @buf: buffer to store date
299 * @len: number of bytes to read
300 *
301 * Default read function for 16bit buswith
302 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200303static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200306 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 u16 *p = (u16 *) buf;
308 len >>= 1;
309
David Woodhousee0c7d762006-05-13 18:07:53 +0100310 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200311 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000315 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * @mtd: MTD device structure
317 * @buf: buffer containing the data to compare
318 * @len: number of bytes to compare
319 *
320 * Default verify function for 16bit buswith
321 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200322static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200325 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 u16 *p = (u16 *) buf;
327 len >>= 1;
328
David Woodhousee0c7d762006-05-13 18:07:53 +0100329 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200330 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return -EFAULT;
332
333 return 0;
334}
335
336/**
337 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
338 * @mtd: MTD device structure
339 * @ofs: offset from device start
340 * @getchip: 0, if the chip is already selected
341 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000342 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 */
344static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
345{
346 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200347 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 u16 bad;
349
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100350 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200353 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200358 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200361 if (chip->options & NAND_BUSWIDTH_16) {
362 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100363 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200364 bad = cpu_to_le16(chip->read_word(mtd));
365 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000366 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200367 else
368 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100370 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200371 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000373
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200374 if (likely(chip->badblockbits == 8))
375 res = bad != 0xFF;
376 else
377 res = hweight8(bad) < chip->badblockbits;
378
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200379 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return res;
383}
384
385/**
386 * nand_default_block_markbad - [DEFAULT] mark a block bad
387 * @mtd: MTD device structure
388 * @ofs: offset from device start
389 *
390 * This is the default implementation, which can be overridden by
391 * a hardware specific driver.
392*/
393static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
394{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200395 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200396 uint8_t buf[2] = { 0, 0 };
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200397 int block, ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400400 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200401 if (chip->bbt)
402 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* Do we have a flash based bad block table ? */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200405 if (chip->options & NAND_USE_FLASH_BBT)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200406 ret = nand_update_bbt(mtd, ofs);
407 else {
408 /* We write two bytes, so we dont have to mess with 16 bit
409 * access
410 */
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200412 ofs += mtd->oobsize;
Ricard Wanderlöfff0dab62006-10-23 09:33:34 +0200413 chip->ops.len = chip->ops.ooblen = 2;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200414 chip->ops.datbuf = NULL;
415 chip->ops.oobbuf = buf;
416 chip->ops.ooboffs = chip->badblockpos & ~0x01;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000417
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200418 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300419 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200420 }
421 if (!ret)
422 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300423
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200424 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000427/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * nand_check_wp - [GENERIC] check if the chip is write protected
429 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000430 * Check, if the device is write protected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000432 * The function expects, that the device is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100434static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200436 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200437
438 /* broken xD cards report WP despite being writable */
439 if (chip->options & NAND_BROKEN_XD)
440 return 0;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200443 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
444 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/**
448 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
449 * @mtd: MTD device structure
450 * @ofs: offset from device start
451 * @getchip: 0, if the chip is already selected
452 * @allowbbt: 1, if its allowed to access the bbt area
453 *
454 * Check, if the block is bad. Either by reading the bad block table or
455 * calling of the scan function.
456 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200457static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
458 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200460 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000461
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200462 if (!chip->bbt)
463 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100466 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200469/**
470 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
471 * @mtd: MTD device structure
472 * @timeo: Timeout
473 *
474 * Helper function for nand_wait_ready used when needing to wait in interrupt
475 * context.
476 */
477static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
478{
479 struct nand_chip *chip = mtd->priv;
480 int i;
481
482 /* Wait for the device to get ready */
483 for (i = 0; i < timeo; i++) {
484 if (chip->dev_ready(mtd))
485 break;
486 touch_softlockup_watchdog();
487 mdelay(1);
488 }
489}
490
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000491/*
Thomas Gleixner3b887752005-02-22 21:56:49 +0000492 * Wait for the ready pin, after a command
493 * The timeout is catched later.
494 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100495void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000496{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200497 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100498 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000499
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200500 /* 400ms timeout */
501 if (in_interrupt() || oops_in_progress)
502 return panic_nand_wait_ready(mtd, 400);
503
Richard Purdie8fe833c2006-03-31 02:31:14 -0800504 led_trigger_event(nand_led_trigger, LED_FULL);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000505 /* wait until command is processed or timeout occures */
506 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200507 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800508 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700509 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000510 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800511 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000512}
David Woodhouse4b648b02006-09-25 17:05:24 +0100513EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/**
516 * nand_command - [DEFAULT] Send command to NAND device
517 * @mtd: MTD device structure
518 * @command: the command to be sent
519 * @column: the column address for this command, -1 if none
520 * @page_addr: the page address for this command, -1 if none
521 *
522 * Send command to NAND device. This function is used for small page
523 * devices (256/512 Bytes per page)
524 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200525static void nand_command(struct mtd_info *mtd, unsigned int command,
526 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200528 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200529 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
532 * Write out the command to the device.
533 */
534 if (command == NAND_CMD_SEQIN) {
535 int readcmd;
536
Joern Engel28318772006-05-22 23:18:05 +0200537 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200539 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 readcmd = NAND_CMD_READOOB;
541 } else if (column < 256) {
542 /* First 256 bytes --> READ0 */
543 readcmd = NAND_CMD_READ0;
544 } else {
545 column -= 256;
546 readcmd = NAND_CMD_READ1;
547 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200548 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200549 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200551 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200553 /*
554 * Address cycle, when necessary
555 */
556 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
557 /* Serially input address */
558 if (column != -1) {
559 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200560 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200561 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200562 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200563 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200565 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200567 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200568 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200569 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200570 if (chip->chipsize > (32 << 20))
571 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200572 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200573 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000574
575 /*
576 * program and erase have their own busy handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100578 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 case NAND_CMD_PAGEPROG:
582 case NAND_CMD_ERASE1:
583 case NAND_CMD_ERASE2:
584 case NAND_CMD_SEQIN:
585 case NAND_CMD_STATUS:
586 return;
587
588 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200589 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200591 udelay(chip->chip_delay);
592 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200593 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200594 chip->cmd_ctrl(mtd,
595 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200596 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return;
598
David Woodhousee0c7d762006-05-13 18:07:53 +0100599 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000601 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * If we don't have access to the busy pin, we apply the given
603 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100604 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200605 if (!chip->dev_ready) {
606 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* Apply this short delay always to ensure that we do wait tWB in
611 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100612 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000613
614 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617/**
618 * nand_command_lp - [DEFAULT] Send command to NAND large page device
619 * @mtd: MTD device structure
620 * @command: the command to be sent
621 * @column: the column address for this command, -1 if none
622 * @page_addr: the page address for this command, -1 if none
623 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200624 * Send command to NAND device. This is the version for the new large page
625 * devices We dont have the separate regions as we have in the small page
626 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200628static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
629 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200631 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /* Emulate NAND_CMD_READOOB */
634 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200635 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 command = NAND_CMD_READ0;
637 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000638
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200639 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200640 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200641 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200644 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 /* Serially input address */
647 if (column != -1) {
648 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200649 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200651 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200652 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200653 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200656 chip->cmd_ctrl(mtd, page_addr, ctrl);
657 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200658 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 if (chip->chipsize > (128 << 20))
661 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200662 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200665 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000666
667 /*
668 * program and erase have their own busy handlers
David A. Marlin30f464b2005-01-17 18:35:25 +0000669 * status, sequential in, and deplete1 need no delay
670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 case NAND_CMD_CACHEDPROG:
674 case NAND_CMD_PAGEPROG:
675 case NAND_CMD_ERASE1:
676 case NAND_CMD_ERASE2:
677 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200678 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000680 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return;
682
David Woodhousee0c7d762006-05-13 18:07:53 +0100683 /*
684 * read error status commands require only a short delay
685 */
David A. Marlin30f464b2005-01-17 18:35:25 +0000686 case NAND_CMD_STATUS_ERROR:
687 case NAND_CMD_STATUS_ERROR0:
688 case NAND_CMD_STATUS_ERROR1:
689 case NAND_CMD_STATUS_ERROR2:
690 case NAND_CMD_STATUS_ERROR3:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200691 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200695 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200697 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200698 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
699 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
700 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
701 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return;
704
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200705 case NAND_CMD_RNDOUT:
706 /* No ready / busy check necessary */
707 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
708 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
709 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
710 NAND_NCE | NAND_CTRL_CHANGE);
711 return;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200714 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
715 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
716 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
717 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000718
David Woodhousee0c7d762006-05-13 18:07:53 +0100719 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000721 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * If we don't have access to the busy pin, we apply the given
723 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100724 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200725 if (!chip->dev_ready) {
726 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Apply this short delay always to ensure that we do wait tWB in
732 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100733 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000734
735 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200739 * panic_nand_get_device - [GENERIC] Get chip for selected access
740 * @chip: the nand chip descriptor
741 * @mtd: MTD device structure
742 * @new_state: the state which is requested
743 *
744 * Used when in panic, no locks are taken.
745 */
746static void panic_nand_get_device(struct nand_chip *chip,
747 struct mtd_info *mtd, int new_state)
748{
749 /* Hardware controller shared among independend devices */
750 chip->controller->active = chip;
751 chip->state = new_state;
752}
753
754/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * nand_get_device - [GENERIC] Get chip for selected access
Randy Dunlap844d3b42006-06-28 21:48:27 -0700756 * @chip: the nand chip descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000758 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 *
760 * Get the device and lock it for exclusive access
761 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200762static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200763nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200765 spinlock_t *lock = &chip->controller->lock;
766 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100767 DECLARE_WAITQUEUE(wait, current);
David Woodhousee0c7d762006-05-13 18:07:53 +0100768 retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100769 spin_lock(lock);
770
vimal singhb8b3ee92009-07-09 20:41:22 +0530771 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200772 if (!chip->controller->active)
773 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200774
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200775 if (chip->controller->active == chip && chip->state == FL_READY) {
776 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100777 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100778 return 0;
779 }
780 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800781 if (chip->controller->active->state == FL_PM_SUSPENDED) {
782 chip->state = FL_PM_SUSPENDED;
783 spin_unlock(lock);
784 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800785 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100786 }
787 set_current_state(TASK_UNINTERRUPTIBLE);
788 add_wait_queue(wq, &wait);
789 spin_unlock(lock);
790 schedule();
791 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 goto retry;
793}
794
795/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200796 * panic_nand_wait - [GENERIC] wait until the command is done
797 * @mtd: MTD device structure
798 * @chip: NAND chip structure
799 * @timeo: Timeout
800 *
801 * Wait for command done. This is a helper function for nand_wait used when
802 * we are in interrupt context. May happen when in panic and trying to write
803 * an oops trough mtdoops.
804 */
805static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
806 unsigned long timeo)
807{
808 int i;
809 for (i = 0; i < timeo; i++) {
810 if (chip->dev_ready) {
811 if (chip->dev_ready(mtd))
812 break;
813 } else {
814 if (chip->read_byte(mtd) & NAND_STATUS_READY)
815 break;
816 }
817 mdelay(1);
818 }
819}
820
821/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * nand_wait - [DEFAULT] wait until the command is done
823 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700824 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 *
826 * Wait for command done. This applies to erase and program only
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000827 * Erase can take up to 400ms and program up to 20ms according to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 * general NAND and SmartMedia specs
Randy Dunlap844d3b42006-06-28 21:48:27 -0700829 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200830static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832
David Woodhousee0c7d762006-05-13 18:07:53 +0100833 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200834 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100837 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100839 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Richard Purdie8fe833c2006-03-31 02:31:14 -0800841 led_trigger_event(nand_led_trigger, LED_FULL);
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* Apply this short delay always to ensure that we do wait tWB in
844 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100845 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200847 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
848 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000849 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200850 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200852 if (in_interrupt() || oops_in_progress)
853 panic_nand_wait(mtd, chip, timeo);
854 else {
855 while (time_before(jiffies, timeo)) {
856 if (chip->dev_ready) {
857 if (chip->dev_ready(mtd))
858 break;
859 } else {
860 if (chip->read_byte(mtd) & NAND_STATUS_READY)
861 break;
862 }
863 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800866 led_trigger_event(nand_led_trigger, LED_OFF);
867
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200868 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return status;
870}
871
872/**
Vimal Singh7d70f332010-02-08 15:50:49 +0530873 * __nand_unlock - [REPLACABLE] unlocks specified locked blockes
874 *
875 * @param mtd - mtd info
876 * @param ofs - offset to start unlock from
877 * @param len - length to unlock
878 * @invert - when = 0, unlock the range of blocks within the lower and
879 * upper boundary address
880 * whne = 1, unlock the range of blocks outside the boundaries
881 * of the lower and upper boundary address
882 *
883 * @return - unlock status
884 */
885static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
886 uint64_t len, int invert)
887{
888 int ret = 0;
889 int status, page;
890 struct nand_chip *chip = mtd->priv;
891
892 /* Submit address of first page to unlock */
893 page = ofs >> chip->page_shift;
894 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
895
896 /* Submit address of last page to unlock */
897 page = (ofs + len) >> chip->page_shift;
898 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
899 (page | invert) & chip->pagemask);
900
901 /* Call wait ready function */
902 status = chip->waitfunc(mtd, chip);
903 udelay(1000);
904 /* See if device thinks it succeeded */
905 if (status & 0x01) {
906 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
907 __func__, status);
908 ret = -EIO;
909 }
910
911 return ret;
912}
913
914/**
915 * nand_unlock - [REPLACABLE] unlocks specified locked blockes
916 *
917 * @param mtd - mtd info
918 * @param ofs - offset to start unlock from
919 * @param len - length to unlock
920 *
921 * @return - unlock status
922 */
923int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
924{
925 int ret = 0;
926 int chipnr;
927 struct nand_chip *chip = mtd->priv;
928
929 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
930 __func__, (unsigned long long)ofs, len);
931
932 if (check_offs_len(mtd, ofs, len))
933 ret = -EINVAL;
934
935 /* Align to last block address if size addresses end of the device */
936 if (ofs + len == mtd->size)
937 len -= mtd->erasesize;
938
939 nand_get_device(chip, mtd, FL_UNLOCKING);
940
941 /* Shift to get chip number */
942 chipnr = ofs >> chip->chip_shift;
943
944 chip->select_chip(mtd, chipnr);
945
946 /* Check, if it is write protected */
947 if (nand_check_wp(mtd)) {
948 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
949 __func__);
950 ret = -EIO;
951 goto out;
952 }
953
954 ret = __nand_unlock(mtd, ofs, len, 0);
955
956out:
957 /* de-select the NAND device */
958 chip->select_chip(mtd, -1);
959
960 nand_release_device(mtd);
961
962 return ret;
963}
964
965/**
966 * nand_lock - [REPLACABLE] locks all blockes present in the device
967 *
968 * @param mtd - mtd info
969 * @param ofs - offset to start unlock from
970 * @param len - length to unlock
971 *
972 * @return - lock status
973 *
974 * This feature is not support in many NAND parts. 'Micron' NAND parts
975 * do have this feature, but it allows only to lock all blocks not for
976 * specified range for block.
977 *
978 * Implementing 'lock' feature by making use of 'unlock', for now.
979 */
980int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
981{
982 int ret = 0;
983 int chipnr, status, page;
984 struct nand_chip *chip = mtd->priv;
985
986 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
987 __func__, (unsigned long long)ofs, len);
988
989 if (check_offs_len(mtd, ofs, len))
990 ret = -EINVAL;
991
992 nand_get_device(chip, mtd, FL_LOCKING);
993
994 /* Shift to get chip number */
995 chipnr = ofs >> chip->chip_shift;
996
997 chip->select_chip(mtd, chipnr);
998
999 /* Check, if it is write protected */
1000 if (nand_check_wp(mtd)) {
1001 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1002 __func__);
1003 status = MTD_ERASE_FAILED;
1004 ret = -EIO;
1005 goto out;
1006 }
1007
1008 /* Submit address of first page to lock */
1009 page = ofs >> chip->page_shift;
1010 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1011
1012 /* Call wait ready function */
1013 status = chip->waitfunc(mtd, chip);
1014 udelay(1000);
1015 /* See if device thinks it succeeded */
1016 if (status & 0x01) {
1017 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1018 __func__, status);
1019 ret = -EIO;
1020 goto out;
1021 }
1022
1023 ret = __nand_unlock(mtd, ofs, len, 0x1);
1024
1025out:
1026 /* de-select the NAND device */
1027 chip->select_chip(mtd, -1);
1028
1029 nand_release_device(mtd);
1030
1031 return ret;
1032}
1033
1034/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001035 * nand_read_page_raw - [Intern] read raw page data without ecc
1036 * @mtd: mtd info structure
1037 * @chip: nand chip info structure
1038 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001039 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001040 *
1041 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001042 */
1043static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001044 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001045{
1046 chip->read_buf(mtd, buf, mtd->writesize);
1047 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1048 return 0;
1049}
1050
1051/**
David Brownell52ff49d2009-03-04 12:01:36 -08001052 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
1053 * @mtd: mtd info structure
1054 * @chip: nand chip info structure
1055 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001056 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001057 *
1058 * We need a special oob layout and handling even when OOB isn't used.
1059 */
1060static int nand_read_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001061 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001062{
1063 int eccsize = chip->ecc.size;
1064 int eccbytes = chip->ecc.bytes;
1065 uint8_t *oob = chip->oob_poi;
1066 int steps, size;
1067
1068 for (steps = chip->ecc.steps; steps > 0; steps--) {
1069 chip->read_buf(mtd, buf, eccsize);
1070 buf += eccsize;
1071
1072 if (chip->ecc.prepad) {
1073 chip->read_buf(mtd, oob, chip->ecc.prepad);
1074 oob += chip->ecc.prepad;
1075 }
1076
1077 chip->read_buf(mtd, oob, eccbytes);
1078 oob += eccbytes;
1079
1080 if (chip->ecc.postpad) {
1081 chip->read_buf(mtd, oob, chip->ecc.postpad);
1082 oob += chip->ecc.postpad;
1083 }
1084 }
1085
1086 size = mtd->oobsize - (oob - chip->oob_poi);
1087 if (size)
1088 chip->read_buf(mtd, oob, size);
1089
1090 return 0;
1091}
1092
1093/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001094 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001095 * @mtd: mtd info structure
1096 * @chip: nand chip info structure
1097 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001098 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001099 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001100static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001101 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001103 int i, eccsize = chip->ecc.size;
1104 int eccbytes = chip->ecc.bytes;
1105 int eccsteps = chip->ecc.steps;
1106 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001107 uint8_t *ecc_calc = chip->buffers->ecccalc;
1108 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001109 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001110
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001111 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001112
1113 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1114 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1115
1116 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001117 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001118
1119 eccsteps = chip->ecc.steps;
1120 p = buf;
1121
1122 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1123 int stat;
1124
1125 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001126 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001127 mtd->ecc_stats.failed++;
1128 else
1129 mtd->ecc_stats.corrected += stat;
1130 }
1131 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001132}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134/**
Alexey Korolev3d459552008-05-15 17:23:18 +01001135 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
1136 * @mtd: mtd info structure
1137 * @chip: nand chip info structure
Alexey Korolev17c1d2b2008-08-20 22:32:08 +01001138 * @data_offs: offset of requested data within the page
1139 * @readlen: data length
1140 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001141 */
1142static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip, uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
1143{
1144 int start_step, end_step, num_steps;
1145 uint32_t *eccpos = chip->ecc.layout->eccpos;
1146 uint8_t *p;
1147 int data_col_addr, i, gaps = 0;
1148 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1149 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
1150
1151 /* Column address wihin the page aligned to ECC size (256bytes). */
1152 start_step = data_offs / chip->ecc.size;
1153 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1154 num_steps = end_step - start_step + 1;
1155
1156 /* Data size aligned to ECC ecc.size*/
1157 datafrag_len = num_steps * chip->ecc.size;
1158 eccfrag_len = num_steps * chip->ecc.bytes;
1159
1160 data_col_addr = start_step * chip->ecc.size;
1161 /* If we read not a page aligned data */
1162 if (data_col_addr != 0)
1163 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1164
1165 p = bufpoi + data_col_addr;
1166 chip->read_buf(mtd, p, datafrag_len);
1167
1168 /* Calculate ECC */
1169 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1170 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1171
1172 /* The performance is faster if to position offsets
1173 according to ecc.pos. Let make sure here that
1174 there are no gaps in ecc positions */
1175 for (i = 0; i < eccfrag_len - 1; i++) {
1176 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1177 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1178 gaps = 1;
1179 break;
1180 }
1181 }
1182 if (gaps) {
1183 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1184 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1185 } else {
1186 /* send the command to read the particular ecc bytes */
1187 /* take care about buswidth alignment in read_buf */
1188 aligned_pos = eccpos[start_step * chip->ecc.bytes] & ~(busw - 1);
1189 aligned_len = eccfrag_len;
1190 if (eccpos[start_step * chip->ecc.bytes] & (busw - 1))
1191 aligned_len++;
1192 if (eccpos[(start_step + num_steps) * chip->ecc.bytes] & (busw - 1))
1193 aligned_len++;
1194
1195 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize + aligned_pos, -1);
1196 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1197 }
1198
1199 for (i = 0; i < eccfrag_len; i++)
1200 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + start_step * chip->ecc.bytes]];
1201
1202 p = bufpoi + data_col_addr;
1203 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1204 int stat;
1205
1206 stat = chip->ecc.correct(mtd, p, &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
1207 if (stat == -1)
1208 mtd->ecc_stats.failed++;
1209 else
1210 mtd->ecc_stats.corrected += stat;
1211 }
1212 return 0;
1213}
1214
1215/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001216 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001217 * @mtd: mtd info structure
1218 * @chip: nand chip info structure
1219 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001220 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001221 *
1222 * Not for syndrome calculating ecc controllers which need a special oob layout
1223 */
1224static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001225 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001226{
1227 int i, eccsize = chip->ecc.size;
1228 int eccbytes = chip->ecc.bytes;
1229 int eccsteps = chip->ecc.steps;
1230 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001231 uint8_t *ecc_calc = chip->buffers->ecccalc;
1232 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001233 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001234
1235 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1236 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1237 chip->read_buf(mtd, p, eccsize);
1238 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1239 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001240 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001241
1242 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001243 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001244
1245 eccsteps = chip->ecc.steps;
1246 p = buf;
1247
1248 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1249 int stat;
1250
1251 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001252 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001253 mtd->ecc_stats.failed++;
1254 else
1255 mtd->ecc_stats.corrected += stat;
1256 }
1257 return 0;
1258}
1259
1260/**
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001261 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
1262 * @mtd: mtd info structure
1263 * @chip: nand chip info structure
1264 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001265 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001266 *
1267 * Hardware ECC for large page chips, require OOB to be read first.
1268 * For this ECC mode, the write_page method is re-used from ECC_HW.
1269 * These methods read/write ECC from the OOB area, unlike the
1270 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
1271 * "infix ECC" scheme and reads/writes ECC from the data area, by
1272 * overwriting the NAND manufacturer bad block markings.
1273 */
1274static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1275 struct nand_chip *chip, uint8_t *buf, int page)
1276{
1277 int i, eccsize = chip->ecc.size;
1278 int eccbytes = chip->ecc.bytes;
1279 int eccsteps = chip->ecc.steps;
1280 uint8_t *p = buf;
1281 uint8_t *ecc_code = chip->buffers->ecccode;
1282 uint32_t *eccpos = chip->ecc.layout->eccpos;
1283 uint8_t *ecc_calc = chip->buffers->ecccalc;
1284
1285 /* Read the OOB area first */
1286 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1287 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1288 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1289
1290 for (i = 0; i < chip->ecc.total; i++)
1291 ecc_code[i] = chip->oob_poi[eccpos[i]];
1292
1293 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1294 int stat;
1295
1296 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1297 chip->read_buf(mtd, p, eccsize);
1298 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1299
1300 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1301 if (stat < 0)
1302 mtd->ecc_stats.failed++;
1303 else
1304 mtd->ecc_stats.corrected += stat;
1305 }
1306 return 0;
1307}
1308
1309/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001310 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001311 * @mtd: mtd info structure
1312 * @chip: nand chip info structure
1313 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001314 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001315 *
1316 * The hw generator calculates the error syndrome automatically. Therefor
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001317 * we need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001318 */
1319static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001320 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001321{
1322 int i, eccsize = chip->ecc.size;
1323 int eccbytes = chip->ecc.bytes;
1324 int eccsteps = chip->ecc.steps;
1325 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001326 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001327
1328 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1329 int stat;
1330
1331 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1332 chip->read_buf(mtd, p, eccsize);
1333
1334 if (chip->ecc.prepad) {
1335 chip->read_buf(mtd, oob, chip->ecc.prepad);
1336 oob += chip->ecc.prepad;
1337 }
1338
1339 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1340 chip->read_buf(mtd, oob, eccbytes);
1341 stat = chip->ecc.correct(mtd, p, oob, NULL);
1342
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001343 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001344 mtd->ecc_stats.failed++;
1345 else
1346 mtd->ecc_stats.corrected += stat;
1347
1348 oob += eccbytes;
1349
1350 if (chip->ecc.postpad) {
1351 chip->read_buf(mtd, oob, chip->ecc.postpad);
1352 oob += chip->ecc.postpad;
1353 }
1354 }
1355
1356 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001357 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001358 if (i)
1359 chip->read_buf(mtd, oob, i);
1360
1361 return 0;
1362}
1363
1364/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001365 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1366 * @chip: nand chip structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07001367 * @oob: oob destination address
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001368 * @ops: oob ops structure
Vitaly Wool70145682006-11-03 18:20:38 +03001369 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001370 */
1371static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001372 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001373{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001374 switch(ops->mode) {
1375
1376 case MTD_OOB_PLACE:
1377 case MTD_OOB_RAW:
1378 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1379 return oob + len;
1380
1381 case MTD_OOB_AUTO: {
1382 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001383 uint32_t boffs = 0, roffs = ops->ooboffs;
1384 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001385
1386 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001387 /* Read request not from offset 0 ? */
1388 if (unlikely(roffs)) {
1389 if (roffs >= free->length) {
1390 roffs -= free->length;
1391 continue;
1392 }
1393 boffs = free->offset + roffs;
1394 bytes = min_t(size_t, len,
1395 (free->length - roffs));
1396 roffs = 0;
1397 } else {
1398 bytes = min_t(size_t, len, free->length);
1399 boffs = free->offset;
1400 }
1401 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001402 oob += bytes;
1403 }
1404 return oob;
1405 }
1406 default:
1407 BUG();
1408 }
1409 return NULL;
1410}
1411
1412/**
1413 * nand_do_read_ops - [Internal] Read data with ECC
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001414 *
David A. Marlin068e3c02005-01-24 03:07:46 +00001415 * @mtd: MTD device structure
1416 * @from: offset to read from
Randy Dunlap844d3b42006-06-28 21:48:27 -07001417 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001418 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001419 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001420 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001421static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1422 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001423{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001424 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001425 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001426 struct mtd_ecc_stats stats;
1427 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1428 int sndcmd = 1;
1429 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001430 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001431 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001432 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1433 mtd->oobavail : mtd->oobsize;
1434
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001435 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001437 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001439 chipnr = (int)(from >> chip->chip_shift);
1440 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001442 realpage = (int)(from >> chip->page_shift);
1443 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001445 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001447 buf = ops->datbuf;
1448 oob = ops->oobbuf;
1449
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001450 while(1) {
1451 bytes = min(mtd->writesize - col, readlen);
1452 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001453
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001454 /* Is the current page in the buffer ? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001455 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001456 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001458 if (likely(sndcmd)) {
1459 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1460 sndcmd = 0;
1461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001463 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001464 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001465 ret = chip->ecc.read_page_raw(mtd, chip,
1466 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001467 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
1468 ret = chip->ecc.read_subpage(mtd, chip, col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001469 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001470 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1471 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001472 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001473 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001474
1475 /* Transfer not aligned data */
1476 if (!aligned) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001477 if (!NAND_SUBPAGE_READ(chip) && !oob)
1478 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001479 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001481
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001482 buf += bytes;
1483
1484 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001485
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001486 int toread = min(oobreadlen, max_oobsize);
1487
1488 if (toread) {
1489 oob = nand_transfer_oob(chip,
1490 oob, ops, toread);
1491 oobreadlen -= toread;
1492 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001493 }
1494
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001495 if (!(chip->options & NAND_NO_READRDY)) {
1496 /*
1497 * Apply delay or wait for ready/busy pin. Do
1498 * this before the AUTOINCR check, so no
1499 * problems arise if a chip which does auto
1500 * increment is marked as NOAUTOINCR by the
1501 * board driver.
1502 */
1503 if (!chip->dev_ready)
1504 udelay(chip->chip_delay);
1505 else
1506 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001508 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001509 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001510 buf += bytes;
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001513 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001514
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001515 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /* For subsequent reads align to page boundary. */
1519 col = 0;
1520 /* Increment page address */
1521 realpage++;
1522
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001523 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /* Check, if we cross a chip boundary */
1525 if (!page) {
1526 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001527 chip->select_chip(mtd, -1);
1528 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001530
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001531 /* Check, if the chip supports auto page increment
1532 * or if we have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001533 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001534 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001535 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001538 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001539 if (oob)
1540 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001542 if (ret)
1543 return ret;
1544
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001545 if (mtd->ecc_stats.failed - stats.failed)
1546 return -EBADMSG;
1547
1548 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001549}
1550
1551/**
1552 * nand_read - [MTD Interface] MTD compability function for nand_do_read_ecc
1553 * @mtd: MTD device structure
1554 * @from: offset to read from
1555 * @len: number of bytes to read
1556 * @retlen: pointer to variable to store the number of read bytes
1557 * @buf: the databuffer to put data
1558 *
1559 * Get hold of the chip and call nand_do_read
1560 */
1561static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1562 size_t *retlen, uint8_t *buf)
1563{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001564 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001565 int ret;
1566
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001567 /* Do not allow reads past end of device */
1568 if ((from + len) > mtd->size)
1569 return -EINVAL;
1570 if (!len)
1571 return 0;
1572
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001573 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001574
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001575 chip->ops.len = len;
1576 chip->ops.datbuf = buf;
1577 chip->ops.oobbuf = NULL;
1578
1579 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001580
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001581 *retlen = chip->ops.retlen;
1582
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001583 nand_release_device(mtd);
1584
1585 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
1588/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001589 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1590 * @mtd: mtd info structure
1591 * @chip: nand chip info structure
1592 * @page: page number to read
1593 * @sndcmd: flag whether to issue read command or not
1594 */
1595static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1596 int page, int sndcmd)
1597{
1598 if (sndcmd) {
1599 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1600 sndcmd = 0;
1601 }
1602 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1603 return sndcmd;
1604}
1605
1606/**
1607 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1608 * with syndromes
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_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1615 int page, int sndcmd)
1616{
1617 uint8_t *buf = chip->oob_poi;
1618 int length = mtd->oobsize;
1619 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1620 int eccsize = chip->ecc.size;
1621 uint8_t *bufpoi = buf;
1622 int i, toread, sndrnd = 0, pos;
1623
1624 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1625 for (i = 0; i < chip->ecc.steps; i++) {
1626 if (sndrnd) {
1627 pos = eccsize + i * (eccsize + chunk);
1628 if (mtd->writesize > 512)
1629 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1630 else
1631 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1632 } else
1633 sndrnd = 1;
1634 toread = min_t(int, length, chunk);
1635 chip->read_buf(mtd, bufpoi, toread);
1636 bufpoi += toread;
1637 length -= toread;
1638 }
1639 if (length > 0)
1640 chip->read_buf(mtd, bufpoi, length);
1641
1642 return 1;
1643}
1644
1645/**
1646 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1647 * @mtd: mtd info structure
1648 * @chip: nand chip info structure
1649 * @page: page number to write
1650 */
1651static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1652 int page)
1653{
1654 int status = 0;
1655 const uint8_t *buf = chip->oob_poi;
1656 int length = mtd->oobsize;
1657
1658 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1659 chip->write_buf(mtd, buf, length);
1660 /* Send command to program the OOB data */
1661 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1662
1663 status = chip->waitfunc(mtd, chip);
1664
Savin Zlobec0d420f92006-06-21 11:51:20 +02001665 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001666}
1667
1668/**
1669 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1670 * with syndrome - only for large page flash !
1671 * @mtd: mtd info structure
1672 * @chip: nand chip info structure
1673 * @page: page number to write
1674 */
1675static int nand_write_oob_syndrome(struct mtd_info *mtd,
1676 struct nand_chip *chip, int page)
1677{
1678 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1679 int eccsize = chip->ecc.size, length = mtd->oobsize;
1680 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1681 const uint8_t *bufpoi = chip->oob_poi;
1682
1683 /*
1684 * data-ecc-data-ecc ... ecc-oob
1685 * or
1686 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1687 */
1688 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1689 pos = steps * (eccsize + chunk);
1690 steps = 0;
1691 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001692 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001693
1694 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1695 for (i = 0; i < steps; i++) {
1696 if (sndcmd) {
1697 if (mtd->writesize <= 512) {
1698 uint32_t fill = 0xFFFFFFFF;
1699
1700 len = eccsize;
1701 while (len > 0) {
1702 int num = min_t(int, len, 4);
1703 chip->write_buf(mtd, (uint8_t *)&fill,
1704 num);
1705 len -= num;
1706 }
1707 } else {
1708 pos = eccsize + i * (eccsize + chunk);
1709 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1710 }
1711 } else
1712 sndcmd = 1;
1713 len = min_t(int, length, chunk);
1714 chip->write_buf(mtd, bufpoi, len);
1715 bufpoi += len;
1716 length -= len;
1717 }
1718 if (length > 0)
1719 chip->write_buf(mtd, bufpoi, length);
1720
1721 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1722 status = chip->waitfunc(mtd, chip);
1723
1724 return status & NAND_STATUS_FAIL ? -EIO : 0;
1725}
1726
1727/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001728 * nand_do_read_oob - [Intern] NAND read out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * @mtd: MTD device structure
1730 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001731 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 *
1733 * NAND read out-of-band data from the spare area
1734 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001735static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1736 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001738 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001739 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001740 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001741 int readlen = ops->ooblen;
1742 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001743 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
vimal singh20d8e242009-07-07 15:49:49 +05301745 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1746 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Adrian Hunter03736152007-01-31 17:58:29 +02001748 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001749 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001750 else
1751 len = mtd->oobsize;
1752
1753 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301754 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1755 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001756 return -EINVAL;
1757 }
1758
1759 /* Do not allow reads past end of device */
1760 if (unlikely(from >= mtd->size ||
1761 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1762 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301763 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1764 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001765 return -EINVAL;
1766 }
Vitaly Wool70145682006-11-03 18:20:38 +03001767
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001768 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001769 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001771 /* Shift to get page */
1772 realpage = (int)(from >> chip->page_shift);
1773 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001775 while(1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001776 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001777
1778 len = min(len, readlen);
1779 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001780
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001781 if (!(chip->options & NAND_NO_READRDY)) {
1782 /*
1783 * Apply delay or wait for ready/busy pin. Do this
1784 * before the AUTOINCR check, so no problems arise if a
1785 * chip which does auto increment is marked as
1786 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001787 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001788 if (!chip->dev_ready)
1789 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001790 else
1791 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001793
Vitaly Wool70145682006-11-03 18:20:38 +03001794 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001795 if (!readlen)
1796 break;
1797
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001798 /* Increment page address */
1799 realpage++;
1800
1801 page = realpage & chip->pagemask;
1802 /* Check, if we cross a chip boundary */
1803 if (!page) {
1804 chipnr++;
1805 chip->select_chip(mtd, -1);
1806 chip->select_chip(mtd, chipnr);
1807 }
1808
1809 /* Check, if the chip supports auto page increment
1810 * or if we have hit a block boundary.
1811 */
1812 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1813 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815
Vitaly Wool70145682006-11-03 18:20:38 +03001816 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return 0;
1818}
1819
1820/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001821 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001824 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001826 * NAND read data and/or out-of-band data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001828static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1829 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001831 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001832 int ret = -ENOTSUPP;
1833
1834 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001837 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301838 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1839 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return -EINVAL;
1841 }
1842
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001843 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001845 switch(ops->mode) {
1846 case MTD_OOB_PLACE:
1847 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001848 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001849 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001850
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001851 default:
1852 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
1854
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001855 if (!ops->datbuf)
1856 ret = nand_do_read_oob(mtd, from, ops);
1857 else
1858 ret = nand_do_read_ops(mtd, from, ops);
1859
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001860 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001862 return ret;
1863}
1864
1865
1866/**
1867 * nand_write_page_raw - [Intern] raw page write function
1868 * @mtd: mtd info structure
1869 * @chip: nand chip info structure
1870 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001871 *
1872 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001873 */
1874static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1875 const uint8_t *buf)
1876{
1877 chip->write_buf(mtd, buf, mtd->writesize);
1878 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001881/**
David Brownell52ff49d2009-03-04 12:01:36 -08001882 * nand_write_page_raw_syndrome - [Intern] raw page write function
1883 * @mtd: mtd info structure
1884 * @chip: nand chip info structure
1885 * @buf: data buffer
1886 *
1887 * We need a special oob layout and handling even when ECC isn't checked.
1888 */
1889static void nand_write_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1890 const uint8_t *buf)
1891{
1892 int eccsize = chip->ecc.size;
1893 int eccbytes = chip->ecc.bytes;
1894 uint8_t *oob = chip->oob_poi;
1895 int steps, size;
1896
1897 for (steps = chip->ecc.steps; steps > 0; steps--) {
1898 chip->write_buf(mtd, buf, eccsize);
1899 buf += eccsize;
1900
1901 if (chip->ecc.prepad) {
1902 chip->write_buf(mtd, oob, chip->ecc.prepad);
1903 oob += chip->ecc.prepad;
1904 }
1905
1906 chip->read_buf(mtd, oob, eccbytes);
1907 oob += eccbytes;
1908
1909 if (chip->ecc.postpad) {
1910 chip->write_buf(mtd, oob, chip->ecc.postpad);
1911 oob += chip->ecc.postpad;
1912 }
1913 }
1914
1915 size = mtd->oobsize - (oob - chip->oob_poi);
1916 if (size)
1917 chip->write_buf(mtd, oob, size);
1918}
1919/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001920 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001921 * @mtd: mtd info structure
1922 * @chip: nand chip info structure
1923 * @buf: data buffer
1924 */
1925static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1926 const uint8_t *buf)
1927{
1928 int i, eccsize = chip->ecc.size;
1929 int eccbytes = chip->ecc.bytes;
1930 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001931 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001932 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001933 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001934
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001935 /* Software ecc calculation */
1936 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1937 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001938
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001939 for (i = 0; i < chip->ecc.total; i++)
1940 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001941
Thomas Gleixner90424de2007-04-05 11:44:05 +02001942 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001943}
1944
1945/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001946 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001947 * @mtd: mtd info structure
1948 * @chip: nand chip info structure
1949 * @buf: data buffer
1950 */
1951static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1952 const uint8_t *buf)
1953{
1954 int i, eccsize = chip->ecc.size;
1955 int eccbytes = chip->ecc.bytes;
1956 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001957 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001958 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001959 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001960
1961 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1962 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001963 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001964 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1965 }
1966
1967 for (i = 0; i < chip->ecc.total; i++)
1968 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1969
1970 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1971}
1972
1973/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001974 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001975 * @mtd: mtd info structure
1976 * @chip: nand chip info structure
1977 * @buf: data buffer
1978 *
1979 * The hw generator calculates the error syndrome automatically. Therefor
1980 * we need a special oob layout and handling.
1981 */
1982static void nand_write_page_syndrome(struct mtd_info *mtd,
1983 struct nand_chip *chip, const uint8_t *buf)
1984{
1985 int i, eccsize = chip->ecc.size;
1986 int eccbytes = chip->ecc.bytes;
1987 int eccsteps = chip->ecc.steps;
1988 const uint8_t *p = buf;
1989 uint8_t *oob = chip->oob_poi;
1990
1991 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1992
1993 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1994 chip->write_buf(mtd, p, eccsize);
1995
1996 if (chip->ecc.prepad) {
1997 chip->write_buf(mtd, oob, chip->ecc.prepad);
1998 oob += chip->ecc.prepad;
1999 }
2000
2001 chip->ecc.calculate(mtd, p, oob);
2002 chip->write_buf(mtd, oob, eccbytes);
2003 oob += eccbytes;
2004
2005 if (chip->ecc.postpad) {
2006 chip->write_buf(mtd, oob, chip->ecc.postpad);
2007 oob += chip->ecc.postpad;
2008 }
2009 }
2010
2011 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002012 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002013 if (i)
2014 chip->write_buf(mtd, oob, i);
2015}
2016
2017/**
David Woodhouse956e9442006-09-25 17:12:39 +01002018 * nand_write_page - [REPLACEABLE] write one page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002019 * @mtd: MTD device structure
2020 * @chip: NAND chip descriptor
2021 * @buf: the data to write
2022 * @page: page number to write
2023 * @cached: cached programming
Jesper Juhlefbfe96c2006-10-27 23:24:47 +02002024 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002025 */
2026static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002027 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002028{
2029 int status;
2030
2031 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2032
David Woodhouse956e9442006-09-25 17:12:39 +01002033 if (unlikely(raw))
2034 chip->ecc.write_page_raw(mtd, chip, buf);
2035 else
2036 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002037
2038 /*
2039 * Cached progamming disabled for now, Not sure if its worth the
2040 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
2041 */
2042 cached = 0;
2043
2044 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2045
2046 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002047 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002048 /*
2049 * See if operation failed and additional status checks are
2050 * available
2051 */
2052 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2053 status = chip->errstat(mtd, chip, FL_WRITING, status,
2054 page);
2055
2056 if (status & NAND_STATUS_FAIL)
2057 return -EIO;
2058 } else {
2059 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002060 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002061 }
2062
2063#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2064 /* Send command to read back the data */
2065 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2066
2067 if (chip->verify_buf(mtd, buf, mtd->writesize))
2068 return -EIO;
2069#endif
2070 return 0;
2071}
2072
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002073/**
2074 * nand_fill_oob - [Internal] Transfer client buffer to oob
2075 * @chip: nand chip structure
2076 * @oob: oob data buffer
2077 * @ops: oob ops structure
2078 */
Maxim Levitsky782ce792010-02-22 20:39:36 +02002079static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,
2080 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002081{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002082 switch(ops->mode) {
2083
2084 case MTD_OOB_PLACE:
2085 case MTD_OOB_RAW:
2086 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2087 return oob + len;
2088
2089 case MTD_OOB_AUTO: {
2090 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002091 uint32_t boffs = 0, woffs = ops->ooboffs;
2092 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002093
2094 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002095 /* Write request not from offset 0 ? */
2096 if (unlikely(woffs)) {
2097 if (woffs >= free->length) {
2098 woffs -= free->length;
2099 continue;
2100 }
2101 boffs = free->offset + woffs;
2102 bytes = min_t(size_t, len,
2103 (free->length - woffs));
2104 woffs = 0;
2105 } else {
2106 bytes = min_t(size_t, len, free->length);
2107 boffs = free->offset;
2108 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002109 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002110 oob += bytes;
2111 }
2112 return oob;
2113 }
2114 default:
2115 BUG();
2116 }
2117 return NULL;
2118}
2119
Thomas Gleixner29072b92006-09-28 15:38:36 +02002120#define NOTALIGNED(x) (x & (chip->subpagesize - 1)) != 0
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002121
2122/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002123 * nand_do_write_ops - [Internal] NAND write with ECC
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002124 * @mtd: MTD device structure
2125 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002126 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002127 *
2128 * NAND write with ECC
2129 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002130static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2131 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002132{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002133 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002134 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002135 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002136
2137 uint32_t oobwritelen = ops->ooblen;
2138 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2139 mtd->oobavail : mtd->oobsize;
2140
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002141 uint8_t *oob = ops->oobbuf;
2142 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002143 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002144
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002145 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002146 if (!writelen)
2147 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002148
2149 /* reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002150 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302151 printk(KERN_NOTICE "%s: Attempt to write not "
2152 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002153 return -EINVAL;
2154 }
2155
Thomas Gleixner29072b92006-09-28 15:38:36 +02002156 column = to & (mtd->writesize - 1);
2157 subpage = column || (writelen & (mtd->writesize - 1));
2158
2159 if (subpage && oob)
2160 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002161
Thomas Gleixner6a930962006-06-28 00:11:45 +02002162 chipnr = (int)(to >> chip->chip_shift);
2163 chip->select_chip(mtd, chipnr);
2164
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002165 /* Check, if it is write protected */
2166 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002167 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002168
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002169 realpage = (int)(to >> chip->page_shift);
2170 page = realpage & chip->pagemask;
2171 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2172
2173 /* Invalidate the page cache, when we write to the cached page */
2174 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002175 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002176 chip->pagebuf = -1;
2177
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01002178 /* If we're not given explicit OOB data, let it be 0xFF */
2179 if (likely(!oob))
2180 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002181
Maxim Levitsky782ce792010-02-22 20:39:36 +02002182 /* Don't allow multipage oob writes with offset */
2183 if (ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
2184 return -EINVAL;
2185
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002186 while(1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002187 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002188 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002189 uint8_t *wbuf = buf;
2190
2191 /* Partial page write ? */
2192 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2193 cached = 0;
2194 bytes = min_t(int, bytes - column, (int) writelen);
2195 chip->pagebuf = -1;
2196 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2197 memcpy(&chip->buffers->databuf[column], buf, bytes);
2198 wbuf = chip->buffers->databuf;
2199 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002200
Maxim Levitsky782ce792010-02-22 20:39:36 +02002201 if (unlikely(oob)) {
2202 size_t len = min(oobwritelen, oobmaxlen);
2203 oob = nand_fill_oob(chip, oob, len, ops);
2204 oobwritelen -= len;
2205 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002206
Thomas Gleixner29072b92006-09-28 15:38:36 +02002207 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002208 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002209 if (ret)
2210 break;
2211
2212 writelen -= bytes;
2213 if (!writelen)
2214 break;
2215
Thomas Gleixner29072b92006-09-28 15:38:36 +02002216 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002217 buf += bytes;
2218 realpage++;
2219
2220 page = realpage & chip->pagemask;
2221 /* Check, if we cross a chip boundary */
2222 if (!page) {
2223 chipnr++;
2224 chip->select_chip(mtd, -1);
2225 chip->select_chip(mtd, chipnr);
2226 }
2227 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002228
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002229 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002230 if (unlikely(oob))
2231 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002232 return ret;
2233}
2234
2235/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002236 * panic_nand_write - [MTD Interface] NAND write with ECC
2237 * @mtd: MTD device structure
2238 * @to: offset to write to
2239 * @len: number of bytes to write
2240 * @retlen: pointer to variable to store the number of written bytes
2241 * @buf: the data to write
2242 *
2243 * NAND write with ECC. Used when performing writes in interrupt context, this
2244 * may for example be called by mtdoops when writing an oops while in panic.
2245 */
2246static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2247 size_t *retlen, const uint8_t *buf)
2248{
2249 struct nand_chip *chip = mtd->priv;
2250 int ret;
2251
2252 /* Do not allow reads past end of device */
2253 if ((to + len) > mtd->size)
2254 return -EINVAL;
2255 if (!len)
2256 return 0;
2257
2258 /* Wait for the device to get ready. */
2259 panic_nand_wait(mtd, chip, 400);
2260
2261 /* Grab the device. */
2262 panic_nand_get_device(chip, mtd, FL_WRITING);
2263
2264 chip->ops.len = len;
2265 chip->ops.datbuf = (uint8_t *)buf;
2266 chip->ops.oobbuf = NULL;
2267
2268 ret = nand_do_write_ops(mtd, to, &chip->ops);
2269
2270 *retlen = chip->ops.retlen;
2271 return ret;
2272}
2273
2274/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002275 * nand_write - [MTD Interface] NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 * @mtd: MTD device structure
2277 * @to: offset to write to
2278 * @len: number of bytes to write
2279 * @retlen: pointer to variable to store the number of written bytes
2280 * @buf: the data to write
2281 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002282 * NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002284static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002285 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002287 struct nand_chip *chip = mtd->priv;
2288 int ret;
2289
2290 /* Do not allow reads past end of device */
2291 if ((to + len) > mtd->size)
2292 return -EINVAL;
2293 if (!len)
2294 return 0;
2295
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002296 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002297
2298 chip->ops.len = len;
2299 chip->ops.datbuf = (uint8_t *)buf;
2300 chip->ops.oobbuf = NULL;
2301
2302 ret = nand_do_write_ops(mtd, to, &chip->ops);
2303
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002304 *retlen = chip->ops.retlen;
2305
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002306 nand_release_device(mtd);
2307
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002308 return ret;
2309}
2310
2311/**
2312 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
2313 * @mtd: MTD device structure
2314 * @to: offset to write to
2315 * @ops: oob operation description structure
2316 *
2317 * NAND write out-of-band
2318 */
2319static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2320 struct mtd_oob_ops *ops)
2321{
Adrian Hunter03736152007-01-31 17:58:29 +02002322 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002323 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
vimal singh20d8e242009-07-07 15:49:49 +05302325 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2326 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Adrian Hunter03736152007-01-31 17:58:29 +02002328 if (ops->mode == MTD_OOB_AUTO)
2329 len = chip->ecc.layout->oobavail;
2330 else
2331 len = mtd->oobsize;
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002334 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302335 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2336 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return -EINVAL;
2338 }
2339
Adrian Hunter03736152007-01-31 17:58:29 +02002340 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302341 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2342 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002343 return -EINVAL;
2344 }
2345
2346 /* Do not allow reads past end of device */
2347 if (unlikely(to >= mtd->size ||
2348 ops->ooboffs + ops->ooblen >
2349 ((mtd->size >> chip->page_shift) -
2350 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302351 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2352 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002353 return -EINVAL;
2354 }
2355
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002356 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002357 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002359 /* Shift to get page */
2360 page = (int)(to >> chip->page_shift);
2361
2362 /*
2363 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2364 * of my DiskOnChip 2000 test units) will clear the whole data page too
2365 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2366 * it in the doc2000 driver in August 1999. dwmw2.
2367 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002368 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 /* Check, if it is write protected */
2371 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002372 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002375 if (page == chip->pagebuf)
2376 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002378 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002379 nand_fill_oob(chip, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002380 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2381 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002382
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002383 if (status)
2384 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Vitaly Wool70145682006-11-03 18:20:38 +03002386 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002388 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002391/**
2392 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2393 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002394 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002395 * @ops: oob operation description structure
2396 */
2397static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2398 struct mtd_oob_ops *ops)
2399{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002400 struct nand_chip *chip = mtd->priv;
2401 int ret = -ENOTSUPP;
2402
2403 ops->retlen = 0;
2404
2405 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002406 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302407 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2408 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002409 return -EINVAL;
2410 }
2411
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002412 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002413
2414 switch(ops->mode) {
2415 case MTD_OOB_PLACE:
2416 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002417 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002418 break;
2419
2420 default:
2421 goto out;
2422 }
2423
2424 if (!ops->datbuf)
2425 ret = nand_do_write_oob(mtd, to, ops);
2426 else
2427 ret = nand_do_write_ops(mtd, to, ops);
2428
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002429 out:
2430 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return ret;
2432}
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2436 * @mtd: MTD device structure
2437 * @page: the page address of the block which will be erased
2438 *
2439 * Standard erase command for NAND chips
2440 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002441static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002443 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002445 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2446 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447}
2448
2449/**
2450 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2451 * @mtd: MTD device structure
2452 * @page: the page address of the block which will be erased
2453 *
2454 * AND multi block erase command function
2455 * Erase 4 consecutive blocks
2456 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002457static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002459 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002461 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2462 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2463 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2464 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2465 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
2468/**
2469 * nand_erase - [MTD Interface] erase block(s)
2470 * @mtd: MTD device structure
2471 * @instr: erase instruction
2472 *
2473 * Erase one ore more blocks
2474 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002475static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
David Woodhousee0c7d762006-05-13 18:07:53 +01002477 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002479
David A. Marlin30f464b2005-01-17 18:35:25 +00002480#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002482 * nand_erase_nand - [Internal] erase block(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 * @mtd: MTD device structure
2484 * @instr: erase instruction
2485 * @allowbbt: allow erasing the bbt area
2486 *
2487 * Erase one ore more blocks
2488 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002489int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2490 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Adrian Hunter69423d92008-12-10 13:37:21 +00002492 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002493 struct nand_chip *chip = mtd->priv;
Adrian Hunter69423d92008-12-10 13:37:21 +00002494 loff_t rewrite_bbt[NAND_MAX_CHIPS]={0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002495 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002496 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
vimal singh20d8e242009-07-07 15:49:49 +05302498 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2499 __func__, (unsigned long long)instr->addr,
2500 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302502 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002505 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002508 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002511 page = (int)(instr->addr >> chip->page_shift);
2512 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002515 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002518 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 /* Check, if it is write protected */
2521 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302522 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2523 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 instr->state = MTD_ERASE_FAILED;
2525 goto erase_exit;
2526 }
2527
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002528 /*
2529 * If BBT requires refresh, set the BBT page mask to see if the BBT
2530 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2531 * can not be matched. This is also done when the bbt is actually
2532 * erased to avoid recusrsive updates
2533 */
2534 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2535 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 /* Loop through the pages */
2538 len = instr->len;
2539
2540 instr->state = MTD_ERASING;
2541
2542 while (len) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002543 /*
2544 * heck if we have a bad block, we do not erase bad blocks !
2545 */
2546 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2547 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302548 printk(KERN_WARNING "%s: attempt to erase a bad block "
2549 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 instr->state = MTD_ERASE_FAILED;
2551 goto erase_exit;
2552 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002553
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002554 /*
2555 * Invalidate the page cache, if we erase the block which
2556 * contains the current cached page
2557 */
2558 if (page <= chip->pagebuf && chip->pagebuf <
2559 (page + pages_per_block))
2560 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002562 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002563
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002564 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002566 /*
2567 * See if operation failed and additional status checks are
2568 * available
2569 */
2570 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2571 status = chip->errstat(mtd, chip, FL_ERASING,
2572 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002575 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302576 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2577 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002579 instr->fail_addr =
2580 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 goto erase_exit;
2582 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002583
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002584 /*
2585 * If BBT requires refresh, set the BBT rewrite flag to the
2586 * page being erased
2587 */
2588 if (bbt_masked_page != 0xffffffff &&
2589 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002590 rewrite_bbt[chipnr] =
2591 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002594 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 page += pages_per_block;
2596
2597 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002598 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002600 chip->select_chip(mtd, -1);
2601 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002602
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002603 /*
2604 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2605 * page mask to see if this BBT should be rewritten
2606 */
2607 if (bbt_masked_page != 0xffffffff &&
2608 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2609 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2610 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
2612 }
2613 instr->state = MTD_ERASE_DONE;
2614
David Woodhousee0c7d762006-05-13 18:07:53 +01002615 erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 /* Deselect and wake up anyone waiting on the device */
2620 nand_release_device(mtd);
2621
David Woodhouse49defc02007-10-06 15:01:59 -04002622 /* Do call back function */
2623 if (!ret)
2624 mtd_erase_callback(instr);
2625
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002626 /*
2627 * If BBT requires refresh and erase was successful, rewrite any
2628 * selected bad block tables
2629 */
2630 if (bbt_masked_page == 0xffffffff || ret)
2631 return ret;
2632
2633 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2634 if (!rewrite_bbt[chipnr])
2635 continue;
2636 /* update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302637 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2638 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2639 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002640 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002641 }
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 /* Return more or less happy */
2644 return ret;
2645}
2646
2647/**
2648 * nand_sync - [MTD Interface] sync
2649 * @mtd: MTD device structure
2650 *
2651 * Sync is actually a wait for chip ready function
2652 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002653static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002655 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
vimal singh20d8e242009-07-07 15:49:49 +05302657 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002660 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002662 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002666 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002668 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002670static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
2672 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002673 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002675
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002676 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
2679/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002680 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 * @mtd: MTD device structure
2682 * @ofs: offset relative to mtd start
2683 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002684static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002686 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 int ret;
2688
David Woodhousee0c7d762006-05-13 18:07:53 +01002689 if ((ret = nand_block_isbad(mtd, ofs))) {
2690 /* If it was bad already, return success and do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (ret > 0)
2692 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002693 return ret;
2694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002696 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
2699/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002700 * nand_suspend - [MTD Interface] Suspend the NAND flash
2701 * @mtd: MTD device structure
2702 */
2703static int nand_suspend(struct mtd_info *mtd)
2704{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002705 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002706
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002707 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002708}
2709
2710/**
2711 * nand_resume - [MTD Interface] Resume the NAND flash
2712 * @mtd: MTD device structure
2713 */
2714static void nand_resume(struct mtd_info *mtd)
2715{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002716 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002717
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002718 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002719 nand_release_device(mtd);
2720 else
vimal singh20d8e242009-07-07 15:49:49 +05302721 printk(KERN_ERR "%s called for a chip which is not "
2722 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002723}
2724
Thomas Gleixnera36ed292006-05-23 11:37:03 +02002725/*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002726 * Set default functions
2727 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002728static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002729{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002731 if (!chip->chip_delay)
2732 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
2734 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002735 if (chip->cmdfunc == NULL)
2736 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002739 if (chip->waitfunc == NULL)
2740 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002742 if (!chip->select_chip)
2743 chip->select_chip = nand_select_chip;
2744 if (!chip->read_byte)
2745 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2746 if (!chip->read_word)
2747 chip->read_word = nand_read_word;
2748 if (!chip->block_bad)
2749 chip->block_bad = nand_block_bad;
2750 if (!chip->block_markbad)
2751 chip->block_markbad = nand_default_block_markbad;
2752 if (!chip->write_buf)
2753 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2754 if (!chip->read_buf)
2755 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2756 if (!chip->verify_buf)
2757 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2758 if (!chip->scan_bbt)
2759 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002760
2761 if (!chip->controller) {
2762 chip->controller = &chip->hwcontrol;
2763 spin_lock_init(&chip->controller->lock);
2764 init_waitqueue_head(&chip->controller->wq);
2765 }
2766
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002767}
2768
2769/*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002770 * Get the flash and manufacturer id and lookup if the type is supported
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002771 */
2772static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002773 struct nand_chip *chip,
David Woodhouse5e81e882010-02-26 18:32:56 +00002774 int busw, int *maf_id,
2775 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002776{
David Woodhouse5e81e882010-02-26 18:32:56 +00002777 int dev_id, maf_idx;
Ben Dooksed8165c2008-04-14 14:58:58 +01002778 int tmp_id, tmp_manf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002781 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Karl Beldanef89a882008-09-15 14:37:29 +02002783 /*
2784 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2785 * after power-up
2786 */
2787 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002790 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002793 *maf_id = chip->read_byte(mtd);
2794 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Ben Dooksed8165c2008-04-14 14:58:58 +01002796 /* Try again to make sure, as some systems the bus-hold or other
2797 * interface concerns can cause random data which looks like a
2798 * possibly credible NAND flash to appear. If the two results do
2799 * not match, ignore the device completely.
2800 */
2801
2802 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2803
2804 /* Read manufacturer and device IDs */
2805
2806 tmp_manf = chip->read_byte(mtd);
2807 tmp_id = chip->read_byte(mtd);
2808
2809 if (tmp_manf != *maf_id || tmp_id != dev_id) {
2810 printk(KERN_INFO "%s: second ID read did not match "
2811 "%02x,%02x against %02x,%02x\n", __func__,
2812 *maf_id, dev_id, tmp_manf, tmp_id);
2813 return ERR_PTR(-ENODEV);
2814 }
2815
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002816 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002817 type = nand_flash_ids;
2818
2819 for (; type->name != NULL; type++)
2820 if (dev_id == type->id)
2821 break;
2822
2823 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002824 return ERR_PTR(-ENODEV);
2825
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002826 if (!mtd->name)
2827 mtd->name = type->name;
2828
Adrian Hunter69423d92008-12-10 13:37:21 +00002829 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002830
2831 /* Newer devices have all the information in additional id bytes */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002832 if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002833 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002834 /* The 3rd id byte holds MLC / multichip data */
2835 chip->cellinfo = chip->read_byte(mtd);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002836 /* The 4th id byte is the important one */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002837 extid = chip->read_byte(mtd);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002838 /* Calc pagesize */
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002839 mtd->writesize = 1024 << (extid & 0x3);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002840 extid >>= 2;
2841 /* Calc oobsize */
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002842 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002843 extid >>= 2;
2844 /* Calc blocksize. Blocksize is multiples of 64KiB */
2845 mtd->erasesize = (64 * 1024) << (extid & 0x03);
2846 extid >>= 2;
2847 /* Get buswidth information */
2848 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
2849
2850 } else {
2851 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002852 * Old devices have chip data hardcoded in the device id table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002853 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002854 mtd->erasesize = type->erasesize;
2855 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002856 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002857 busw = type->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002858 }
2859
2860 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01002861 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002862 if (nand_manuf_ids[maf_idx].id == *maf_id)
2863 break;
2864 }
2865
2866 /*
2867 * Check, if buswidth is correct. Hardware drivers should set
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002868 * chip correct !
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002869 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002870 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002871 printk(KERN_INFO "NAND device: Manufacturer ID:"
2872 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
2873 dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
2874 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002875 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002876 busw ? 16 : 8);
2877 return ERR_PTR(-EINVAL);
2878 }
2879
2880 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002881 chip->page_shift = ffs(mtd->writesize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002882 /* Convert chipsize to number of pages per chip -1. */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002883 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002884
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002885 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002886 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00002887 if (chip->chipsize & 0xffffffff)
2888 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
2889 else
2890 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32)) + 32 - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002891
2892 /* Set the bad block position */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002893 chip->badblockpos = mtd->writesize > 512 ?
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002894 NAND_LARGE_BADBLOCK_POS : NAND_SMALL_BADBLOCK_POS;
Maxim Levitskye0b58d02010-02-22 20:39:38 +02002895 chip->badblockbits = 8;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002896
2897 /* Get chip options, preserve non chip based options */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002898 chip->options &= ~NAND_CHIPOPTIONS_MSK;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002899 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002900
2901 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002902 * Set chip as a default. Board drivers can override it, if necessary
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002903 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002904 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002905
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002906 /* Check if chip is a not a samsung device. Do not clear the
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002907 * options for chips which are not having an extended id.
2908 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002909 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002910 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002911
2912 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002913 if (chip->options & NAND_4PAGE_ARRAY)
2914 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002915 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002916 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002917
2918 /* Do not replace user supplied command function ! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002919 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
2920 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002921
2922 printk(KERN_INFO "NAND device: Manufacturer ID:"
2923 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, dev_id,
2924 nand_manuf_ids[maf_idx].name, type->name);
2925
2926 return type;
2927}
2928
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002929/**
David Woodhouse3b85c322006-09-25 17:06:53 +01002930 * nand_scan_ident - [NAND Interface] Scan for the NAND device
2931 * @mtd: MTD device structure
2932 * @maxchips: Number of chips to scan for
David Woodhouse5e81e882010-02-26 18:32:56 +00002933 * @table: Alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002934 *
David Woodhouse3b85c322006-09-25 17:06:53 +01002935 * This is the first phase of the normal nand_scan() function. It
2936 * reads the flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002937 *
David Woodhouse3b85c322006-09-25 17:06:53 +01002938 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002939 */
David Woodhouse5e81e882010-02-26 18:32:56 +00002940int nand_scan_ident(struct mtd_info *mtd, int maxchips,
2941 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002942{
2943 int i, busw, nand_maf_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002944 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002945 struct nand_flash_dev *type;
2946
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002947 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002948 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002949 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002950 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002951
2952 /* Read the flash type */
David Woodhouse5e81e882010-02-26 18:32:56 +00002953 type = nand_get_flash_type(mtd, chip, busw, &nand_maf_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002954
2955 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00002956 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
2957 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002958 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002959 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 }
2961
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002962 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01002963 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002964 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02002965 /* See comment in nand_get_flash_type for reset */
2966 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002968 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002970 if (nand_maf_id != chip->read_byte(mtd) ||
2971 type->id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 break;
2973 }
2974 if (i > 1)
2975 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002978 chip->numchips = i;
2979 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
David Woodhouse3b85c322006-09-25 17:06:53 +01002981 return 0;
2982}
2983
2984
2985/**
2986 * nand_scan_tail - [NAND Interface] Scan for the NAND device
2987 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01002988 *
2989 * This is the second phase of the normal nand_scan() function. It
2990 * fills out all the uninitialized function pointers with the defaults
2991 * and scans for a bad block table if appropriate.
2992 */
2993int nand_scan_tail(struct mtd_info *mtd)
2994{
2995 int i;
2996 struct nand_chip *chip = mtd->priv;
2997
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002998 if (!(chip->options & NAND_OWN_BUFFERS))
2999 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3000 if (!chip->buffers)
3001 return -ENOMEM;
3002
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003003 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003004 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003005
3006 /*
3007 * If no default placement scheme is given, select an appropriate one
3008 */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003009 if (!chip->ecc.layout) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003010 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003012 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 break;
3014 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003015 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 break;
3017 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003018 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003020 case 128:
3021 chip->ecc.layout = &nand_oob_128;
3022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003024 printk(KERN_WARNING "No oob scheme defined for "
3025 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 BUG();
3027 }
3028 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003029
David Woodhouse956e9442006-09-25 17:12:39 +01003030 if (!chip->write_page)
3031 chip->write_page = nand_write_page;
3032
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003033 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003034 * check ECC mode, default to software if 3byte/512byte hardware ECC is
3035 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003036 */
David Woodhouse956e9442006-09-25 17:12:39 +01003037
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003038 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003039 case NAND_ECC_HW_OOB_FIRST:
3040 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3041 if (!chip->ecc.calculate || !chip->ecc.correct ||
3042 !chip->ecc.hwctl) {
3043 printk(KERN_WARNING "No ECC functions supplied; "
3044 "Hardware ECC not possible\n");
3045 BUG();
3046 }
3047 if (!chip->ecc.read_page)
3048 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3049
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003050 case NAND_ECC_HW:
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003051 /* Use standard hwecc read page function ? */
3052 if (!chip->ecc.read_page)
3053 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003054 if (!chip->ecc.write_page)
3055 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003056 if (!chip->ecc.read_page_raw)
3057 chip->ecc.read_page_raw = nand_read_page_raw;
3058 if (!chip->ecc.write_page_raw)
3059 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003060 if (!chip->ecc.read_oob)
3061 chip->ecc.read_oob = nand_read_oob_std;
3062 if (!chip->ecc.write_oob)
3063 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003064
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003065 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003066 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3067 !chip->ecc.hwctl) &&
3068 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003069 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003070 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003071 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003072 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003073 "Hardware ECC not possible\n");
3074 BUG();
3075 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003076 /* Use standard syndrome read/write page function ? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003077 if (!chip->ecc.read_page)
3078 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003079 if (!chip->ecc.write_page)
3080 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003081 if (!chip->ecc.read_page_raw)
3082 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3083 if (!chip->ecc.write_page_raw)
3084 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003085 if (!chip->ecc.read_oob)
3086 chip->ecc.read_oob = nand_read_oob_syndrome;
3087 if (!chip->ecc.write_oob)
3088 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003089
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003090 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003091 break;
3092 printk(KERN_WARNING "%d byte HW ECC not possible on "
3093 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003094 chip->ecc.size, mtd->writesize);
3095 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003097 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003098 chip->ecc.calculate = nand_calculate_ecc;
3099 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003100 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003101 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003102 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003103 chip->ecc.read_page_raw = nand_read_page_raw;
3104 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003105 chip->ecc.read_oob = nand_read_oob_std;
3106 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003107 if (!chip->ecc.size)
3108 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003109 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003111
3112 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003113 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3114 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003115 chip->ecc.read_page = nand_read_page_raw;
3116 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003117 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003118 chip->ecc.read_page_raw = nand_read_page_raw;
3119 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003120 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003121 chip->ecc.size = mtd->writesize;
3122 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003126 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003127 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003128 BUG();
3129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003131 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003132 * The number of bytes available for a client to place data into
3133 * the out of band area
3134 */
3135 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003136 for (i = 0; chip->ecc.layout->oobfree[i].length
3137 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003138 chip->ecc.layout->oobavail +=
3139 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003140 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003141
3142 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003143 * Set the number of read / write steps for one page depending on ECC
3144 * mode
3145 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003146 chip->ecc.steps = mtd->writesize / chip->ecc.size;
3147 if(chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003148 printk(KERN_WARNING "Invalid ecc parameters\n");
3149 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003151 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003152
Thomas Gleixner29072b92006-09-28 15:38:36 +02003153 /*
3154 * Allow subpage writes up to ecc.steps. Not possible for MLC
3155 * FLASH.
3156 */
3157 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3158 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
3159 switch(chip->ecc.steps) {
3160 case 2:
3161 mtd->subpage_sft = 1;
3162 break;
3163 case 4:
3164 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003165 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003166 mtd->subpage_sft = 2;
3167 break;
3168 }
3169 }
3170 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3171
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003172 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003173 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003176 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
3178 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003179 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
3181 /* Fill in remaining MTD driver data */
3182 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003183 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3184 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 mtd->erase = nand_erase;
3186 mtd->point = NULL;
3187 mtd->unpoint = NULL;
3188 mtd->read = nand_read;
3189 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003190 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 mtd->read_oob = nand_read_oob;
3192 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 mtd->sync = nand_sync;
3194 mtd->lock = NULL;
3195 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003196 mtd->suspend = nand_suspend;
3197 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 mtd->block_isbad = nand_block_isbad;
3199 mtd->block_markbad = nand_block_markbad;
3200
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003201 /* propagate ecc.layout to mtd_info */
3202 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003204 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003205 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
3208 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003209 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210}
3211
Rusty Russella6e6abd2009-03-31 13:05:31 -06003212/* is_module_text_address() isn't exported, and it's mostly a pointless
David Woodhouse3b85c322006-09-25 17:06:53 +01003213 test if this is a module _anyway_ -- they'd have to try _really_ hard
3214 to call us from in-kernel code if the core NAND support is modular. */
3215#ifdef MODULE
3216#define caller_is_module() (1)
3217#else
3218#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003219 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003220#endif
3221
3222/**
3223 * nand_scan - [NAND Interface] Scan for the NAND device
3224 * @mtd: MTD device structure
3225 * @maxchips: Number of chips to scan for
3226 *
3227 * This fills out all the uninitialized function pointers
3228 * with the defaults.
3229 * The flash ID is read and the mtd/chip structures are
3230 * filled with the appropriate values.
3231 * The mtd->owner field must be set to the module of the caller
3232 *
3233 */
3234int nand_scan(struct mtd_info *mtd, int maxchips)
3235{
3236 int ret;
3237
3238 /* Many callers got this wrong, so check for it for a while... */
3239 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303240 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3241 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003242 BUG();
3243 }
3244
David Woodhouse5e81e882010-02-26 18:32:56 +00003245 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003246 if (!ret)
3247 ret = nand_scan_tail(mtd);
3248 return ret;
3249}
3250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003252 * nand_release - [NAND Interface] Free resources held by the NAND device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 * @mtd: MTD device structure
3254*/
David Woodhousee0c7d762006-05-13 18:07:53 +01003255void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003257 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259#ifdef CONFIG_MTD_PARTITIONS
3260 /* Deregister partitions */
David Woodhousee0c7d762006-05-13 18:07:53 +01003261 del_mtd_partitions(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262#endif
3263 /* Deregister the device */
David Woodhousee0c7d762006-05-13 18:07:53 +01003264 del_mtd_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Jesper Juhlfa671642005-11-07 01:01:27 -08003266 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003267 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003268 if (!(chip->options & NAND_OWN_BUFFERS))
3269 kfree(chip->buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
Vimal Singh7d70f332010-02-08 15:50:49 +05303272EXPORT_SYMBOL_GPL(nand_lock);
3273EXPORT_SYMBOL_GPL(nand_unlock);
David Woodhousee0c7d762006-05-13 18:07:53 +01003274EXPORT_SYMBOL_GPL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003275EXPORT_SYMBOL_GPL(nand_scan_ident);
3276EXPORT_SYMBOL_GPL(nand_scan_tail);
David Woodhousee0c7d762006-05-13 18:07:53 +01003277EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003278
3279static int __init nand_base_init(void)
3280{
3281 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3282 return 0;
3283}
3284
3285static void __exit nand_base_exit(void)
3286{
3287 led_trigger_unregister_simple(nand_led_trigger);
3288}
3289
3290module_init(nand_base_init);
3291module_exit(nand_base_exit);
3292
David Woodhousee0c7d762006-05-13 18:07:53 +01003293MODULE_LICENSE("GPL");
3294MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>, Thomas Gleixner <tglx@linutronix.de>");
3295MODULE_DESCRIPTION("Generic NAND flash driver code");