blob: d1129bae6c27d20731ef0ead6b86a863e590e7f4 [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 Gleixnerace4dfe2006-05-24 12:07:37 +020085static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020086 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020088static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
89 struct mtd_oob_ops *ops);
90
Thomas Gleixnerd470a972006-05-23 23:48:57 +020091/*
Joe Perches8e87d782008-02-03 17:22:34 +020092 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +020093 * compiled away when LED support is disabled.
94 */
95DEFINE_LED_TRIGGER(nand_led_trigger);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/**
98 * nand_release_device - [GENERIC] release chip
99 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000100 *
101 * Deselect, release chip lock and wake up anyone waiting on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100103static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200105 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200108 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100109
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200110 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200111 spin_lock(&chip->controller->lock);
112 chip->controller->active = NULL;
113 chip->state = FL_READY;
114 wake_up(&chip->controller->wq);
115 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/**
119 * nand_read_byte - [DEFAULT] read one byte from the chip
120 * @mtd: MTD device structure
121 *
122 * Default read function for 8bit buswith
123 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200124static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200126 struct nand_chip *chip = mtd->priv;
127 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
132 * @mtd: MTD device structure
133 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000134 * Default read function for 16bit buswith with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * endianess conversion
136 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200137static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200139 struct nand_chip *chip = mtd->priv;
140 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * nand_read_word - [DEFAULT] read one word from the chip
145 * @mtd: MTD device structure
146 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000147 * Default read function for 16bit buswith without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * endianess conversion
149 */
150static u16 nand_read_word(struct mtd_info *mtd)
151{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200152 struct nand_chip *chip = mtd->priv;
153 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * nand_select_chip - [DEFAULT] control CE line
158 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700159 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
161 * Default select function for 1 chip devices.
162 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200163static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200165 struct nand_chip *chip = mtd->priv;
166
167 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200169 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 break;
171 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 break;
173
174 default:
175 BUG();
176 }
177}
178
179/**
180 * nand_write_buf - [DEFAULT] write buffer to chip
181 * @mtd: MTD device structure
182 * @buf: data buffer
183 * @len: number of bytes to write
184 *
185 * Default write function for 8bit buswith
186 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200187static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200190 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
David Woodhousee0c7d762006-05-13 18:07:53 +0100192 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200193 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000197 * nand_read_buf - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * @mtd: MTD device structure
199 * @buf: buffer to store date
200 * @len: number of bytes to read
201 *
202 * Default read function for 8bit buswith
203 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200204static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200207 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
David Woodhousee0c7d762006-05-13 18:07:53 +0100209 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200210 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000214 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * @mtd: MTD device structure
216 * @buf: buffer containing the data to compare
217 * @len: number of bytes to compare
218 *
219 * Default verify function for 8bit buswith
220 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200221static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200224 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
David Woodhousee0c7d762006-05-13 18:07:53 +0100226 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200227 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
232/**
233 * nand_write_buf16 - [DEFAULT] write buffer to chip
234 * @mtd: MTD device structure
235 * @buf: data buffer
236 * @len: number of bytes to write
237 *
238 * Default write function for 16bit buswith
239 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200240static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200243 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 u16 *p = (u16 *) buf;
245 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000246
David Woodhousee0c7d762006-05-13 18:07:53 +0100247 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200248 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000253 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * @mtd: MTD device structure
255 * @buf: buffer to store date
256 * @len: number of bytes to read
257 *
258 * Default read function for 16bit buswith
259 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200260static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200263 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 u16 *p = (u16 *) buf;
265 len >>= 1;
266
David Woodhousee0c7d762006-05-13 18:07:53 +0100267 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200268 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000272 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * @mtd: MTD device structure
274 * @buf: buffer containing the data to compare
275 * @len: number of bytes to compare
276 *
277 * Default verify function for 16bit buswith
278 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200279static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200282 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 u16 *p = (u16 *) buf;
284 len >>= 1;
285
David Woodhousee0c7d762006-05-13 18:07:53 +0100286 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200287 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -EFAULT;
289
290 return 0;
291}
292
293/**
294 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
295 * @mtd: MTD device structure
296 * @ofs: offset from device start
297 * @getchip: 0, if the chip is already selected
298 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000299 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
301static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
302{
303 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200304 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 u16 bad;
306
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100307 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200310 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200312 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200315 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200318 if (chip->options & NAND_BUSWIDTH_16) {
319 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100320 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200321 bad = cpu_to_le16(chip->read_word(mtd));
322 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000323 bad >>= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if ((bad & 0xFF) != 0xff)
325 res = 1;
326 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100327 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200328 if (chip->read_byte(mtd) != 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 res = 1;
330 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000331
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200332 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return res;
336}
337
338/**
339 * nand_default_block_markbad - [DEFAULT] mark a block bad
340 * @mtd: MTD device structure
341 * @ofs: offset from device start
342 *
343 * This is the default implementation, which can be overridden by
344 * a hardware specific driver.
345*/
346static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
347{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200348 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200349 uint8_t buf[2] = { 0, 0 };
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200350 int block, ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400353 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200354 if (chip->bbt)
355 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Do we have a flash based bad block table ? */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200358 if (chip->options & NAND_USE_FLASH_BBT)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200359 ret = nand_update_bbt(mtd, ofs);
360 else {
361 /* We write two bytes, so we dont have to mess with 16 bit
362 * access
363 */
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300364 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200365 ofs += mtd->oobsize;
Ricard Wanderlöfff0dab62006-10-23 09:33:34 +0200366 chip->ops.len = chip->ops.ooblen = 2;
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200367 chip->ops.datbuf = NULL;
368 chip->ops.oobbuf = buf;
369 chip->ops.ooboffs = chip->badblockpos & ~0x01;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000370
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200371 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300372 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200373 }
374 if (!ret)
375 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300376
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000380/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * nand_check_wp - [GENERIC] check if the chip is write protected
382 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000383 * Check, if the device is write protected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000385 * The function expects, that the device is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100387static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200389 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200391 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
392 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/**
396 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
397 * @mtd: MTD device structure
398 * @ofs: offset from device start
399 * @getchip: 0, if the chip is already selected
400 * @allowbbt: 1, if its allowed to access the bbt area
401 *
402 * Check, if the block is bad. Either by reading the bad block table or
403 * calling of the scan function.
404 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200405static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
406 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200408 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000409
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200410 if (!chip->bbt)
411 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100414 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000417/*
Thomas Gleixner3b887752005-02-22 21:56:49 +0000418 * Wait for the ready pin, after a command
419 * The timeout is catched later.
420 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100421void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000422{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200423 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100424 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000425
Richard Purdie8fe833c2006-03-31 02:31:14 -0800426 led_trigger_event(nand_led_trigger, LED_FULL);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000427 /* wait until command is processed or timeout occures */
428 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200429 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800430 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700431 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000432 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800433 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000434}
David Woodhouse4b648b02006-09-25 17:05:24 +0100435EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/**
438 * nand_command - [DEFAULT] Send command to NAND device
439 * @mtd: MTD device structure
440 * @command: the command to be sent
441 * @column: the column address for this command, -1 if none
442 * @page_addr: the page address for this command, -1 if none
443 *
444 * Send command to NAND device. This function is used for small page
445 * devices (256/512 Bytes per page)
446 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200447static void nand_command(struct mtd_info *mtd, unsigned int command,
448 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200450 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200451 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /*
454 * Write out the command to the device.
455 */
456 if (command == NAND_CMD_SEQIN) {
457 int readcmd;
458
Joern Engel28318772006-05-22 23:18:05 +0200459 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200461 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 readcmd = NAND_CMD_READOOB;
463 } else if (column < 256) {
464 /* First 256 bytes --> READ0 */
465 readcmd = NAND_CMD_READ0;
466 } else {
467 column -= 256;
468 readcmd = NAND_CMD_READ1;
469 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200470 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200471 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200475 /*
476 * Address cycle, when necessary
477 */
478 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
479 /* Serially input address */
480 if (column != -1) {
481 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200482 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200483 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200484 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200485 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200487 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200488 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200489 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200490 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200491 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200492 if (chip->chipsize > (32 << 20))
493 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200494 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200495 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000496
497 /*
498 * program and erase have their own busy handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 case NAND_CMD_PAGEPROG:
504 case NAND_CMD_ERASE1:
505 case NAND_CMD_ERASE2:
506 case NAND_CMD_SEQIN:
507 case NAND_CMD_STATUS:
508 return;
509
510 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200511 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200513 udelay(chip->chip_delay);
514 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200515 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200516 chip->cmd_ctrl(mtd,
517 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200518 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return;
520
David Woodhousee0c7d762006-05-13 18:07:53 +0100521 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000523 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * If we don't have access to the busy pin, we apply the given
525 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100526 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200527 if (!chip->dev_ready) {
528 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Apply this short delay always to ensure that we do wait tWB in
533 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100534 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000535
536 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/**
540 * nand_command_lp - [DEFAULT] Send command to NAND large page device
541 * @mtd: MTD device structure
542 * @command: the command to be sent
543 * @column: the column address for this command, -1 if none
544 * @page_addr: the page address for this command, -1 if none
545 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200546 * Send command to NAND device. This is the version for the new large page
547 * devices We dont have the separate regions as we have in the small page
548 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200550static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
551 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200553 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /* Emulate NAND_CMD_READOOB */
556 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200557 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 command = NAND_CMD_READ0;
559 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000560
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200561 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200562 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200563 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200566 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* Serially input address */
569 if (column != -1) {
570 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200571 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200573 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200574 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200575 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200578 chip->cmd_ctrl(mtd, page_addr, ctrl);
579 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200580 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200582 if (chip->chipsize > (128 << 20))
583 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200584 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200587 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000588
589 /*
590 * program and erase have their own busy handlers
David A. Marlin30f464b2005-01-17 18:35:25 +0000591 * status, sequential in, and deplete1 need no delay
592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 case NAND_CMD_CACHEDPROG:
596 case NAND_CMD_PAGEPROG:
597 case NAND_CMD_ERASE1:
598 case NAND_CMD_ERASE2:
599 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200600 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000602 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return;
604
David Woodhousee0c7d762006-05-13 18:07:53 +0100605 /*
606 * read error status commands require only a short delay
607 */
David A. Marlin30f464b2005-01-17 18:35:25 +0000608 case NAND_CMD_STATUS_ERROR:
609 case NAND_CMD_STATUS_ERROR0:
610 case NAND_CMD_STATUS_ERROR1:
611 case NAND_CMD_STATUS_ERROR2:
612 case NAND_CMD_STATUS_ERROR3:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200613 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000614 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200617 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200619 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200620 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
621 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
622 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
623 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200624 while (!(chip->read_byte(mtd) & NAND_STATUS_READY)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return;
626
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200627 case NAND_CMD_RNDOUT:
628 /* No ready / busy check necessary */
629 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
630 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
631 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
632 NAND_NCE | NAND_CTRL_CHANGE);
633 return;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200636 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
637 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
638 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
639 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000640
David Woodhousee0c7d762006-05-13 18:07:53 +0100641 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000643 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * If we don't have access to the busy pin, we apply the given
645 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100646 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200647 if (!chip->dev_ready) {
648 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Apply this short delay always to ensure that we do wait tWB in
654 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100655 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000656
657 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660/**
661 * nand_get_device - [GENERIC] Get chip for selected access
Randy Dunlap844d3b42006-06-28 21:48:27 -0700662 * @chip: the nand chip descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000664 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 *
666 * Get the device and lock it for exclusive access
667 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200668static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200669nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200671 spinlock_t *lock = &chip->controller->lock;
672 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100673 DECLARE_WAITQUEUE(wait, current);
David Woodhousee0c7d762006-05-13 18:07:53 +0100674 retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100675 spin_lock(lock);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* Hardware controller shared among independend devices */
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200678 /* Hardware controller shared among independend devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200679 if (!chip->controller->active)
680 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200681
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200682 if (chip->controller->active == chip && chip->state == FL_READY) {
683 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100684 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100685 return 0;
686 }
687 if (new_state == FL_PM_SUSPENDED) {
688 spin_unlock(lock);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200689 return (chip->state == FL_PM_SUSPENDED) ? 0 : -EAGAIN;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100690 }
691 set_current_state(TASK_UNINTERRUPTIBLE);
692 add_wait_queue(wq, &wait);
693 spin_unlock(lock);
694 schedule();
695 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto retry;
697}
698
699/**
700 * nand_wait - [DEFAULT] wait until the command is done
701 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700702 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 *
704 * Wait for command done. This applies to erase and program only
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000705 * Erase can take up to 400ms and program up to 20ms according to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * general NAND and SmartMedia specs
Randy Dunlap844d3b42006-06-28 21:48:27 -0700707 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200708static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710
David Woodhousee0c7d762006-05-13 18:07:53 +0100711 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200712 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100715 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100717 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Richard Purdie8fe833c2006-03-31 02:31:14 -0800719 led_trigger_event(nand_led_trigger, LED_FULL);
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* Apply this short delay always to ensure that we do wait tWB in
722 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100723 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200725 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
726 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000727 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200728 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000730 while (time_before(jiffies, timeo)) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200731 if (chip->dev_ready) {
732 if (chip->dev_ready(mtd))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000733 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 } else {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200735 if (chip->read_byte(mtd) & NAND_STATUS_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 break;
737 }
Thomas Gleixner20a6c212005-03-01 09:32:48 +0000738 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800740 led_trigger_event(nand_led_trigger, LED_OFF);
741
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200742 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return status;
744}
745
746/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200747 * nand_read_page_raw - [Intern] read raw page data without ecc
748 * @mtd: mtd info structure
749 * @chip: nand chip info structure
750 * @buf: buffer to store read data
751 */
752static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
753 uint8_t *buf)
754{
755 chip->read_buf(mtd, buf, mtd->writesize);
756 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
757 return 0;
758}
759
760/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +0300761 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200762 * @mtd: mtd info structure
763 * @chip: nand chip info structure
764 * @buf: buffer to store read data
David A. Marlin068e3c02005-01-24 03:07:46 +0000765 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200766static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
767 uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200769 int i, eccsize = chip->ecc.size;
770 int eccbytes = chip->ecc.bytes;
771 int eccsteps = chip->ecc.steps;
772 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100773 uint8_t *ecc_calc = chip->buffers->ecccalc;
774 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +0100775 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200776
Thomas Gleixner90424de2007-04-05 11:44:05 +0200777 chip->ecc.read_page_raw(mtd, chip, buf);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200778
779 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
780 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
781
782 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200783 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200784
785 eccsteps = chip->ecc.steps;
786 p = buf;
787
788 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
789 int stat;
790
791 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -0700792 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200793 mtd->ecc_stats.failed++;
794 else
795 mtd->ecc_stats.corrected += stat;
796 }
797 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +0100798}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/**
Alexey Korolev3d459552008-05-15 17:23:18 +0100801 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
802 * @mtd: mtd info structure
803 * @chip: nand chip info structure
804 * @dataofs offset of requested data within the page
805 * @readlen data length
806 * @buf: buffer to store read data
807 */
808static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip, uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
809{
810 int start_step, end_step, num_steps;
811 uint32_t *eccpos = chip->ecc.layout->eccpos;
812 uint8_t *p;
813 int data_col_addr, i, gaps = 0;
814 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
815 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
816
817 /* Column address wihin the page aligned to ECC size (256bytes). */
818 start_step = data_offs / chip->ecc.size;
819 end_step = (data_offs + readlen - 1) / chip->ecc.size;
820 num_steps = end_step - start_step + 1;
821
822 /* Data size aligned to ECC ecc.size*/
823 datafrag_len = num_steps * chip->ecc.size;
824 eccfrag_len = num_steps * chip->ecc.bytes;
825
826 data_col_addr = start_step * chip->ecc.size;
827 /* If we read not a page aligned data */
828 if (data_col_addr != 0)
829 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
830
831 p = bufpoi + data_col_addr;
832 chip->read_buf(mtd, p, datafrag_len);
833
834 /* Calculate ECC */
835 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
836 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
837
838 /* The performance is faster if to position offsets
839 according to ecc.pos. Let make sure here that
840 there are no gaps in ecc positions */
841 for (i = 0; i < eccfrag_len - 1; i++) {
842 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
843 eccpos[i + start_step * chip->ecc.bytes + 1]) {
844 gaps = 1;
845 break;
846 }
847 }
848 if (gaps) {
849 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
850 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
851 } else {
852 /* send the command to read the particular ecc bytes */
853 /* take care about buswidth alignment in read_buf */
854 aligned_pos = eccpos[start_step * chip->ecc.bytes] & ~(busw - 1);
855 aligned_len = eccfrag_len;
856 if (eccpos[start_step * chip->ecc.bytes] & (busw - 1))
857 aligned_len++;
858 if (eccpos[(start_step + num_steps) * chip->ecc.bytes] & (busw - 1))
859 aligned_len++;
860
861 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize + aligned_pos, -1);
862 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
863 }
864
865 for (i = 0; i < eccfrag_len; i++)
866 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + start_step * chip->ecc.bytes]];
867
868 p = bufpoi + data_col_addr;
869 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
870 int stat;
871
872 stat = chip->ecc.correct(mtd, p, &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
873 if (stat == -1)
874 mtd->ecc_stats.failed++;
875 else
876 mtd->ecc_stats.corrected += stat;
877 }
878 return 0;
879}
880
881/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +0300882 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200883 * @mtd: mtd info structure
884 * @chip: nand chip info structure
885 * @buf: buffer to store read data
886 *
887 * Not for syndrome calculating ecc controllers which need a special oob layout
888 */
889static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
890 uint8_t *buf)
891{
892 int i, eccsize = chip->ecc.size;
893 int eccbytes = chip->ecc.bytes;
894 int eccsteps = chip->ecc.steps;
895 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100896 uint8_t *ecc_calc = chip->buffers->ecccalc;
897 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +0100898 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200899
900 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
901 chip->ecc.hwctl(mtd, NAND_ECC_READ);
902 chip->read_buf(mtd, p, eccsize);
903 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
904 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200905 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200906
907 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200908 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200909
910 eccsteps = chip->ecc.steps;
911 p = buf;
912
913 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
914 int stat;
915
916 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -0700917 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200918 mtd->ecc_stats.failed++;
919 else
920 mtd->ecc_stats.corrected += stat;
921 }
922 return 0;
923}
924
925/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +0300926 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200927 * @mtd: mtd info structure
928 * @chip: nand chip info structure
929 * @buf: buffer to store read data
930 *
931 * The hw generator calculates the error syndrome automatically. Therefor
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200932 * we need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200933 */
934static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
935 uint8_t *buf)
936{
937 int i, eccsize = chip->ecc.size;
938 int eccbytes = chip->ecc.bytes;
939 int eccsteps = chip->ecc.steps;
940 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200941 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200942
943 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
944 int stat;
945
946 chip->ecc.hwctl(mtd, NAND_ECC_READ);
947 chip->read_buf(mtd, p, eccsize);
948
949 if (chip->ecc.prepad) {
950 chip->read_buf(mtd, oob, chip->ecc.prepad);
951 oob += chip->ecc.prepad;
952 }
953
954 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
955 chip->read_buf(mtd, oob, eccbytes);
956 stat = chip->ecc.correct(mtd, p, oob, NULL);
957
Matt Reimerc32b8dc2007-10-17 14:33:23 -0700958 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200959 mtd->ecc_stats.failed++;
960 else
961 mtd->ecc_stats.corrected += stat;
962
963 oob += eccbytes;
964
965 if (chip->ecc.postpad) {
966 chip->read_buf(mtd, oob, chip->ecc.postpad);
967 oob += chip->ecc.postpad;
968 }
969 }
970
971 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +0400972 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200973 if (i)
974 chip->read_buf(mtd, oob, i);
975
976 return 0;
977}
978
979/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200980 * nand_transfer_oob - [Internal] Transfer oob to client buffer
981 * @chip: nand chip structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700982 * @oob: oob destination address
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200983 * @ops: oob ops structure
Vitaly Wool70145682006-11-03 18:20:38 +0300984 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200985 */
986static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +0300987 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200988{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200989 switch(ops->mode) {
990
991 case MTD_OOB_PLACE:
992 case MTD_OOB_RAW:
993 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
994 return oob + len;
995
996 case MTD_OOB_AUTO: {
997 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200998 uint32_t boffs = 0, roffs = ops->ooboffs;
999 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001000
1001 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001002 /* Read request not from offset 0 ? */
1003 if (unlikely(roffs)) {
1004 if (roffs >= free->length) {
1005 roffs -= free->length;
1006 continue;
1007 }
1008 boffs = free->offset + roffs;
1009 bytes = min_t(size_t, len,
1010 (free->length - roffs));
1011 roffs = 0;
1012 } else {
1013 bytes = min_t(size_t, len, free->length);
1014 boffs = free->offset;
1015 }
1016 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001017 oob += bytes;
1018 }
1019 return oob;
1020 }
1021 default:
1022 BUG();
1023 }
1024 return NULL;
1025}
1026
1027/**
1028 * nand_do_read_ops - [Internal] Read data with ECC
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001029 *
David A. Marlin068e3c02005-01-24 03:07:46 +00001030 * @mtd: MTD device structure
1031 * @from: offset to read from
Randy Dunlap844d3b42006-06-28 21:48:27 -07001032 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001033 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001034 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001035 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001036static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1037 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001038{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001039 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001040 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001041 struct mtd_ecc_stats stats;
1042 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1043 int sndcmd = 1;
1044 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001045 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001046 uint32_t oobreadlen = ops->ooblen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001047 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001049 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001051 chipnr = (int)(from >> chip->chip_shift);
1052 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001054 realpage = (int)(from >> chip->page_shift);
1055 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001057 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001059 buf = ops->datbuf;
1060 oob = ops->oobbuf;
1061
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001062 while(1) {
1063 bytes = min(mtd->writesize - col, readlen);
1064 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001065
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001066 /* Is the current page in the buffer ? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001067 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001068 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001070 if (likely(sndcmd)) {
1071 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1072 sndcmd = 0;
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001075 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001076 if (unlikely(ops->mode == MTD_OOB_RAW))
1077 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi);
Alexey Korolev3d459552008-05-15 17:23:18 +01001078 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
1079 ret = chip->ecc.read_subpage(mtd, chip, col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001080 else
1081 ret = chip->ecc.read_page(mtd, chip, bufpoi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001082 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001083 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001084
1085 /* Transfer not aligned data */
1086 if (!aligned) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001087 if (!NAND_SUBPAGE_READ(chip) && !oob)
1088 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001089 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001091
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001092 buf += bytes;
1093
1094 if (unlikely(oob)) {
1095 /* Raw mode does data:oob:data:oob */
Vitaly Wool70145682006-11-03 18:20:38 +03001096 if (ops->mode != MTD_OOB_RAW) {
1097 int toread = min(oobreadlen,
1098 chip->ecc.layout->oobavail);
1099 if (toread) {
1100 oob = nand_transfer_oob(chip,
1101 oob, ops, toread);
1102 oobreadlen -= toread;
1103 }
1104 } else
1105 buf = nand_transfer_oob(chip,
1106 buf, ops, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001107 }
1108
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001109 if (!(chip->options & NAND_NO_READRDY)) {
1110 /*
1111 * Apply delay or wait for ready/busy pin. Do
1112 * this before the AUTOINCR check, so no
1113 * problems arise if a chip which does auto
1114 * increment is marked as NOAUTOINCR by the
1115 * board driver.
1116 */
1117 if (!chip->dev_ready)
1118 udelay(chip->chip_delay);
1119 else
1120 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001122 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001123 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001124 buf += bytes;
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001127 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001128
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001129 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001130 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 /* For subsequent reads align to page boundary. */
1133 col = 0;
1134 /* Increment page address */
1135 realpage++;
1136
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001137 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 /* Check, if we cross a chip boundary */
1139 if (!page) {
1140 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001141 chip->select_chip(mtd, -1);
1142 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001144
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001145 /* Check, if the chip supports auto page increment
1146 * or if we have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001147 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001148 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001149 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001152 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001153 if (oob)
1154 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001156 if (ret)
1157 return ret;
1158
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001159 if (mtd->ecc_stats.failed - stats.failed)
1160 return -EBADMSG;
1161
1162 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001163}
1164
1165/**
1166 * nand_read - [MTD Interface] MTD compability function for nand_do_read_ecc
1167 * @mtd: MTD device structure
1168 * @from: offset to read from
1169 * @len: number of bytes to read
1170 * @retlen: pointer to variable to store the number of read bytes
1171 * @buf: the databuffer to put data
1172 *
1173 * Get hold of the chip and call nand_do_read
1174 */
1175static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1176 size_t *retlen, uint8_t *buf)
1177{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001178 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001179 int ret;
1180
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001181 /* Do not allow reads past end of device */
1182 if ((from + len) > mtd->size)
1183 return -EINVAL;
1184 if (!len)
1185 return 0;
1186
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001187 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001188
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001189 chip->ops.len = len;
1190 chip->ops.datbuf = buf;
1191 chip->ops.oobbuf = NULL;
1192
1193 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001194
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001195 *retlen = chip->ops.retlen;
1196
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001197 nand_release_device(mtd);
1198
1199 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001203 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1204 * @mtd: mtd info structure
1205 * @chip: nand chip info structure
1206 * @page: page number to read
1207 * @sndcmd: flag whether to issue read command or not
1208 */
1209static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1210 int page, int sndcmd)
1211{
1212 if (sndcmd) {
1213 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1214 sndcmd = 0;
1215 }
1216 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1217 return sndcmd;
1218}
1219
1220/**
1221 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1222 * with syndromes
1223 * @mtd: mtd info structure
1224 * @chip: nand chip info structure
1225 * @page: page number to read
1226 * @sndcmd: flag whether to issue read command or not
1227 */
1228static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1229 int page, int sndcmd)
1230{
1231 uint8_t *buf = chip->oob_poi;
1232 int length = mtd->oobsize;
1233 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1234 int eccsize = chip->ecc.size;
1235 uint8_t *bufpoi = buf;
1236 int i, toread, sndrnd = 0, pos;
1237
1238 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1239 for (i = 0; i < chip->ecc.steps; i++) {
1240 if (sndrnd) {
1241 pos = eccsize + i * (eccsize + chunk);
1242 if (mtd->writesize > 512)
1243 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1244 else
1245 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1246 } else
1247 sndrnd = 1;
1248 toread = min_t(int, length, chunk);
1249 chip->read_buf(mtd, bufpoi, toread);
1250 bufpoi += toread;
1251 length -= toread;
1252 }
1253 if (length > 0)
1254 chip->read_buf(mtd, bufpoi, length);
1255
1256 return 1;
1257}
1258
1259/**
1260 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1261 * @mtd: mtd info structure
1262 * @chip: nand chip info structure
1263 * @page: page number to write
1264 */
1265static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1266 int page)
1267{
1268 int status = 0;
1269 const uint8_t *buf = chip->oob_poi;
1270 int length = mtd->oobsize;
1271
1272 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1273 chip->write_buf(mtd, buf, length);
1274 /* Send command to program the OOB data */
1275 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1276
1277 status = chip->waitfunc(mtd, chip);
1278
Savin Zlobec0d420f92006-06-21 11:51:20 +02001279 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001280}
1281
1282/**
1283 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1284 * with syndrome - only for large page flash !
1285 * @mtd: mtd info structure
1286 * @chip: nand chip info structure
1287 * @page: page number to write
1288 */
1289static int nand_write_oob_syndrome(struct mtd_info *mtd,
1290 struct nand_chip *chip, int page)
1291{
1292 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1293 int eccsize = chip->ecc.size, length = mtd->oobsize;
1294 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1295 const uint8_t *bufpoi = chip->oob_poi;
1296
1297 /*
1298 * data-ecc-data-ecc ... ecc-oob
1299 * or
1300 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1301 */
1302 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1303 pos = steps * (eccsize + chunk);
1304 steps = 0;
1305 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001306 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001307
1308 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1309 for (i = 0; i < steps; i++) {
1310 if (sndcmd) {
1311 if (mtd->writesize <= 512) {
1312 uint32_t fill = 0xFFFFFFFF;
1313
1314 len = eccsize;
1315 while (len > 0) {
1316 int num = min_t(int, len, 4);
1317 chip->write_buf(mtd, (uint8_t *)&fill,
1318 num);
1319 len -= num;
1320 }
1321 } else {
1322 pos = eccsize + i * (eccsize + chunk);
1323 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1324 }
1325 } else
1326 sndcmd = 1;
1327 len = min_t(int, length, chunk);
1328 chip->write_buf(mtd, bufpoi, len);
1329 bufpoi += len;
1330 length -= len;
1331 }
1332 if (length > 0)
1333 chip->write_buf(mtd, bufpoi, length);
1334
1335 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1336 status = chip->waitfunc(mtd, chip);
1337
1338 return status & NAND_STATUS_FAIL ? -EIO : 0;
1339}
1340
1341/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001342 * nand_do_read_oob - [Intern] NAND read out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * @mtd: MTD device structure
1344 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001345 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 *
1347 * NAND read out-of-band data from the spare area
1348 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001349static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1350 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001352 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001353 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001354 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001355 int readlen = ops->ooblen;
1356 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001357 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Andrew Morton7e9a0bb2006-05-30 09:06:41 +01001359 DEBUG(MTD_DEBUG_LEVEL3, "nand_read_oob: from = 0x%08Lx, len = %i\n",
1360 (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Adrian Hunter03736152007-01-31 17:58:29 +02001362 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001363 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001364 else
1365 len = mtd->oobsize;
1366
1367 if (unlikely(ops->ooboffs >= len)) {
1368 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
1369 "Attempt to start read outside oob\n");
1370 return -EINVAL;
1371 }
1372
1373 /* Do not allow reads past end of device */
1374 if (unlikely(from >= mtd->size ||
1375 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1376 (from >> chip->page_shift)) * len)) {
1377 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
1378 "Attempt read beyond end of device\n");
1379 return -EINVAL;
1380 }
Vitaly Wool70145682006-11-03 18:20:38 +03001381
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001382 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001383 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001385 /* Shift to get page */
1386 realpage = (int)(from >> chip->page_shift);
1387 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001389 while(1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001390 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001391
1392 len = min(len, readlen);
1393 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001394
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001395 if (!(chip->options & NAND_NO_READRDY)) {
1396 /*
1397 * Apply delay or wait for ready/busy pin. Do this
1398 * before the AUTOINCR check, so no problems arise if a
1399 * chip which does auto increment is marked as
1400 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001401 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001402 if (!chip->dev_ready)
1403 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001404 else
1405 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001407
Vitaly Wool70145682006-11-03 18:20:38 +03001408 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001409 if (!readlen)
1410 break;
1411
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001412 /* Increment page address */
1413 realpage++;
1414
1415 page = realpage & chip->pagemask;
1416 /* Check, if we cross a chip boundary */
1417 if (!page) {
1418 chipnr++;
1419 chip->select_chip(mtd, -1);
1420 chip->select_chip(mtd, chipnr);
1421 }
1422
1423 /* Check, if the chip supports auto page increment
1424 * or if we have hit a block boundary.
1425 */
1426 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1427 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429
Vitaly Wool70145682006-11-03 18:20:38 +03001430 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 return 0;
1432}
1433
1434/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001435 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001438 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440 * NAND read data and/or out-of-band data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001442static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1443 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001445 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001446 int ret = -ENOTSUPP;
1447
1448 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001451 if (ops->datbuf && (from + ops->len) > mtd->size) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001452 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001453 "Attempt read beyond end of device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return -EINVAL;
1455 }
1456
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001457 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001459 switch(ops->mode) {
1460 case MTD_OOB_PLACE:
1461 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001462 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001463 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001464
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 default:
1466 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001469 if (!ops->datbuf)
1470 ret = nand_do_read_oob(mtd, from, ops);
1471 else
1472 ret = nand_do_read_ops(mtd, from, ops);
1473
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001474 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001476 return ret;
1477}
1478
1479
1480/**
1481 * nand_write_page_raw - [Intern] raw page write function
1482 * @mtd: mtd info structure
1483 * @chip: nand chip info structure
1484 * @buf: data buffer
1485 */
1486static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1487 const uint8_t *buf)
1488{
1489 chip->write_buf(mtd, buf, mtd->writesize);
1490 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001493/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001494 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001495 * @mtd: mtd info structure
1496 * @chip: nand chip info structure
1497 * @buf: data buffer
1498 */
1499static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1500 const uint8_t *buf)
1501{
1502 int i, eccsize = chip->ecc.size;
1503 int eccbytes = chip->ecc.bytes;
1504 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001505 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001506 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001507 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001508
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001509 /* Software ecc calculation */
1510 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1511 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001512
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001513 for (i = 0; i < chip->ecc.total; i++)
1514 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001515
Thomas Gleixner90424de2007-04-05 11:44:05 +02001516 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001517}
1518
1519/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001520 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001521 * @mtd: mtd info structure
1522 * @chip: nand chip info structure
1523 * @buf: data buffer
1524 */
1525static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1526 const uint8_t *buf)
1527{
1528 int i, eccsize = chip->ecc.size;
1529 int eccbytes = chip->ecc.bytes;
1530 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001531 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001532 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001533 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001534
1535 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1536 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001537 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001538 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1539 }
1540
1541 for (i = 0; i < chip->ecc.total; i++)
1542 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1543
1544 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1545}
1546
1547/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001548 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001549 * @mtd: mtd info structure
1550 * @chip: nand chip info structure
1551 * @buf: data buffer
1552 *
1553 * The hw generator calculates the error syndrome automatically. Therefor
1554 * we need a special oob layout and handling.
1555 */
1556static void nand_write_page_syndrome(struct mtd_info *mtd,
1557 struct nand_chip *chip, const uint8_t *buf)
1558{
1559 int i, eccsize = chip->ecc.size;
1560 int eccbytes = chip->ecc.bytes;
1561 int eccsteps = chip->ecc.steps;
1562 const uint8_t *p = buf;
1563 uint8_t *oob = chip->oob_poi;
1564
1565 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1566
1567 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1568 chip->write_buf(mtd, p, eccsize);
1569
1570 if (chip->ecc.prepad) {
1571 chip->write_buf(mtd, oob, chip->ecc.prepad);
1572 oob += chip->ecc.prepad;
1573 }
1574
1575 chip->ecc.calculate(mtd, p, oob);
1576 chip->write_buf(mtd, oob, eccbytes);
1577 oob += eccbytes;
1578
1579 if (chip->ecc.postpad) {
1580 chip->write_buf(mtd, oob, chip->ecc.postpad);
1581 oob += chip->ecc.postpad;
1582 }
1583 }
1584
1585 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001586 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001587 if (i)
1588 chip->write_buf(mtd, oob, i);
1589}
1590
1591/**
David Woodhouse956e9442006-09-25 17:12:39 +01001592 * nand_write_page - [REPLACEABLE] write one page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001593 * @mtd: MTD device structure
1594 * @chip: NAND chip descriptor
1595 * @buf: the data to write
1596 * @page: page number to write
1597 * @cached: cached programming
Jesper Juhlefbfe96c2006-10-27 23:24:47 +02001598 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001599 */
1600static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01001601 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001602{
1603 int status;
1604
1605 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
1606
David Woodhouse956e9442006-09-25 17:12:39 +01001607 if (unlikely(raw))
1608 chip->ecc.write_page_raw(mtd, chip, buf);
1609 else
1610 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001611
1612 /*
1613 * Cached progamming disabled for now, Not sure if its worth the
1614 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
1615 */
1616 cached = 0;
1617
1618 if (!cached || !(chip->options & NAND_CACHEPRG)) {
1619
1620 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001621 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001622 /*
1623 * See if operation failed and additional status checks are
1624 * available
1625 */
1626 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
1627 status = chip->errstat(mtd, chip, FL_WRITING, status,
1628 page);
1629
1630 if (status & NAND_STATUS_FAIL)
1631 return -EIO;
1632 } else {
1633 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001634 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001635 }
1636
1637#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
1638 /* Send command to read back the data */
1639 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1640
1641 if (chip->verify_buf(mtd, buf, mtd->writesize))
1642 return -EIO;
1643#endif
1644 return 0;
1645}
1646
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001647/**
1648 * nand_fill_oob - [Internal] Transfer client buffer to oob
1649 * @chip: nand chip structure
1650 * @oob: oob data buffer
1651 * @ops: oob ops structure
1652 */
1653static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob,
1654 struct mtd_oob_ops *ops)
1655{
1656 size_t len = ops->ooblen;
1657
1658 switch(ops->mode) {
1659
1660 case MTD_OOB_PLACE:
1661 case MTD_OOB_RAW:
1662 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
1663 return oob + len;
1664
1665 case MTD_OOB_AUTO: {
1666 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001667 uint32_t boffs = 0, woffs = ops->ooboffs;
1668 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001669
1670 for(; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001671 /* Write request not from offset 0 ? */
1672 if (unlikely(woffs)) {
1673 if (woffs >= free->length) {
1674 woffs -= free->length;
1675 continue;
1676 }
1677 boffs = free->offset + woffs;
1678 bytes = min_t(size_t, len,
1679 (free->length - woffs));
1680 woffs = 0;
1681 } else {
1682 bytes = min_t(size_t, len, free->length);
1683 boffs = free->offset;
1684 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001685 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001686 oob += bytes;
1687 }
1688 return oob;
1689 }
1690 default:
1691 BUG();
1692 }
1693 return NULL;
1694}
1695
Thomas Gleixner29072b92006-09-28 15:38:36 +02001696#define NOTALIGNED(x) (x & (chip->subpagesize - 1)) != 0
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001697
1698/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001699 * nand_do_write_ops - [Internal] NAND write with ECC
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001700 * @mtd: MTD device structure
1701 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001702 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001703 *
1704 * NAND write with ECC
1705 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001706static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
1707 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001708{
Thomas Gleixner29072b92006-09-28 15:38:36 +02001709 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001710 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001711 uint32_t writelen = ops->len;
1712 uint8_t *oob = ops->oobbuf;
1713 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02001714 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001715
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001716 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02001717 if (!writelen)
1718 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001719
1720 /* reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001721 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001722 printk(KERN_NOTICE "nand_write: "
1723 "Attempt to write not page aligned data\n");
1724 return -EINVAL;
1725 }
1726
Thomas Gleixner29072b92006-09-28 15:38:36 +02001727 column = to & (mtd->writesize - 1);
1728 subpage = column || (writelen & (mtd->writesize - 1));
1729
1730 if (subpage && oob)
1731 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001732
Thomas Gleixner6a930962006-06-28 00:11:45 +02001733 chipnr = (int)(to >> chip->chip_shift);
1734 chip->select_chip(mtd, chipnr);
1735
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001736 /* Check, if it is write protected */
1737 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001738 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001739
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001740 realpage = (int)(to >> chip->page_shift);
1741 page = realpage & chip->pagemask;
1742 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1743
1744 /* Invalidate the page cache, when we write to the cached page */
1745 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001746 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001747 chip->pagebuf = -1;
1748
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01001749 /* If we're not given explicit OOB data, let it be 0xFF */
1750 if (likely(!oob))
1751 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001752
1753 while(1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02001754 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001755 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02001756 uint8_t *wbuf = buf;
1757
1758 /* Partial page write ? */
1759 if (unlikely(column || writelen < (mtd->writesize - 1))) {
1760 cached = 0;
1761 bytes = min_t(int, bytes - column, (int) writelen);
1762 chip->pagebuf = -1;
1763 memset(chip->buffers->databuf, 0xff, mtd->writesize);
1764 memcpy(&chip->buffers->databuf[column], buf, bytes);
1765 wbuf = chip->buffers->databuf;
1766 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001767
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001768 if (unlikely(oob))
1769 oob = nand_fill_oob(chip, oob, ops);
1770
Thomas Gleixner29072b92006-09-28 15:38:36 +02001771 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01001772 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001773 if (ret)
1774 break;
1775
1776 writelen -= bytes;
1777 if (!writelen)
1778 break;
1779
Thomas Gleixner29072b92006-09-28 15:38:36 +02001780 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001781 buf += bytes;
1782 realpage++;
1783
1784 page = realpage & chip->pagemask;
1785 /* Check, if we cross a chip boundary */
1786 if (!page) {
1787 chipnr++;
1788 chip->select_chip(mtd, -1);
1789 chip->select_chip(mtd, chipnr);
1790 }
1791 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001792
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001793 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03001794 if (unlikely(oob))
1795 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001796 return ret;
1797}
1798
1799/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001800 * nand_write - [MTD Interface] NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 * @mtd: MTD device structure
1802 * @to: offset to write to
1803 * @len: number of bytes to write
1804 * @retlen: pointer to variable to store the number of written bytes
1805 * @buf: the data to write
1806 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001807 * NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001809static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001810 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001812 struct nand_chip *chip = mtd->priv;
1813 int ret;
1814
1815 /* Do not allow reads past end of device */
1816 if ((to + len) > mtd->size)
1817 return -EINVAL;
1818 if (!len)
1819 return 0;
1820
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001821 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001822
1823 chip->ops.len = len;
1824 chip->ops.datbuf = (uint8_t *)buf;
1825 chip->ops.oobbuf = NULL;
1826
1827 ret = nand_do_write_ops(mtd, to, &chip->ops);
1828
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001829 *retlen = chip->ops.retlen;
1830
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001831 nand_release_device(mtd);
1832
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001833 return ret;
1834}
1835
1836/**
1837 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
1838 * @mtd: MTD device structure
1839 * @to: offset to write to
1840 * @ops: oob operation description structure
1841 *
1842 * NAND write out-of-band
1843 */
1844static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
1845 struct mtd_oob_ops *ops)
1846{
Adrian Hunter03736152007-01-31 17:58:29 +02001847 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001848 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001850 DEBUG(MTD_DEBUG_LEVEL3, "nand_write_oob: to = 0x%08x, len = %i\n",
Vitaly Wool70145682006-11-03 18:20:38 +03001851 (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Adrian Hunter03736152007-01-31 17:58:29 +02001853 if (ops->mode == MTD_OOB_AUTO)
1854 len = chip->ecc.layout->oobavail;
1855 else
1856 len = mtd->oobsize;
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02001859 if ((ops->ooboffs + ops->ooblen) > len) {
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001860 DEBUG(MTD_DEBUG_LEVEL0, "nand_write_oob: "
1861 "Attempt to write past end of page\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return -EINVAL;
1863 }
1864
Adrian Hunter03736152007-01-31 17:58:29 +02001865 if (unlikely(ops->ooboffs >= len)) {
1866 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
1867 "Attempt to start write outside oob\n");
1868 return -EINVAL;
1869 }
1870
1871 /* Do not allow reads past end of device */
1872 if (unlikely(to >= mtd->size ||
1873 ops->ooboffs + ops->ooblen >
1874 ((mtd->size >> chip->page_shift) -
1875 (to >> chip->page_shift)) * len)) {
1876 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
1877 "Attempt write beyond end of device\n");
1878 return -EINVAL;
1879 }
1880
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001881 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001882 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001884 /* Shift to get page */
1885 page = (int)(to >> chip->page_shift);
1886
1887 /*
1888 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
1889 * of my DiskOnChip 2000 test units) will clear the whole data page too
1890 * if we don't do this. I have no clue why, but I seem to have 'fixed'
1891 * it in the doc2000 driver in August 1999. dwmw2.
1892 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001893 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 /* Check, if it is write protected */
1896 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001897 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001900 if (page == chip->pagebuf)
1901 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001903 memset(chip->oob_poi, 0xff, mtd->oobsize);
1904 nand_fill_oob(chip, ops->oobbuf, ops);
1905 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
1906 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001907
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001908 if (status)
1909 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Vitaly Wool70145682006-11-03 18:20:38 +03001911 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001913 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001914}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001916/**
1917 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
1918 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07001919 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001920 * @ops: oob operation description structure
1921 */
1922static int nand_write_oob(struct mtd_info *mtd, loff_t to,
1923 struct mtd_oob_ops *ops)
1924{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001925 struct nand_chip *chip = mtd->priv;
1926 int ret = -ENOTSUPP;
1927
1928 ops->retlen = 0;
1929
1930 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001931 if (ops->datbuf && (to + ops->len) > mtd->size) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001932 DEBUG(MTD_DEBUG_LEVEL0, "nand_read_oob: "
1933 "Attempt read beyond end of device\n");
1934 return -EINVAL;
1935 }
1936
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001937 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001938
1939 switch(ops->mode) {
1940 case MTD_OOB_PLACE:
1941 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001942 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001943 break;
1944
1945 default:
1946 goto out;
1947 }
1948
1949 if (!ops->datbuf)
1950 ret = nand_do_write_oob(mtd, to, ops);
1951 else
1952 ret = nand_do_write_ops(mtd, to, ops);
1953
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001954 out:
1955 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return ret;
1957}
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 * single_erease_cmd - [GENERIC] NAND standard block erase command function
1961 * @mtd: MTD device structure
1962 * @page: the page address of the block which will be erased
1963 *
1964 * Standard erase command for NAND chips
1965 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001966static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001968 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001970 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
1971 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
1974/**
1975 * multi_erease_cmd - [GENERIC] AND specific block erase command function
1976 * @mtd: MTD device structure
1977 * @page: the page address of the block which will be erased
1978 *
1979 * AND multi block erase command function
1980 * Erase 4 consecutive blocks
1981 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001982static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001984 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001986 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
1987 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
1988 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
1989 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
1990 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993/**
1994 * nand_erase - [MTD Interface] erase block(s)
1995 * @mtd: MTD device structure
1996 * @instr: erase instruction
1997 *
1998 * Erase one ore more blocks
1999 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002000static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
David Woodhousee0c7d762006-05-13 18:07:53 +01002002 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002004
David A. Marlin30f464b2005-01-17 18:35:25 +00002005#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002007 * nand_erase_nand - [Internal] erase block(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * @mtd: MTD device structure
2009 * @instr: erase instruction
2010 * @allowbbt: allow erasing the bbt area
2011 *
2012 * Erase one ore more blocks
2013 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002014int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2015 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 int page, len, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002018 struct nand_chip *chip = mtd->priv;
2019 int rewrite_bbt[NAND_MAX_CHIPS]={0};
2020 unsigned int bbt_masked_page = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002022 DEBUG(MTD_DEBUG_LEVEL3, "nand_erase: start = 0x%08x, len = %i\n",
2023 (unsigned int)instr->addr, (unsigned int)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 /* Start address must align on block boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002026 if (instr->addr & ((1 << chip->phys_erase_shift) - 1)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01002027 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase: Unaligned address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return -EINVAL;
2029 }
2030
2031 /* Length must align on block boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002032 if (instr->len & ((1 << chip->phys_erase_shift) - 1)) {
2033 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase: "
2034 "Length not block aligned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return -EINVAL;
2036 }
2037
2038 /* Do not allow erase past end of device */
2039 if ((instr->len + instr->addr) > mtd->size) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002040 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase: "
2041 "Erase past end of device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return -EINVAL;
2043 }
2044
2045 instr->fail_addr = 0xffffffff;
2046
2047 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002048 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002051 page = (int)(instr->addr >> chip->page_shift);
2052 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002055 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002058 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 /* Check, if it is write protected */
2061 if (nand_check_wp(mtd)) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002062 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase: "
2063 "Device is write protected!!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 instr->state = MTD_ERASE_FAILED;
2065 goto erase_exit;
2066 }
2067
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002068 /*
2069 * If BBT requires refresh, set the BBT page mask to see if the BBT
2070 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2071 * can not be matched. This is also done when the bbt is actually
2072 * erased to avoid recusrsive updates
2073 */
2074 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2075 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /* Loop through the pages */
2078 len = instr->len;
2079
2080 instr->state = MTD_ERASING;
2081
2082 while (len) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002083 /*
2084 * heck if we have a bad block, we do not erase bad blocks !
2085 */
2086 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2087 chip->page_shift, 0, allowbbt)) {
2088 printk(KERN_WARNING "nand_erase: attempt to erase a "
2089 "bad block at page 0x%08x\n", page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 instr->state = MTD_ERASE_FAILED;
2091 goto erase_exit;
2092 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002093
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002094 /*
2095 * Invalidate the page cache, if we erase the block which
2096 * contains the current cached page
2097 */
2098 if (page <= chip->pagebuf && chip->pagebuf <
2099 (page + pages_per_block))
2100 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002102 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002103
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002104 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002106 /*
2107 * See if operation failed and additional status checks are
2108 * available
2109 */
2110 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2111 status = chip->errstat(mtd, chip, FL_ERASING,
2112 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002115 if (status & NAND_STATUS_FAIL) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002116 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase: "
2117 "Failed erase, page 0x%08x\n", page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 instr->state = MTD_ERASE_FAILED;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002119 instr->fail_addr = (page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 goto erase_exit;
2121 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002122
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002123 /*
2124 * If BBT requires refresh, set the BBT rewrite flag to the
2125 * page being erased
2126 */
2127 if (bbt_masked_page != 0xffffffff &&
2128 (page & BBT_PAGE_MASK) == bbt_masked_page)
2129 rewrite_bbt[chipnr] = (page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002132 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 page += pages_per_block;
2134
2135 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002136 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002138 chip->select_chip(mtd, -1);
2139 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002140
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002141 /*
2142 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2143 * page mask to see if this BBT should be rewritten
2144 */
2145 if (bbt_masked_page != 0xffffffff &&
2146 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2147 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2148 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150 }
2151 instr->state = MTD_ERASE_DONE;
2152
David Woodhousee0c7d762006-05-13 18:07:53 +01002153 erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 /* Deselect and wake up anyone waiting on the device */
2158 nand_release_device(mtd);
2159
David Woodhouse49defc02007-10-06 15:01:59 -04002160 /* Do call back function */
2161 if (!ret)
2162 mtd_erase_callback(instr);
2163
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002164 /*
2165 * If BBT requires refresh and erase was successful, rewrite any
2166 * selected bad block tables
2167 */
2168 if (bbt_masked_page == 0xffffffff || ret)
2169 return ret;
2170
2171 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2172 if (!rewrite_bbt[chipnr])
2173 continue;
2174 /* update the BBT for chip */
2175 DEBUG(MTD_DEBUG_LEVEL0, "nand_erase_nand: nand_update_bbt "
2176 "(%d:0x%0x 0x%0x)\n", chipnr, rewrite_bbt[chipnr],
2177 chip->bbt_td->pages[chipnr]);
2178 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002179 }
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 /* Return more or less happy */
2182 return ret;
2183}
2184
2185/**
2186 * nand_sync - [MTD Interface] sync
2187 * @mtd: MTD device structure
2188 *
2189 * Sync is actually a wait for chip ready function
2190 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002191static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002193 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
David Woodhousee0c7d762006-05-13 18:07:53 +01002195 DEBUG(MTD_DEBUG_LEVEL3, "nand_sync: called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002198 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002200 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002204 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002206 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002208static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002211 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002213
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002214 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
2217/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002218 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 * @mtd: MTD device structure
2220 * @ofs: offset relative to mtd start
2221 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002222static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002224 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 int ret;
2226
David Woodhousee0c7d762006-05-13 18:07:53 +01002227 if ((ret = nand_block_isbad(mtd, ofs))) {
2228 /* If it was bad already, return success and do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (ret > 0)
2230 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002231 return ret;
2232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002234 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235}
2236
2237/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002238 * nand_suspend - [MTD Interface] Suspend the NAND flash
2239 * @mtd: MTD device structure
2240 */
2241static int nand_suspend(struct mtd_info *mtd)
2242{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002243 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002244
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002245 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002246}
2247
2248/**
2249 * nand_resume - [MTD Interface] Resume the NAND flash
2250 * @mtd: MTD device structure
2251 */
2252static void nand_resume(struct mtd_info *mtd)
2253{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002254 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002255
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002256 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002257 nand_release_device(mtd);
2258 else
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02002259 printk(KERN_ERR "nand_resume() called for a chip which is not "
2260 "in suspended state\n");
Vitaly Wool962034f2005-09-15 14:58:53 +01002261}
2262
Thomas Gleixnera36ed292006-05-23 11:37:03 +02002263/*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002264 * Set default functions
2265 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002266static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002267{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002269 if (!chip->chip_delay)
2270 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002273 if (chip->cmdfunc == NULL)
2274 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002277 if (chip->waitfunc == NULL)
2278 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002280 if (!chip->select_chip)
2281 chip->select_chip = nand_select_chip;
2282 if (!chip->read_byte)
2283 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2284 if (!chip->read_word)
2285 chip->read_word = nand_read_word;
2286 if (!chip->block_bad)
2287 chip->block_bad = nand_block_bad;
2288 if (!chip->block_markbad)
2289 chip->block_markbad = nand_default_block_markbad;
2290 if (!chip->write_buf)
2291 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2292 if (!chip->read_buf)
2293 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2294 if (!chip->verify_buf)
2295 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2296 if (!chip->scan_bbt)
2297 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002298
2299 if (!chip->controller) {
2300 chip->controller = &chip->hwcontrol;
2301 spin_lock_init(&chip->controller->lock);
2302 init_waitqueue_head(&chip->controller->wq);
2303 }
2304
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002305}
2306
2307/*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002308 * Get the flash and manufacturer id and lookup if the type is supported
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002309 */
2310static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002311 struct nand_chip *chip,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002312 int busw, int *maf_id)
2313{
2314 struct nand_flash_dev *type = NULL;
2315 int i, dev_id, maf_idx;
Ben Dooksed8165c2008-04-14 14:58:58 +01002316 int tmp_id, tmp_manf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002319 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002322 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002325 *maf_id = chip->read_byte(mtd);
2326 dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Ben Dooksed8165c2008-04-14 14:58:58 +01002328 /* Try again to make sure, as some systems the bus-hold or other
2329 * interface concerns can cause random data which looks like a
2330 * possibly credible NAND flash to appear. If the two results do
2331 * not match, ignore the device completely.
2332 */
2333
2334 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2335
2336 /* Read manufacturer and device IDs */
2337
2338 tmp_manf = chip->read_byte(mtd);
2339 tmp_id = chip->read_byte(mtd);
2340
2341 if (tmp_manf != *maf_id || tmp_id != dev_id) {
2342 printk(KERN_INFO "%s: second ID read did not match "
2343 "%02x,%02x against %02x,%02x\n", __func__,
2344 *maf_id, dev_id, tmp_manf, tmp_id);
2345 return ERR_PTR(-ENODEV);
2346 }
2347
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002348 /* Lookup the flash id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 for (i = 0; nand_flash_ids[i].name != NULL; i++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002350 if (dev_id == nand_flash_ids[i].id) {
2351 type = &nand_flash_ids[i];
2352 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
2355
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002356 if (!type)
2357 return ERR_PTR(-ENODEV);
2358
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002359 if (!mtd->name)
2360 mtd->name = type->name;
2361
2362 chip->chipsize = type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002363
2364 /* Newer devices have all the information in additional id bytes */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002365 if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002366 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002367 /* The 3rd id byte holds MLC / multichip data */
2368 chip->cellinfo = chip->read_byte(mtd);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002369 /* The 4th id byte is the important one */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002370 extid = chip->read_byte(mtd);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002371 /* Calc pagesize */
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002372 mtd->writesize = 1024 << (extid & 0x3);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002373 extid >>= 2;
2374 /* Calc oobsize */
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002375 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002376 extid >>= 2;
2377 /* Calc blocksize. Blocksize is multiples of 64KiB */
2378 mtd->erasesize = (64 * 1024) << (extid & 0x03);
2379 extid >>= 2;
2380 /* Get buswidth information */
2381 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
2382
2383 } else {
2384 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002385 * Old devices have chip data hardcoded in the device id table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002386 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002387 mtd->erasesize = type->erasesize;
2388 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02002389 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002390 busw = type->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002391 }
2392
2393 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01002394 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002395 if (nand_manuf_ids[maf_idx].id == *maf_id)
2396 break;
2397 }
2398
2399 /*
2400 * Check, if buswidth is correct. Hardware drivers should set
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002401 * chip correct !
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002402 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002403 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002404 printk(KERN_INFO "NAND device: Manufacturer ID:"
2405 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
2406 dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
2407 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002408 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002409 busw ? 16 : 8);
2410 return ERR_PTR(-EINVAL);
2411 }
2412
2413 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002414 chip->page_shift = ffs(mtd->writesize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002415 /* Convert chipsize to number of pages per chip -1. */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002416 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002417
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002418 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002419 ffs(mtd->erasesize) - 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002420 chip->chip_shift = ffs(chip->chipsize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002421
2422 /* Set the bad block position */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002423 chip->badblockpos = mtd->writesize > 512 ?
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002424 NAND_LARGE_BADBLOCK_POS : NAND_SMALL_BADBLOCK_POS;
2425
2426 /* Get chip options, preserve non chip based options */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002427 chip->options &= ~NAND_CHIPOPTIONS_MSK;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002428 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002429
2430 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002431 * Set chip as a default. Board drivers can override it, if necessary
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002432 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002433 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002434
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002435 /* Check if chip is a not a samsung device. Do not clear the
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002436 * options for chips which are not having an extended id.
2437 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002438 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002439 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002440
2441 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002442 if (chip->options & NAND_4PAGE_ARRAY)
2443 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002444 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002445 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002446
2447 /* Do not replace user supplied command function ! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002448 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
2449 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002450
2451 printk(KERN_INFO "NAND device: Manufacturer ID:"
2452 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, dev_id,
2453 nand_manuf_ids[maf_idx].name, type->name);
2454
2455 return type;
2456}
2457
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002458/**
David Woodhouse3b85c322006-09-25 17:06:53 +01002459 * nand_scan_ident - [NAND Interface] Scan for the NAND device
2460 * @mtd: MTD device structure
2461 * @maxchips: Number of chips to scan for
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002462 *
David Woodhouse3b85c322006-09-25 17:06:53 +01002463 * This is the first phase of the normal nand_scan() function. It
2464 * reads the flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002465 *
David Woodhouse3b85c322006-09-25 17:06:53 +01002466 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002467 */
David Woodhouse3b85c322006-09-25 17:06:53 +01002468int nand_scan_ident(struct mtd_info *mtd, int maxchips)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002469{
2470 int i, busw, nand_maf_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002471 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002472 struct nand_flash_dev *type;
2473
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002474 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002475 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002476 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002477 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002478
2479 /* Read the flash type */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002480 type = nand_get_flash_type(mtd, chip, busw, &nand_maf_id);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002481
2482 if (IS_ERR(type)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01002483 printk(KERN_WARNING "No NAND device found!!!\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002484 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002485 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002488 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01002489 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002490 chip->select_chip(mtd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002492 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002494 if (nand_maf_id != chip->read_byte(mtd) ||
2495 type->id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 break;
2497 }
2498 if (i > 1)
2499 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002502 chip->numchips = i;
2503 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
David Woodhouse3b85c322006-09-25 17:06:53 +01002505 return 0;
2506}
2507
2508
2509/**
2510 * nand_scan_tail - [NAND Interface] Scan for the NAND device
2511 * @mtd: MTD device structure
2512 * @maxchips: Number of chips to scan for
2513 *
2514 * This is the second phase of the normal nand_scan() function. It
2515 * fills out all the uninitialized function pointers with the defaults
2516 * and scans for a bad block table if appropriate.
2517 */
2518int nand_scan_tail(struct mtd_info *mtd)
2519{
2520 int i;
2521 struct nand_chip *chip = mtd->priv;
2522
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002523 if (!(chip->options & NAND_OWN_BUFFERS))
2524 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
2525 if (!chip->buffers)
2526 return -ENOMEM;
2527
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01002528 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01002529 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002530
2531 /*
2532 * If no default placement scheme is given, select an appropriate one
2533 */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002534 if (!chip->ecc.layout) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002535 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002537 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 break;
2539 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002540 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 break;
2542 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002543 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 break;
2545 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002546 printk(KERN_WARNING "No oob scheme defined for "
2547 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 BUG();
2549 }
2550 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002551
David Woodhouse956e9442006-09-25 17:12:39 +01002552 if (!chip->write_page)
2553 chip->write_page = nand_write_page;
2554
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002555 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002556 * check ECC mode, default to software if 3byte/512byte hardware ECC is
2557 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01002558 */
David Woodhouse956e9442006-09-25 17:12:39 +01002559 if (!chip->ecc.read_page_raw)
2560 chip->ecc.read_page_raw = nand_read_page_raw;
2561 if (!chip->ecc.write_page_raw)
2562 chip->ecc.write_page_raw = nand_write_page_raw;
2563
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002564 switch (chip->ecc.mode) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002565 case NAND_ECC_HW:
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002566 /* Use standard hwecc read page function ? */
2567 if (!chip->ecc.read_page)
2568 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002569 if (!chip->ecc.write_page)
2570 chip->ecc.write_page = nand_write_page_hwecc;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002571 if (!chip->ecc.read_oob)
2572 chip->ecc.read_oob = nand_read_oob_std;
2573 if (!chip->ecc.write_oob)
2574 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002575
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002576 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06002577 if ((!chip->ecc.calculate || !chip->ecc.correct ||
2578 !chip->ecc.hwctl) &&
2579 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06002580 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06002581 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06002582 chip->ecc.write_page == nand_write_page_hwecc)) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002583 printk(KERN_WARNING "No ECC functions supplied, "
2584 "Hardware ECC not possible\n");
2585 BUG();
2586 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002587 /* Use standard syndrome read/write page function ? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002588 if (!chip->ecc.read_page)
2589 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002590 if (!chip->ecc.write_page)
2591 chip->ecc.write_page = nand_write_page_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002592 if (!chip->ecc.read_oob)
2593 chip->ecc.read_oob = nand_read_oob_syndrome;
2594 if (!chip->ecc.write_oob)
2595 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002596
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002597 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002598 break;
2599 printk(KERN_WARNING "%d byte HW ECC not possible on "
2600 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002601 chip->ecc.size, mtd->writesize);
2602 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002604 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002605 chip->ecc.calculate = nand_calculate_ecc;
2606 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002607 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01002608 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002609 chip->ecc.write_page = nand_write_page_swecc;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002610 chip->ecc.read_oob = nand_read_oob_std;
2611 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002612 chip->ecc.size = 256;
2613 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002615
2616 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002617 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
2618 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002619 chip->ecc.read_page = nand_read_page_raw;
2620 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002621 chip->ecc.read_oob = nand_read_oob_std;
2622 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002623 chip->ecc.size = mtd->writesize;
2624 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 break;
David Woodhouse956e9442006-09-25 17:12:39 +01002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002628 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002629 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002630 BUG();
2631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002633 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002634 * The number of bytes available for a client to place data into
2635 * the out of band area
2636 */
2637 chip->ecc.layout->oobavail = 0;
2638 for (i = 0; chip->ecc.layout->oobfree[i].length; i++)
2639 chip->ecc.layout->oobavail +=
2640 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03002641 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002642
2643 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002644 * Set the number of read / write steps for one page depending on ECC
2645 * mode
2646 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002647 chip->ecc.steps = mtd->writesize / chip->ecc.size;
2648 if(chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002649 printk(KERN_WARNING "Invalid ecc parameters\n");
2650 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02002652 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002653
Thomas Gleixner29072b92006-09-28 15:38:36 +02002654 /*
2655 * Allow subpage writes up to ecc.steps. Not possible for MLC
2656 * FLASH.
2657 */
2658 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2659 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
2660 switch(chip->ecc.steps) {
2661 case 2:
2662 mtd->subpage_sft = 1;
2663 break;
2664 case 4:
2665 case 8:
2666 mtd->subpage_sft = 2;
2667 break;
2668 }
2669 }
2670 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
2671
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02002672 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002673 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002676 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002679 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* Fill in remaining MTD driver data */
2682 mtd->type = MTD_NANDFLASH;
Joern Engel5fa43392006-05-22 23:18:29 +02002683 mtd->flags = MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 mtd->erase = nand_erase;
2685 mtd->point = NULL;
2686 mtd->unpoint = NULL;
2687 mtd->read = nand_read;
2688 mtd->write = nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 mtd->read_oob = nand_read_oob;
2690 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 mtd->sync = nand_sync;
2692 mtd->lock = NULL;
2693 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01002694 mtd->suspend = nand_suspend;
2695 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 mtd->block_isbad = nand_block_isbad;
2697 mtd->block_markbad = nand_block_markbad;
2698
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02002699 /* propagate ecc.layout to mtd_info */
2700 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Thomas Gleixner0040bf32005-02-09 12:20:00 +00002702 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002703 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00002704 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002707 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708}
2709
David Woodhouse3b85c322006-09-25 17:06:53 +01002710/* module_text_address() isn't exported, and it's mostly a pointless
2711 test if this is a module _anyway_ -- they'd have to try _really_ hard
2712 to call us from in-kernel code if the core NAND support is modular. */
2713#ifdef MODULE
2714#define caller_is_module() (1)
2715#else
2716#define caller_is_module() \
2717 module_text_address((unsigned long)__builtin_return_address(0))
2718#endif
2719
2720/**
2721 * nand_scan - [NAND Interface] Scan for the NAND device
2722 * @mtd: MTD device structure
2723 * @maxchips: Number of chips to scan for
2724 *
2725 * This fills out all the uninitialized function pointers
2726 * with the defaults.
2727 * The flash ID is read and the mtd/chip structures are
2728 * filled with the appropriate values.
2729 * The mtd->owner field must be set to the module of the caller
2730 *
2731 */
2732int nand_scan(struct mtd_info *mtd, int maxchips)
2733{
2734 int ret;
2735
2736 /* Many callers got this wrong, so check for it for a while... */
2737 if (!mtd->owner && caller_is_module()) {
2738 printk(KERN_CRIT "nand_scan() called with NULL mtd->owner!\n");
2739 BUG();
2740 }
2741
2742 ret = nand_scan_ident(mtd, maxchips);
2743 if (!ret)
2744 ret = nand_scan_tail(mtd);
2745 return ret;
2746}
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002749 * nand_release - [NAND Interface] Free resources held by the NAND device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 * @mtd: MTD device structure
2751*/
David Woodhousee0c7d762006-05-13 18:07:53 +01002752void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002754 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756#ifdef CONFIG_MTD_PARTITIONS
2757 /* Deregister partitions */
David Woodhousee0c7d762006-05-13 18:07:53 +01002758 del_mtd_partitions(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759#endif
2760 /* Deregister the device */
David Woodhousee0c7d762006-05-13 18:07:53 +01002761 del_mtd_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Jesper Juhlfa671642005-11-07 01:01:27 -08002763 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002764 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002765 if (!(chip->options & NAND_OWN_BUFFERS))
2766 kfree(chip->buffers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
2768
David Woodhousee0c7d762006-05-13 18:07:53 +01002769EXPORT_SYMBOL_GPL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01002770EXPORT_SYMBOL_GPL(nand_scan_ident);
2771EXPORT_SYMBOL_GPL(nand_scan_tail);
David Woodhousee0c7d762006-05-13 18:07:53 +01002772EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08002773
2774static int __init nand_base_init(void)
2775{
2776 led_trigger_register_simple("nand-disk", &nand_led_trigger);
2777 return 0;
2778}
2779
2780static void __exit nand_base_exit(void)
2781{
2782 led_trigger_unregister_simple(nand_led_trigger);
2783}
2784
2785module_init(nand_base_init);
2786module_exit(nand_base_exit);
2787
David Woodhousee0c7d762006-05-13 18:07:53 +01002788MODULE_LICENSE("GPL");
2789MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>, Thomas Gleixner <tglx@linutronix.de>");
2790MODULE_DESCRIPTION("Generic NAND flash driver code");