blob: 70c05939c1cb2d6ce1fa594d6df1e106fd54ca99 [file] [log] [blame]
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001/*
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.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02008 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02009 * Additional technical information is available on
Scott Wood3628f002008-10-24 16:20:43 -050010 * http://www.linux-mtd.infradead.org/doc/nand.html
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020011 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
William Juul52c07962007-10-31 13:53:06 +010013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020014 *
William Juul52c07962007-10-31 13:53:06 +010015 * Credits:
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020016 * David Woodhouse for adding multichip support
17 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
William Juul52c07962007-10-31 13:53:06 +010021 * TODO:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020022 * 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.
Scott Wood3628f002008-10-24 16:20:43 -050027 * BBT table is not serialized, has to be fixed
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020028 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020029 * 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
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020035#include <common.h>
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +010036
William Juul52c07962007-10-31 13:53:06 +010037#define ENOTSUPP 524 /* Operation is not supported */
38
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020039#include <malloc.h>
40#include <watchdog.h>
William Juul52c07962007-10-31 13:53:06 +010041#include <linux/err.h>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020042#include <linux/mtd/compat.h>
43#include <linux/mtd/mtd.h>
44#include <linux/mtd/nand.h>
45#include <linux/mtd/nand_ecc.h>
46
Stefan Roesefa252ea2009-04-24 15:58:33 +020047#ifdef CONFIG_MTD_PARTITIONS
48#include <linux/mtd/partitions.h>
49#endif
50
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020051#include <asm/io.h>
52#include <asm/errno.h>
53
Peter Tyserf9f36222009-02-04 13:47:22 -060054/*
55 * CONFIG_SYS_NAND_RESET_CNT is used as a timeout mechanism when resetting
56 * a flash. NAND flash is initialized prior to interrupts so standard timers
57 * can't be used. CONFIG_SYS_NAND_RESET_CNT should be set to a value
58 * which is greater than (max NAND reset time / NAND status read time).
59 * A conservative default of 200000 (500 us / 25 ns) is used as a default.
60 */
61#ifndef CONFIG_SYS_NAND_RESET_CNT
62#define CONFIG_SYS_NAND_RESET_CNT 200000
63#endif
64
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020065/* Define default oob placement schemes for large and small page devices */
William Juul52c07962007-10-31 13:53:06 +010066static struct nand_ecclayout nand_oob_8 = {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020067 .eccbytes = 3,
68 .eccpos = {0, 1, 2},
William Juul52c07962007-10-31 13:53:06 +010069 .oobfree = {
70 {.offset = 3,
71 .length = 2},
72 {.offset = 6,
73 .length = 2}}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020074};
75
William Juul52c07962007-10-31 13:53:06 +010076static struct nand_ecclayout nand_oob_16 = {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020077 .eccbytes = 6,
78 .eccpos = {0, 1, 2, 3, 6, 7},
William Juul52c07962007-10-31 13:53:06 +010079 .oobfree = {
80 {.offset = 8,
81 . length = 8}}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020082};
83
William Juul52c07962007-10-31 13:53:06 +010084static struct nand_ecclayout nand_oob_64 = {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020085 .eccbytes = 24,
86 .eccpos = {
William Juul52c07962007-10-31 13:53:06 +010087 40, 41, 42, 43, 44, 45, 46, 47,
88 48, 49, 50, 51, 52, 53, 54, 55,
89 56, 57, 58, 59, 60, 61, 62, 63},
90 .oobfree = {
91 {.offset = 2,
92 .length = 38}}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020093};
94
William Juul52c07962007-10-31 13:53:06 +010095static struct nand_ecclayout nand_oob_128 = {
Sergei Poselenov04fbaa02008-06-06 15:42:43 +020096 .eccbytes = 48,
97 .eccpos = {
Wolfgang Denka4de8352011-02-02 22:36:10 +010098 80, 81, 82, 83, 84, 85, 86, 87,
99 88, 89, 90, 91, 92, 93, 94, 95,
William Juul52c07962007-10-31 13:53:06 +0100100 96, 97, 98, 99, 100, 101, 102, 103,
101 104, 105, 106, 107, 108, 109, 110, 111,
102 112, 113, 114, 115, 116, 117, 118, 119,
103 120, 121, 122, 123, 124, 125, 126, 127},
104 .oobfree = {
105 {.offset = 2,
106 .length = 78}}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200107};
108
William Juul52c07962007-10-31 13:53:06 +0100109
110static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
111 int new_state);
112
113static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
114 struct mtd_oob_ops *ops);
115
116static int nand_wait(struct mtd_info *mtd, struct nand_chip *this);
Sergei Poselenov04fbaa02008-06-06 15:42:43 +0200117
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200118/**
119 * nand_release_device - [GENERIC] release chip
120 * @mtd: MTD device structure
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200121 *
122 * Deselect, release chip lock and wake up anyone waiting on the device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200123 */
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100124static void nand_release_device (struct mtd_info *mtd)
125{
126 struct nand_chip *this = mtd->priv;
127 this->select_chip(mtd, -1); /* De-select the NAND device */
128}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200129
130/**
131 * nand_read_byte - [DEFAULT] read one byte from the chip
132 * @mtd: MTD device structure
133 *
134 * Default read function for 8bit buswith
135 */
William Juul52c07962007-10-31 13:53:06 +0100136static uint8_t nand_read_byte(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200137{
William Juul52c07962007-10-31 13:53:06 +0100138 struct nand_chip *chip = mtd->priv;
139 return readb(chip->IO_ADDR_R);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200140}
141
142/**
143 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
144 * @mtd: MTD device structure
145 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200146 * Default read function for 16bit buswith with
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200147 * endianess conversion
148 */
William Juul52c07962007-10-31 13:53:06 +0100149static uint8_t nand_read_byte16(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200150{
William Juul52c07962007-10-31 13:53:06 +0100151 struct nand_chip *chip = mtd->priv;
152 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200153}
154
155/**
156 * nand_read_word - [DEFAULT] read one word from the chip
157 * @mtd: MTD device structure
158 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200159 * Default read function for 16bit buswith without
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200160 * endianess conversion
161 */
162static u16 nand_read_word(struct mtd_info *mtd)
163{
William Juul52c07962007-10-31 13:53:06 +0100164 struct nand_chip *chip = mtd->priv;
165 return readw(chip->IO_ADDR_R);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200166}
167
168/**
169 * nand_select_chip - [DEFAULT] control CE line
170 * @mtd: MTD device structure
William Juul52c07962007-10-31 13:53:06 +0100171 * @chipnr: chipnumber to select, -1 for deselect
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200172 *
173 * Default select function for 1 chip devices.
174 */
William Juul52c07962007-10-31 13:53:06 +0100175static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200176{
William Juul52c07962007-10-31 13:53:06 +0100177 struct nand_chip *chip = mtd->priv;
178
179 switch (chipnr) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200180 case -1:
William Juul52c07962007-10-31 13:53:06 +0100181 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200182 break;
183 case 0:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200184 break;
185
186 default:
187 BUG();
188 }
189}
190
191/**
192 * nand_write_buf - [DEFAULT] write buffer to chip
193 * @mtd: MTD device structure
194 * @buf: data buffer
195 * @len: number of bytes to write
196 *
197 * Default write function for 8bit buswith
198 */
William Juul52c07962007-10-31 13:53:06 +0100199static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200200{
201 int i;
William Juul52c07962007-10-31 13:53:06 +0100202 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200203
William Juul52c07962007-10-31 13:53:06 +0100204 for (i = 0; i < len; i++)
205 writeb(buf[i], chip->IO_ADDR_W);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200206}
207
208/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200209 * nand_read_buf - [DEFAULT] read chip data into buffer
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200210 * @mtd: MTD device structure
211 * @buf: buffer to store date
212 * @len: number of bytes to read
213 *
214 * Default read function for 8bit buswith
215 */
William Juul52c07962007-10-31 13:53:06 +0100216static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200217{
218 int i;
William Juul52c07962007-10-31 13:53:06 +0100219 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200220
William Juul52c07962007-10-31 13:53:06 +0100221 for (i = 0; i < len; i++)
222 buf[i] = readb(chip->IO_ADDR_R);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200223}
224
225/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200226 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200227 * @mtd: MTD device structure
228 * @buf: buffer containing the data to compare
229 * @len: number of bytes to compare
230 *
231 * Default verify function for 8bit buswith
232 */
William Juul52c07962007-10-31 13:53:06 +0100233static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200234{
235 int i;
William Juul52c07962007-10-31 13:53:06 +0100236 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200237
William Juul52c07962007-10-31 13:53:06 +0100238 for (i = 0; i < len; i++)
239 if (buf[i] != readb(chip->IO_ADDR_R))
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200240 return -EFAULT;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200241 return 0;
242}
243
244/**
245 * nand_write_buf16 - [DEFAULT] write buffer to chip
246 * @mtd: MTD device structure
247 * @buf: data buffer
248 * @len: number of bytes to write
249 *
250 * Default write function for 16bit buswith
251 */
William Juul52c07962007-10-31 13:53:06 +0100252static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200253{
254 int i;
William Juul52c07962007-10-31 13:53:06 +0100255 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200256 u16 *p = (u16 *) buf;
257 len >>= 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200258
William Juul52c07962007-10-31 13:53:06 +0100259 for (i = 0; i < len; i++)
260 writew(p[i], chip->IO_ADDR_W);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200261
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200262}
263
264/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200265 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200266 * @mtd: MTD device structure
267 * @buf: buffer to store date
268 * @len: number of bytes to read
269 *
270 * Default read function for 16bit buswith
271 */
William Juul52c07962007-10-31 13:53:06 +0100272static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200273{
274 int i;
William Juul52c07962007-10-31 13:53:06 +0100275 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200276 u16 *p = (u16 *) buf;
277 len >>= 1;
278
William Juul52c07962007-10-31 13:53:06 +0100279 for (i = 0; i < len; i++)
280 p[i] = readw(chip->IO_ADDR_R);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200281}
282
283/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200284 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200285 * @mtd: MTD device structure
286 * @buf: buffer containing the data to compare
287 * @len: number of bytes to compare
288 *
289 * Default verify function for 16bit buswith
290 */
William Juul52c07962007-10-31 13:53:06 +0100291static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200292{
293 int i;
William Juul52c07962007-10-31 13:53:06 +0100294 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200295 u16 *p = (u16 *) buf;
296 len >>= 1;
297
William Juul52c07962007-10-31 13:53:06 +0100298 for (i = 0; i < len; i++)
299 if (p[i] != readw(chip->IO_ADDR_R))
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200300 return -EFAULT;
301
302 return 0;
303}
304
305/**
306 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
307 * @mtd: MTD device structure
308 * @ofs: offset from device start
309 * @getchip: 0, if the chip is already selected
310 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200311 * Check, if the block is bad.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200312 */
313static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
314{
315 int page, chipnr, res = 0;
William Juul52c07962007-10-31 13:53:06 +0100316 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200317 u16 bad;
318
William Juul52c07962007-10-31 13:53:06 +0100319 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Thomas Knobloch9e2aeaf2007-05-05 07:04:42 +0200320
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200321 if (getchip) {
William Juul52c07962007-10-31 13:53:06 +0100322 chipnr = (int)(ofs >> chip->chip_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200323
William Juul52c07962007-10-31 13:53:06 +0100324 nand_get_device(chip, mtd, FL_READING);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200325
326 /* Select the NAND device */
William Juul52c07962007-10-31 13:53:06 +0100327 chip->select_chip(mtd, chipnr);
Thomas Knobloch9e2aeaf2007-05-05 07:04:42 +0200328 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200329
William Juul52c07962007-10-31 13:53:06 +0100330 if (chip->options & NAND_BUSWIDTH_16) {
331 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
332 page);
333 bad = cpu_to_le16(chip->read_word(mtd));
334 if (chip->badblockpos & 0x1)
335 bad >>= 8;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200336 if ((bad & 0xFF) != 0xff)
337 res = 1;
338 } else {
William Juul52c07962007-10-31 13:53:06 +0100339 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
340 if (chip->read_byte(mtd) != 0xff)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200341 res = 1;
342 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200343
William Juul52c07962007-10-31 13:53:06 +0100344 if (getchip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200345 nand_release_device(mtd);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200346
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200347 return res;
348}
349
350/**
351 * nand_default_block_markbad - [DEFAULT] mark a block bad
352 * @mtd: MTD device structure
353 * @ofs: offset from device start
354 *
355 * This is the default implementation, which can be overridden by
356 * a hardware specific driver.
357*/
358static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
359{
William Juul52c07962007-10-31 13:53:06 +0100360 struct nand_chip *chip = mtd->priv;
361 uint8_t buf[2] = { 0, 0 };
362 int block, ret;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200363
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200364 /* Get block number */
William Juul52c07962007-10-31 13:53:06 +0100365 block = (int)(ofs >> chip->bbt_erase_shift);
366 if (chip->bbt)
367 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200368
369 /* Do we have a flash based bad block table ? */
William Juul52c07962007-10-31 13:53:06 +0100370 if (chip->options & NAND_USE_FLASH_BBT)
371 ret = nand_update_bbt(mtd, ofs);
372 else {
373 /* We write two bytes, so we dont have to mess with 16 bit
374 * access
375 */
Scott Wood3628f002008-10-24 16:20:43 -0500376 nand_get_device(chip, mtd, FL_WRITING);
William Juul52c07962007-10-31 13:53:06 +0100377 ofs += mtd->oobsize;
378 chip->ops.len = chip->ops.ooblen = 2;
379 chip->ops.datbuf = NULL;
380 chip->ops.oobbuf = buf;
381 chip->ops.ooboffs = chip->badblockpos & ~0x01;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200382
William Juul52c07962007-10-31 13:53:06 +0100383 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
Scott Wood3628f002008-10-24 16:20:43 -0500384 nand_release_device(mtd);
William Juul52c07962007-10-31 13:53:06 +0100385 }
386 if (!ret)
387 mtd->ecc_stats.badblocks++;
Scott Wood3628f002008-10-24 16:20:43 -0500388
William Juul52c07962007-10-31 13:53:06 +0100389 return ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200390}
391
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200392/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200393 * nand_check_wp - [GENERIC] check if the chip is write protected
394 * @mtd: MTD device structure
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200395 * Check, if the device is write protected
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200396 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200397 * The function expects, that the device is already selected
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200398 */
William Juul52c07962007-10-31 13:53:06 +0100399static int nand_check_wp(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200400{
William Juul52c07962007-10-31 13:53:06 +0100401 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200402 /* Check the WP bit */
William Juul52c07962007-10-31 13:53:06 +0100403 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
404 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200405}
Markus Klotzbücher27eba142006-03-06 15:04:25 +0100406
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200407/**
408 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
409 * @mtd: MTD device structure
410 * @ofs: offset from device start
411 * @getchip: 0, if the chip is already selected
412 * @allowbbt: 1, if its allowed to access the bbt area
413 *
414 * Check, if the block is bad. Either by reading the bad block table or
415 * calling of the scan function.
416 */
William Juul52c07962007-10-31 13:53:06 +0100417static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
418 int allowbbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200419{
William Juul52c07962007-10-31 13:53:06 +0100420 struct nand_chip *chip = mtd->priv;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200421
Ilya Yanoka2d4dfe2008-06-30 15:34:40 +0200422 if (!(chip->options & NAND_BBT_SCANNED)) {
Ilya Yanoka2d4dfe2008-06-30 15:34:40 +0200423 chip->options |= NAND_BBT_SCANNED;
Scott Wood11b12a32008-12-16 14:24:16 -0600424 chip->scan_bbt(mtd);
Ilya Yanoka2d4dfe2008-06-30 15:34:40 +0200425 }
426
William Juul52c07962007-10-31 13:53:06 +0100427 if (!chip->bbt)
428 return chip->block_bad(mtd, ofs, getchip);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200429
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200430 /* Return info from the table */
William Juul52c07962007-10-31 13:53:06 +0100431 return nand_isbad_bbt(mtd, ofs, allowbbt);
432}
433
434/*
435 * Wait for the ready pin, after a command
436 * The timeout is catched later.
437 */
William Juul52c07962007-10-31 13:53:06 +0100438void nand_wait_ready(struct mtd_info *mtd)
439{
440 struct nand_chip *chip = mtd->priv;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200441 u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000442 u32 time_start;
Stefan Roesea5c312c2008-01-05 16:43:25 +0100443
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000444 time_start = get_timer(0);
Stefan Roesea5c312c2008-01-05 16:43:25 +0100445
446 /* wait until command is processed or timeout occures */
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000447 while (get_timer(time_start) < timeo) {
Stefan Roesea5c312c2008-01-05 16:43:25 +0100448 if (chip->dev_ready)
449 if (chip->dev_ready(mtd))
450 break;
451 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200452}
453
454/**
455 * nand_command - [DEFAULT] Send command to NAND device
456 * @mtd: MTD device structure
457 * @command: the command to be sent
458 * @column: the column address for this command, -1 if none
459 * @page_addr: the page address for this command, -1 if none
460 *
461 * Send command to NAND device. This function is used for small page
462 * devices (256/512 Bytes per page)
463 */
William Juul52c07962007-10-31 13:53:06 +0100464static void nand_command(struct mtd_info *mtd, unsigned int command,
465 int column, int page_addr)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200466{
William Juul52c07962007-10-31 13:53:06 +0100467 register struct nand_chip *chip = mtd->priv;
468 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Peter Tyserf9f36222009-02-04 13:47:22 -0600469 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200470
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200471 /*
472 * Write out the command to the device.
473 */
474 if (command == NAND_CMD_SEQIN) {
475 int readcmd;
476
William Juul52c07962007-10-31 13:53:06 +0100477 if (column >= mtd->writesize) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200478 /* OOB area */
William Juul52c07962007-10-31 13:53:06 +0100479 column -= mtd->writesize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200480 readcmd = NAND_CMD_READOOB;
481 } else if (column < 256) {
482 /* First 256 bytes --> READ0 */
483 readcmd = NAND_CMD_READ0;
484 } else {
485 column -= 256;
486 readcmd = NAND_CMD_READ1;
487 }
William Juul52c07962007-10-31 13:53:06 +0100488 chip->cmd_ctrl(mtd, readcmd, ctrl);
489 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200490 }
William Juul52c07962007-10-31 13:53:06 +0100491 chip->cmd_ctrl(mtd, command, ctrl);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200492
William Juul52c07962007-10-31 13:53:06 +0100493 /*
494 * Address cycle, when necessary
495 */
496 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
497 /* Serially input address */
498 if (column != -1) {
499 /* Adjust columns for 16 bit buswidth */
500 if (chip->options & NAND_BUSWIDTH_16)
501 column >>= 1;
502 chip->cmd_ctrl(mtd, column, ctrl);
503 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200504 }
William Juul52c07962007-10-31 13:53:06 +0100505 if (page_addr != -1) {
506 chip->cmd_ctrl(mtd, page_addr, ctrl);
507 ctrl &= ~NAND_CTRL_CHANGE;
508 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
509 /* One more address cycle for devices > 32MiB */
510 if (chip->chipsize > (32 << 20))
511 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
512 }
513 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200514
515 /*
516 * program and erase have their own busy handlers
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200517 * status and sequential in needs no delay
William Juul52c07962007-10-31 13:53:06 +0100518 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200519 switch (command) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200520
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200521 case NAND_CMD_PAGEPROG:
522 case NAND_CMD_ERASE1:
523 case NAND_CMD_ERASE2:
524 case NAND_CMD_SEQIN:
525 case NAND_CMD_STATUS:
526 return;
527
528 case NAND_CMD_RESET:
William Juul52c07962007-10-31 13:53:06 +0100529 if (chip->dev_ready)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200530 break;
William Juul52c07962007-10-31 13:53:06 +0100531 udelay(chip->chip_delay);
532 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
533 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
534 chip->cmd_ctrl(mtd,
535 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyserf9f36222009-02-04 13:47:22 -0600536 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
537 (rst_sts_cnt--));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200538 return;
539
William Juul52c07962007-10-31 13:53:06 +0100540 /* This applies to read commands */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200541 default:
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200542 /*
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200543 * If we don't have access to the busy pin, we apply the given
544 * command delay
William Juul52c07962007-10-31 13:53:06 +0100545 */
546 if (!chip->dev_ready) {
547 udelay(chip->chip_delay);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200548 return;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200549 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200550 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200551 /* Apply this short delay always to ensure that we do wait tWB in
552 * any case on any machine. */
William Juul52c07962007-10-31 13:53:06 +0100553 ndelay(100);
554
555 nand_wait_ready(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200556}
557
558/**
559 * nand_command_lp - [DEFAULT] Send command to NAND large page device
560 * @mtd: MTD device structure
561 * @command: the command to be sent
562 * @column: the column address for this command, -1 if none
563 * @page_addr: the page address for this command, -1 if none
564 *
William Juul52c07962007-10-31 13:53:06 +0100565 * Send command to NAND device. This is the version for the new large page
566 * devices We dont have the separate regions as we have in the small page
567 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200568 */
William Juul52c07962007-10-31 13:53:06 +0100569static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
570 int column, int page_addr)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200571{
William Juul52c07962007-10-31 13:53:06 +0100572 register struct nand_chip *chip = mtd->priv;
Peter Tyserf9f36222009-02-04 13:47:22 -0600573 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200574
575 /* Emulate NAND_CMD_READOOB */
576 if (command == NAND_CMD_READOOB) {
William Juul52c07962007-10-31 13:53:06 +0100577 column += mtd->writesize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200578 command = NAND_CMD_READ0;
579 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200580
William Juul52c07962007-10-31 13:53:06 +0100581 /* Command latch cycle */
582 chip->cmd_ctrl(mtd, command & 0xff,
583 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200584
585 if (column != -1 || page_addr != -1) {
William Juul52c07962007-10-31 13:53:06 +0100586 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200587
588 /* Serially input address */
589 if (column != -1) {
590 /* Adjust columns for 16 bit buswidth */
William Juul52c07962007-10-31 13:53:06 +0100591 if (chip->options & NAND_BUSWIDTH_16)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200592 column >>= 1;
William Juul52c07962007-10-31 13:53:06 +0100593 chip->cmd_ctrl(mtd, column, ctrl);
594 ctrl &= ~NAND_CTRL_CHANGE;
595 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200596 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200597 if (page_addr != -1) {
William Juul52c07962007-10-31 13:53:06 +0100598 chip->cmd_ctrl(mtd, page_addr, ctrl);
599 chip->cmd_ctrl(mtd, page_addr >> 8,
600 NAND_NCE | NAND_ALE);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200601 /* One more address cycle for devices > 128MiB */
William Juul52c07962007-10-31 13:53:06 +0100602 if (chip->chipsize > (128 << 20))
603 chip->cmd_ctrl(mtd, page_addr >> 16,
604 NAND_NCE | NAND_ALE);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200605 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200606 }
William Juul52c07962007-10-31 13:53:06 +0100607 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200608
609 /*
610 * program and erase have their own busy handlers
William Juul52c07962007-10-31 13:53:06 +0100611 * status, sequential in, and deplete1 need no delay
612 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200613 switch (command) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200614
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200615 case NAND_CMD_CACHEDPROG:
616 case NAND_CMD_PAGEPROG:
617 case NAND_CMD_ERASE1:
618 case NAND_CMD_ERASE2:
619 case NAND_CMD_SEQIN:
William Juul52c07962007-10-31 13:53:06 +0100620 case NAND_CMD_RNDIN:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200621 case NAND_CMD_STATUS:
William Juul52c07962007-10-31 13:53:06 +0100622 case NAND_CMD_DEPLETE1:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200623 return;
624
William Juul52c07962007-10-31 13:53:06 +0100625 /*
626 * read error status commands require only a short delay
627 */
628 case NAND_CMD_STATUS_ERROR:
629 case NAND_CMD_STATUS_ERROR0:
630 case NAND_CMD_STATUS_ERROR1:
631 case NAND_CMD_STATUS_ERROR2:
632 case NAND_CMD_STATUS_ERROR3:
633 udelay(chip->chip_delay);
634 return;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200635
636 case NAND_CMD_RESET:
William Juul52c07962007-10-31 13:53:06 +0100637 if (chip->dev_ready)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200638 break;
William Juul52c07962007-10-31 13:53:06 +0100639 udelay(chip->chip_delay);
640 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
641 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
642 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
643 NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyserf9f36222009-02-04 13:47:22 -0600644 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
645 (rst_sts_cnt--));
William Juul52c07962007-10-31 13:53:06 +0100646 return;
647
648 case NAND_CMD_RNDOUT:
649 /* No ready / busy check necessary */
650 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
651 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
652 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
653 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200654 return;
655
656 case NAND_CMD_READ0:
William Juul52c07962007-10-31 13:53:06 +0100657 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
658 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
659 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
660 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200661
William Juul52c07962007-10-31 13:53:06 +0100662 /* This applies to read commands */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200663 default:
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200664 /*
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200665 * If we don't have access to the busy pin, we apply the given
666 * command delay
William Juul52c07962007-10-31 13:53:06 +0100667 */
668 if (!chip->dev_ready) {
669 udelay(chip->chip_delay);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200670 return;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200671 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200672 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200673
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200674 /* Apply this short delay always to ensure that we do wait tWB in
675 * any case on any machine. */
William Juul52c07962007-10-31 13:53:06 +0100676 ndelay(100);
677
678 nand_wait_ready(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200679}
680
681/**
682 * nand_get_device - [GENERIC] Get chip for selected access
William Juul52c07962007-10-31 13:53:06 +0100683 * @chip: the nand chip descriptor
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200684 * @mtd: MTD device structure
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200685 * @new_state: the state which is requested
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200686 *
687 * Get the device and lock it for exclusive access
688 */
William Juul52c07962007-10-31 13:53:06 +0100689static int nand_get_device (struct nand_chip *this, struct mtd_info *mtd, int new_state)
690{
Marcel Ziswilerf30a2aa2008-06-22 16:30:06 +0200691 this->state = new_state;
William Juul52c07962007-10-31 13:53:06 +0100692 return 0;
693}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200694
695/**
696 * nand_wait - [DEFAULT] wait until the command is done
697 * @mtd: MTD device structure
William Juul52c07962007-10-31 13:53:06 +0100698 * @chip: NAND chip structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200699 *
700 * Wait for command done. This applies to erase and program only
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200701 * Erase can take up to 400ms and program up to 20ms according to
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200702 * general NAND and SmartMedia specs
William Juul52c07962007-10-31 13:53:06 +0100703 */
William Juul52c07962007-10-31 13:53:06 +0100704static int nand_wait(struct mtd_info *mtd, struct nand_chip *this)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200705{
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100706 unsigned long timeo;
William Juul52c07962007-10-31 13:53:06 +0100707 int state = this->state;
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000708 u32 time_start;
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100709
710 if (state == FL_ERASING)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200711 timeo = (CONFIG_SYS_HZ * 400) / 1000;
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100712 else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200713 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100714
715 if ((state == FL_ERASING) && (this->options & NAND_IS_AND))
716 this->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
717 else
718 this->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
719
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000720 time_start = get_timer(0);
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100721
722 while (1) {
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000723 if (get_timer(time_start) > timeo) {
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +0100724 printf("Timeout!");
Stefan Roeseef26d242006-11-27 17:22:19 +0100725 return 0x01;
726 }
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100727
728 if (this->dev_ready) {
729 if (this->dev_ready(mtd))
730 break;
731 } else {
732 if (this->read_byte(mtd) & NAND_STATUS_READY)
733 break;
734 }
735 }
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100736#ifdef PPCHAMELON_NAND_TIMER_HACK
Reinhard Meyer4d1fb182010-11-18 03:14:26 +0000737 time_start = get_timer(0);
738 while (get_timer(time_start) < 10)
739 ;
Bartlomiej Sieka582f1a32006-03-05 18:57:33 +0100740#endif /* PPCHAMELON_NAND_TIMER_HACK */
Bartlomiej Sieka6eed2ab2006-02-24 09:37:22 +0100741
Wolfgang Denk9a08dd12005-11-02 14:29:12 +0100742 return this->read_byte(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200743}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200744
745/**
William Juul52c07962007-10-31 13:53:06 +0100746 * nand_read_page_raw - [Intern] read raw page data without ecc
747 * @mtd: mtd info structure
748 * @chip: nand chip info structure
749 * @buf: buffer to store read data
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -0500750 * @page: page number to read
David Brownellee86b8d2009-11-07 16:27:01 -0500751 *
752 * Not for syndrome calculating ecc controllers, which use a special oob layout
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200753 */
William Juul52c07962007-10-31 13:53:06 +0100754static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraj883189e2009-08-10 13:27:46 -0400755 uint8_t *buf, int page)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200756{
William Juul52c07962007-10-31 13:53:06 +0100757 chip->read_buf(mtd, buf, mtd->writesize);
758 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
759 return 0;
760}
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200761
William Juul52c07962007-10-31 13:53:06 +0100762/**
David Brownellee86b8d2009-11-07 16:27:01 -0500763 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
764 * @mtd: mtd info structure
765 * @chip: nand chip info structure
766 * @buf: buffer to store read data
767 * @page: page number to read
768 *
769 * We need a special oob layout and handling even when OOB isn't used.
770 */
771static int nand_read_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
772 uint8_t *buf, int page)
773{
774 int eccsize = chip->ecc.size;
775 int eccbytes = chip->ecc.bytes;
776 uint8_t *oob = chip->oob_poi;
777 int steps, size;
778
779 for (steps = chip->ecc.steps; steps > 0; steps--) {
780 chip->read_buf(mtd, buf, eccsize);
781 buf += eccsize;
782
783 if (chip->ecc.prepad) {
784 chip->read_buf(mtd, oob, chip->ecc.prepad);
785 oob += chip->ecc.prepad;
786 }
787
788 chip->read_buf(mtd, oob, eccbytes);
789 oob += eccbytes;
790
791 if (chip->ecc.postpad) {
792 chip->read_buf(mtd, oob, chip->ecc.postpad);
793 oob += chip->ecc.postpad;
794 }
795 }
796
797 size = mtd->oobsize - (oob - chip->oob_poi);
798 if (size)
799 chip->read_buf(mtd, oob, size);
800
801 return 0;
802}
803
804/**
William Juul52c07962007-10-31 13:53:06 +0100805 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
806 * @mtd: mtd info structure
807 * @chip: nand chip info structure
808 * @buf: buffer to store read data
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -0500809 * @page: page number to read
William Juul52c07962007-10-31 13:53:06 +0100810 */
811static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraj883189e2009-08-10 13:27:46 -0400812 uint8_t *buf, int page)
William Juul52c07962007-10-31 13:53:06 +0100813{
814 int i, eccsize = chip->ecc.size;
815 int eccbytes = chip->ecc.bytes;
816 int eccsteps = chip->ecc.steps;
817 uint8_t *p = buf;
818 uint8_t *ecc_calc = chip->buffers->ecccalc;
819 uint8_t *ecc_code = chip->buffers->ecccode;
820 uint32_t *eccpos = chip->ecc.layout->eccpos;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200821
Sandeep Paulraj883189e2009-08-10 13:27:46 -0400822 chip->ecc.read_page_raw(mtd, chip, buf, page);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200823
William Juul52c07962007-10-31 13:53:06 +0100824 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
825 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200826
William Juul52c07962007-10-31 13:53:06 +0100827 for (i = 0; i < chip->ecc.total; i++)
828 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200829
William Juul52c07962007-10-31 13:53:06 +0100830 eccsteps = chip->ecc.steps;
831 p = buf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200832
William Juul52c07962007-10-31 13:53:06 +0100833 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
834 int stat;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200835
William Juul52c07962007-10-31 13:53:06 +0100836 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Scott Wood3628f002008-10-24 16:20:43 -0500837 if (stat < 0)
William Juul52c07962007-10-31 13:53:06 +0100838 mtd->ecc_stats.failed++;
839 else
840 mtd->ecc_stats.corrected += stat;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200841 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200842 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200843}
844
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200845/**
Scott Wood3628f002008-10-24 16:20:43 -0500846 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
847 * @mtd: mtd info structure
848 * @chip: nand chip info structure
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -0500849 * @data_offs: offset of requested data within the page
850 * @readlen: data length
851 * @bufpoi: buffer to store read data
Scott Wood3628f002008-10-24 16:20:43 -0500852 */
853static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip, uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
854{
855 int start_step, end_step, num_steps;
856 uint32_t *eccpos = chip->ecc.layout->eccpos;
857 uint8_t *p;
858 int data_col_addr, i, gaps = 0;
859 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
860 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
861
862 /* Column address wihin the page aligned to ECC size (256bytes). */
863 start_step = data_offs / chip->ecc.size;
864 end_step = (data_offs + readlen - 1) / chip->ecc.size;
865 num_steps = end_step - start_step + 1;
866
867 /* Data size aligned to ECC ecc.size*/
868 datafrag_len = num_steps * chip->ecc.size;
869 eccfrag_len = num_steps * chip->ecc.bytes;
870
871 data_col_addr = start_step * chip->ecc.size;
872 /* If we read not a page aligned data */
873 if (data_col_addr != 0)
874 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
875
876 p = bufpoi + data_col_addr;
877 chip->read_buf(mtd, p, datafrag_len);
878
879 /* Calculate ECC */
880 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
881 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
882
883 /* The performance is faster if to position offsets
884 according to ecc.pos. Let make sure here that
885 there are no gaps in ecc positions */
886 for (i = 0; i < eccfrag_len - 1; i++) {
887 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
888 eccpos[i + start_step * chip->ecc.bytes + 1]) {
889 gaps = 1;
890 break;
891 }
892 }
893 if (gaps) {
894 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
895 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
896 } else {
897 /* send the command to read the particular ecc bytes */
898 /* take care about buswidth alignment in read_buf */
899 aligned_pos = eccpos[start_step * chip->ecc.bytes] & ~(busw - 1);
900 aligned_len = eccfrag_len;
901 if (eccpos[start_step * chip->ecc.bytes] & (busw - 1))
902 aligned_len++;
903 if (eccpos[(start_step + num_steps) * chip->ecc.bytes] & (busw - 1))
904 aligned_len++;
905
906 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize + aligned_pos, -1);
907 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
908 }
909
910 for (i = 0; i < eccfrag_len; i++)
911 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + start_step * chip->ecc.bytes]];
912
913 p = bufpoi + data_col_addr;
914 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
915 int stat;
916
917 stat = chip->ecc.correct(mtd, p, &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Sandeep Paulraj9656fe22009-11-16 13:32:01 -0500918 if (stat == -1)
Scott Wood3628f002008-10-24 16:20:43 -0500919 mtd->ecc_stats.failed++;
920 else
921 mtd->ecc_stats.corrected += stat;
922 }
923 return 0;
924}
925
926/**
William Juul52c07962007-10-31 13:53:06 +0100927 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
928 * @mtd: mtd info structure
929 * @chip: nand chip info structure
930 * @buf: buffer to store read data
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -0500931 * @page: page number to read
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200932 *
William Juul52c07962007-10-31 13:53:06 +0100933 * Not for syndrome calculating ecc controllers which need a special oob layout
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200934 */
William Juul52c07962007-10-31 13:53:06 +0100935static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraj883189e2009-08-10 13:27:46 -0400936 uint8_t *buf, int page)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200937{
William Juul52c07962007-10-31 13:53:06 +0100938 int i, eccsize = chip->ecc.size;
939 int eccbytes = chip->ecc.bytes;
940 int eccsteps = chip->ecc.steps;
941 uint8_t *p = buf;
942 uint8_t *ecc_calc = chip->buffers->ecccalc;
943 uint8_t *ecc_code = chip->buffers->ecccode;
944 uint32_t *eccpos = chip->ecc.layout->eccpos;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200945
William Juul52c07962007-10-31 13:53:06 +0100946 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
947 chip->ecc.hwctl(mtd, NAND_ECC_READ);
948 chip->read_buf(mtd, p, eccsize);
949 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
950 }
951 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200952
William Juul52c07962007-10-31 13:53:06 +0100953 for (i = 0; i < chip->ecc.total; i++)
954 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200955
William Juul52c07962007-10-31 13:53:06 +0100956 eccsteps = chip->ecc.steps;
957 p = buf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200958
William Juul52c07962007-10-31 13:53:06 +0100959 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
960 int stat;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200961
William Juul52c07962007-10-31 13:53:06 +0100962 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Sandeep Paulraj16add232009-11-07 14:25:03 -0500963 if (stat < 0)
William Juul52c07962007-10-31 13:53:06 +0100964 mtd->ecc_stats.failed++;
965 else
966 mtd->ecc_stats.corrected += stat;
967 }
968 return 0;
969}
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200970
William Juul52c07962007-10-31 13:53:06 +0100971/**
Sandeep Paulrajdea40702009-08-10 13:27:56 -0400972 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
973 * @mtd: mtd info structure
974 * @chip: nand chip info structure
975 * @buf: buffer to store read data
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -0500976 * @page: page number to read
Sandeep Paulrajdea40702009-08-10 13:27:56 -0400977 *
978 * Hardware ECC for large page chips, require OOB to be read first.
979 * For this ECC mode, the write_page method is re-used from ECC_HW.
980 * These methods read/write ECC from the OOB area, unlike the
981 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
982 * "infix ECC" scheme and reads/writes ECC from the data area, by
983 * overwriting the NAND manufacturer bad block markings.
984 */
985static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
986 struct nand_chip *chip, uint8_t *buf, int page)
987{
988 int i, eccsize = chip->ecc.size;
989 int eccbytes = chip->ecc.bytes;
990 int eccsteps = chip->ecc.steps;
991 uint8_t *p = buf;
992 uint8_t *ecc_code = chip->buffers->ecccode;
993 uint32_t *eccpos = chip->ecc.layout->eccpos;
994 uint8_t *ecc_calc = chip->buffers->ecccalc;
995
996 /* Read the OOB area first */
997 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
998 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
999 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1000
1001 for (i = 0; i < chip->ecc.total; i++)
1002 ecc_code[i] = chip->oob_poi[eccpos[i]];
1003
1004 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1005 int stat;
1006
1007 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1008 chip->read_buf(mtd, p, eccsize);
1009 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1010
1011 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1012 if (stat < 0)
1013 mtd->ecc_stats.failed++;
1014 else
1015 mtd->ecc_stats.corrected += stat;
1016 }
1017 return 0;
1018}
1019
1020/**
William Juul52c07962007-10-31 13:53:06 +01001021 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
1022 * @mtd: mtd info structure
1023 * @chip: nand chip info structure
1024 * @buf: buffer to store read data
Sandeep Paulraj22bc7ba2009-11-07 14:24:50 -05001025 * @page: page number to read
William Juul52c07962007-10-31 13:53:06 +01001026 *
1027 * The hw generator calculates the error syndrome automatically. Therefor
1028 * we need a special oob layout and handling.
1029 */
1030static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraj883189e2009-08-10 13:27:46 -04001031 uint8_t *buf, int page)
William Juul52c07962007-10-31 13:53:06 +01001032{
1033 int i, eccsize = chip->ecc.size;
1034 int eccbytes = chip->ecc.bytes;
1035 int eccsteps = chip->ecc.steps;
1036 uint8_t *p = buf;
1037 uint8_t *oob = chip->oob_poi;
1038
1039 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1040 int stat;
1041
1042 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1043 chip->read_buf(mtd, p, eccsize);
1044
1045 if (chip->ecc.prepad) {
1046 chip->read_buf(mtd, oob, chip->ecc.prepad);
1047 oob += chip->ecc.prepad;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001048 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001049
William Juul52c07962007-10-31 13:53:06 +01001050 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1051 chip->read_buf(mtd, oob, eccbytes);
1052 stat = chip->ecc.correct(mtd, p, oob, NULL);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001053
Scott Wood3628f002008-10-24 16:20:43 -05001054 if (stat < 0)
William Juul52c07962007-10-31 13:53:06 +01001055 mtd->ecc_stats.failed++;
1056 else
1057 mtd->ecc_stats.corrected += stat;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001058
William Juul52c07962007-10-31 13:53:06 +01001059 oob += eccbytes;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001060
William Juul52c07962007-10-31 13:53:06 +01001061 if (chip->ecc.postpad) {
1062 chip->read_buf(mtd, oob, chip->ecc.postpad);
1063 oob += chip->ecc.postpad;
1064 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001065 }
William Juul52c07962007-10-31 13:53:06 +01001066
1067 /* Calculate remaining oob bytes */
1068 i = mtd->oobsize - (oob - chip->oob_poi);
1069 if (i)
1070 chip->read_buf(mtd, oob, i);
1071
1072 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001073}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001074
1075/**
William Juul52c07962007-10-31 13:53:06 +01001076 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1077 * @chip: nand chip structure
1078 * @oob: oob destination address
1079 * @ops: oob ops structure
1080 * @len: size of oob to transfer
1081 */
1082static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
1083 struct mtd_oob_ops *ops, size_t len)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001084{
William Juul52c07962007-10-31 13:53:06 +01001085 switch(ops->mode) {
1086
1087 case MTD_OOB_PLACE:
1088 case MTD_OOB_RAW:
1089 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1090 return oob + len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001091
William Juul52c07962007-10-31 13:53:06 +01001092 case MTD_OOB_AUTO: {
1093 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1094 uint32_t boffs = 0, roffs = ops->ooboffs;
1095 size_t bytes = 0;
1096
1097 for(; free->length && len; free++, len -= bytes) {
1098 /* Read request not from offset 0 ? */
1099 if (unlikely(roffs)) {
1100 if (roffs >= free->length) {
1101 roffs -= free->length;
1102 continue;
1103 }
1104 boffs = free->offset + roffs;
1105 bytes = min_t(size_t, len,
1106 (free->length - roffs));
1107 roffs = 0;
1108 } else {
1109 bytes = min_t(size_t, len, free->length);
1110 boffs = free->offset;
1111 }
1112 memcpy(oob, chip->oob_poi + boffs, bytes);
1113 oob += bytes;
1114 }
1115 return oob;
1116 }
1117 default:
1118 BUG();
1119 }
1120 return NULL;
1121}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001122
1123/**
William Juul52c07962007-10-31 13:53:06 +01001124 * nand_do_read_ops - [Internal] Read data with ECC
1125 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001126 * @mtd: MTD device structure
1127 * @from: offset to read from
William Juul52c07962007-10-31 13:53:06 +01001128 * @ops: oob ops structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001129 *
William Juul52c07962007-10-31 13:53:06 +01001130 * Internal function. Called with chip held.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001131 */
William Juul52c07962007-10-31 13:53:06 +01001132static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1133 struct mtd_oob_ops *ops)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001134{
William Juul52c07962007-10-31 13:53:06 +01001135 int chipnr, page, realpage, col, bytes, aligned;
1136 struct nand_chip *chip = mtd->priv;
1137 struct mtd_ecc_stats stats;
1138 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1139 int sndcmd = 1;
1140 int ret = 0;
1141 uint32_t readlen = ops->len;
1142 uint32_t oobreadlen = ops->ooblen;
1143 uint8_t *bufpoi, *oob, *buf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001144
William Juul52c07962007-10-31 13:53:06 +01001145 stats = mtd->ecc_stats;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001146
William Juul52c07962007-10-31 13:53:06 +01001147 chipnr = (int)(from >> chip->chip_shift);
1148 chip->select_chip(mtd, chipnr);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001149
William Juul52c07962007-10-31 13:53:06 +01001150 realpage = (int)(from >> chip->page_shift);
1151 page = realpage & chip->pagemask;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001152
William Juul52c07962007-10-31 13:53:06 +01001153 col = (int)(from & (mtd->writesize - 1));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001154
William Juul52c07962007-10-31 13:53:06 +01001155 buf = ops->datbuf;
1156 oob = ops->oobbuf;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001157
William Juul52c07962007-10-31 13:53:06 +01001158 while(1) {
1159 bytes = min(mtd->writesize - col, readlen);
1160 aligned = (bytes == mtd->writesize);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001161
William Juul52c07962007-10-31 13:53:06 +01001162 /* Is the current page in the buffer ? */
1163 if (realpage != chip->pagebuf || oob) {
1164 bufpoi = aligned ? buf : chip->buffers->databuf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001165
William Juul52c07962007-10-31 13:53:06 +01001166 if (likely(sndcmd)) {
1167 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1168 sndcmd = 0;
1169 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001170
William Juul52c07962007-10-31 13:53:06 +01001171 /* Now read the page into the buffer */
1172 if (unlikely(ops->mode == MTD_OOB_RAW))
Sandeep Paulraj883189e2009-08-10 13:27:46 -04001173 ret = chip->ecc.read_page_raw(mtd, chip,
1174 bufpoi, page);
Scott Wood3628f002008-10-24 16:20:43 -05001175 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
1176 ret = chip->ecc.read_subpage(mtd, chip, col, bytes, bufpoi);
William Juul52c07962007-10-31 13:53:06 +01001177 else
Sandeep Paulraj883189e2009-08-10 13:27:46 -04001178 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1179 page);
William Juul52c07962007-10-31 13:53:06 +01001180 if (ret < 0)
1181 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001182
William Juul52c07962007-10-31 13:53:06 +01001183 /* Transfer not aligned data */
1184 if (!aligned) {
Scott Wood3628f002008-10-24 16:20:43 -05001185 if (!NAND_SUBPAGE_READ(chip) && !oob)
1186 chip->pagebuf = realpage;
William Juul52c07962007-10-31 13:53:06 +01001187 memcpy(buf, chip->buffers->databuf + col, bytes);
1188 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001189
William Juul52c07962007-10-31 13:53:06 +01001190 buf += bytes;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001191
William Juul52c07962007-10-31 13:53:06 +01001192 if (unlikely(oob)) {
1193 /* Raw mode does data:oob:data:oob */
1194 if (ops->mode != MTD_OOB_RAW) {
1195 int toread = min(oobreadlen,
1196 chip->ecc.layout->oobavail);
1197 if (toread) {
1198 oob = nand_transfer_oob(chip,
1199 oob, ops, toread);
1200 oobreadlen -= toread;
1201 }
1202 } else
1203 buf = nand_transfer_oob(chip,
1204 buf, ops, mtd->oobsize);
1205 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001206
William Juul52c07962007-10-31 13:53:06 +01001207 if (!(chip->options & NAND_NO_READRDY)) {
1208 /*
1209 * Apply delay or wait for ready/busy pin. Do
1210 * this before the AUTOINCR check, so no
1211 * problems arise if a chip which does auto
1212 * increment is marked as NOAUTOINCR by the
1213 * board driver.
1214 */
1215 if (!chip->dev_ready)
1216 udelay(chip->chip_delay);
1217 else
1218 nand_wait_ready(mtd);
1219 }
1220 } else {
1221 memcpy(buf, chip->buffers->databuf + col, bytes);
1222 buf += bytes;
1223 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001224
William Juul52c07962007-10-31 13:53:06 +01001225 readlen -= bytes;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001226
William Juul52c07962007-10-31 13:53:06 +01001227 if (!readlen)
1228 break;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001229
William Juul52c07962007-10-31 13:53:06 +01001230 /* For subsequent reads align to page boundary. */
1231 col = 0;
1232 /* Increment page address */
1233 realpage++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001234
William Juul52c07962007-10-31 13:53:06 +01001235 page = realpage & chip->pagemask;
1236 /* Check, if we cross a chip boundary */
1237 if (!page) {
1238 chipnr++;
1239 chip->select_chip(mtd, -1);
1240 chip->select_chip(mtd, chipnr);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001241 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001242
William Juul52c07962007-10-31 13:53:06 +01001243 /* Check, if the chip supports auto page increment
1244 * or if we have hit a block boundary.
1245 */
1246 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1247 sndcmd = 1;
1248 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001249
William Juul52c07962007-10-31 13:53:06 +01001250 ops->retlen = ops->len - (size_t) readlen;
1251 if (oob)
1252 ops->oobretlen = ops->ooblen - oobreadlen;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001253
William Juul52c07962007-10-31 13:53:06 +01001254 if (ret)
1255 return ret;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001256
William Juul52c07962007-10-31 13:53:06 +01001257 if (mtd->ecc_stats.failed - stats.failed)
1258 return -EBADMSG;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001259
Wolfgang Denka4de8352011-02-02 22:36:10 +01001260 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
William Juul52c07962007-10-31 13:53:06 +01001261}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001262
William Juul52c07962007-10-31 13:53:06 +01001263/**
1264 * nand_read - [MTD Interface] MTD compability function for nand_do_read_ecc
1265 * @mtd: MTD device structure
1266 * @from: offset to read from
1267 * @len: number of bytes to read
1268 * @retlen: pointer to variable to store the number of read bytes
1269 * @buf: the databuffer to put data
1270 *
1271 * Get hold of the chip and call nand_do_read
1272 */
1273static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1274 size_t *retlen, uint8_t *buf)
1275{
1276 struct nand_chip *chip = mtd->priv;
1277 int ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001278
William Juul52c07962007-10-31 13:53:06 +01001279 /* Do not allow reads past end of device */
1280 if ((from + len) > mtd->size)
1281 return -EINVAL;
1282 if (!len)
1283 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001284
William Juul52c07962007-10-31 13:53:06 +01001285 nand_get_device(chip, mtd, FL_READING);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001286
William Juul52c07962007-10-31 13:53:06 +01001287 chip->ops.len = len;
1288 chip->ops.datbuf = buf;
1289 chip->ops.oobbuf = NULL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001290
William Juul52c07962007-10-31 13:53:06 +01001291 ret = nand_do_read_ops(mtd, from, &chip->ops);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001292
William Juul52c07962007-10-31 13:53:06 +01001293 *retlen = chip->ops.retlen;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001294
William Juul52c07962007-10-31 13:53:06 +01001295 nand_release_device(mtd);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001296
William Juul52c07962007-10-31 13:53:06 +01001297 return ret;
1298}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001299
William Juul52c07962007-10-31 13:53:06 +01001300/**
1301 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1302 * @mtd: mtd info structure
1303 * @chip: nand chip info structure
1304 * @page: page number to read
1305 * @sndcmd: flag whether to issue read command or not
1306 */
1307static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1308 int page, int sndcmd)
1309{
1310 if (sndcmd) {
1311 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1312 sndcmd = 0;
1313 }
1314 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1315 return sndcmd;
1316}
1317
1318/**
1319 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1320 * with syndromes
1321 * @mtd: mtd info structure
1322 * @chip: nand chip info structure
1323 * @page: page number to read
1324 * @sndcmd: flag whether to issue read command or not
1325 */
1326static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1327 int page, int sndcmd)
1328{
1329 uint8_t *buf = chip->oob_poi;
1330 int length = mtd->oobsize;
1331 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1332 int eccsize = chip->ecc.size;
1333 uint8_t *bufpoi = buf;
1334 int i, toread, sndrnd = 0, pos;
1335
1336 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1337 for (i = 0; i < chip->ecc.steps; i++) {
1338 if (sndrnd) {
1339 pos = eccsize + i * (eccsize + chunk);
1340 if (mtd->writesize > 512)
1341 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1342 else
1343 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001344 } else
William Juul52c07962007-10-31 13:53:06 +01001345 sndrnd = 1;
1346 toread = min_t(int, length, chunk);
1347 chip->read_buf(mtd, bufpoi, toread);
1348 bufpoi += toread;
1349 length -= toread;
1350 }
1351 if (length > 0)
1352 chip->read_buf(mtd, bufpoi, length);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001353
William Juul52c07962007-10-31 13:53:06 +01001354 return 1;
1355}
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001356
William Juul52c07962007-10-31 13:53:06 +01001357/**
1358 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1359 * @mtd: mtd info structure
1360 * @chip: nand chip info structure
1361 * @page: page number to write
1362 */
1363static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1364 int page)
1365{
1366 int status = 0;
1367 const uint8_t *buf = chip->oob_poi;
1368 int length = mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001369
William Juul52c07962007-10-31 13:53:06 +01001370 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1371 chip->write_buf(mtd, buf, length);
1372 /* Send command to program the OOB data */
1373 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001374
William Juul52c07962007-10-31 13:53:06 +01001375 status = chip->waitfunc(mtd, chip);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001376
William Juul52c07962007-10-31 13:53:06 +01001377 return status & NAND_STATUS_FAIL ? -EIO : 0;
1378}
1379
1380/**
1381 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1382 * with syndrome - only for large page flash !
1383 * @mtd: mtd info structure
1384 * @chip: nand chip info structure
1385 * @page: page number to write
1386 */
1387static int nand_write_oob_syndrome(struct mtd_info *mtd,
1388 struct nand_chip *chip, int page)
1389{
1390 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1391 int eccsize = chip->ecc.size, length = mtd->oobsize;
1392 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1393 const uint8_t *bufpoi = chip->oob_poi;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001394
1395 /*
William Juul52c07962007-10-31 13:53:06 +01001396 * data-ecc-data-ecc ... ecc-oob
1397 * or
1398 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001399 */
William Juul52c07962007-10-31 13:53:06 +01001400 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1401 pos = steps * (eccsize + chunk);
1402 steps = 0;
1403 } else
1404 pos = eccsize;
1405
1406 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1407 for (i = 0; i < steps; i++) {
1408 if (sndcmd) {
1409 if (mtd->writesize <= 512) {
1410 uint32_t fill = 0xFFFFFFFF;
1411
1412 len = eccsize;
1413 while (len > 0) {
1414 int num = min_t(int, len, 4);
1415 chip->write_buf(mtd, (uint8_t *)&fill,
1416 num);
1417 len -= num;
1418 }
1419 } else {
1420 pos = eccsize + i * (eccsize + chunk);
1421 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1422 }
1423 } else
1424 sndcmd = 1;
1425 len = min_t(int, length, chunk);
1426 chip->write_buf(mtd, bufpoi, len);
1427 bufpoi += len;
1428 length -= len;
1429 }
1430 if (length > 0)
1431 chip->write_buf(mtd, bufpoi, length);
1432
1433 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1434 status = chip->waitfunc(mtd, chip);
1435
1436 return status & NAND_STATUS_FAIL ? -EIO : 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001437}
1438
1439/**
William Juul52c07962007-10-31 13:53:06 +01001440 * nand_do_read_oob - [Intern] NAND read out-of-band
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001441 * @mtd: MTD device structure
1442 * @from: offset to read from
William Juul52c07962007-10-31 13:53:06 +01001443 * @ops: oob operations description structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001444 *
1445 * NAND read out-of-band data from the spare area
1446 */
William Juul52c07962007-10-31 13:53:06 +01001447static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1448 struct mtd_oob_ops *ops)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001449{
William Juul52c07962007-10-31 13:53:06 +01001450 int page, realpage, chipnr, sndcmd = 1;
1451 struct nand_chip *chip = mtd->priv;
1452 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1453 int readlen = ops->ooblen;
1454 int len;
1455 uint8_t *buf = ops->oobbuf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001456
William Juul52c07962007-10-31 13:53:06 +01001457 MTDDEBUG (MTD_DEBUG_LEVEL3, "nand_read_oob: from = 0x%08Lx, len = %i\n",
Wolfgang Denka4de8352011-02-02 22:36:10 +01001458 (unsigned long long)from, readlen);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001459
William Juul52c07962007-10-31 13:53:06 +01001460 if (ops->mode == MTD_OOB_AUTO)
1461 len = chip->ecc.layout->oobavail;
1462 else
1463 len = mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001464
William Juul52c07962007-10-31 13:53:06 +01001465 if (unlikely(ops->ooboffs >= len)) {
1466 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01001467 "Attempt to start read outside oob\n");
William Juul52c07962007-10-31 13:53:06 +01001468 return -EINVAL;
1469 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001470
1471 /* Do not allow reads past end of device */
William Juul52c07962007-10-31 13:53:06 +01001472 if (unlikely(from >= mtd->size ||
1473 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1474 (from >> chip->page_shift)) * len)) {
1475 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01001476 "Attempt read beyond end of device\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001477 return -EINVAL;
1478 }
1479
William Juul52c07962007-10-31 13:53:06 +01001480 chipnr = (int)(from >> chip->chip_shift);
1481 chip->select_chip(mtd, chipnr);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001482
William Juul52c07962007-10-31 13:53:06 +01001483 /* Shift to get page */
1484 realpage = (int)(from >> chip->page_shift);
1485 page = realpage & chip->pagemask;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001486
William Juul52c07962007-10-31 13:53:06 +01001487 while(1) {
1488 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001489
William Juul52c07962007-10-31 13:53:06 +01001490 len = min(len, readlen);
1491 buf = nand_transfer_oob(chip, buf, ops, len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001492
William Juul52c07962007-10-31 13:53:06 +01001493 if (!(chip->options & NAND_NO_READRDY)) {
1494 /*
1495 * Apply delay or wait for ready/busy pin. Do this
1496 * before the AUTOINCR check, so no problems arise if a
1497 * chip which does auto increment is marked as
1498 * NOAUTOINCR by the board driver.
1499 */
1500 if (!chip->dev_ready)
1501 udelay(chip->chip_delay);
1502 else
1503 nand_wait_ready(mtd);
1504 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001505
William Juul52c07962007-10-31 13:53:06 +01001506 readlen -= len;
1507 if (!readlen)
1508 break;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001509
William Juul52c07962007-10-31 13:53:06 +01001510 /* Increment page address */
1511 realpage++;
1512
1513 page = realpage & chip->pagemask;
1514 /* Check, if we cross a chip boundary */
1515 if (!page) {
1516 chipnr++;
1517 chip->select_chip(mtd, -1);
1518 chip->select_chip(mtd, chipnr);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001519 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001520
William Juul52c07962007-10-31 13:53:06 +01001521 /* Check, if the chip supports auto page increment
1522 * or if we have hit a block boundary.
1523 */
1524 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1525 sndcmd = 1;
1526 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001527
William Juul52c07962007-10-31 13:53:06 +01001528 ops->oobretlen = ops->ooblen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001529 return 0;
1530}
1531
1532/**
William Juul52c07962007-10-31 13:53:06 +01001533 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001534 * @mtd: MTD device structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001535 * @from: offset to read from
William Juul52c07962007-10-31 13:53:06 +01001536 * @ops: oob operation description structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001537 *
William Juul52c07962007-10-31 13:53:06 +01001538 * NAND read data and/or out-of-band data
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001539 */
William Juul52c07962007-10-31 13:53:06 +01001540static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1541 struct mtd_oob_ops *ops)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001542{
William Juul52c07962007-10-31 13:53:06 +01001543 struct nand_chip *chip = mtd->priv;
1544 int ret = -ENOTSUPP;
1545
1546 ops->retlen = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001547
1548 /* Do not allow reads past end of device */
William Juul52c07962007-10-31 13:53:06 +01001549 if (ops->datbuf && (from + ops->len) > mtd->size) {
1550 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01001551 "Attempt read beyond end of device\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001552 return -EINVAL;
1553 }
1554
William Juul52c07962007-10-31 13:53:06 +01001555 nand_get_device(chip, mtd, FL_READING);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001556
William Juul52c07962007-10-31 13:53:06 +01001557 switch(ops->mode) {
1558 case MTD_OOB_PLACE:
1559 case MTD_OOB_AUTO:
1560 case MTD_OOB_RAW:
1561 break;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001562
William Juul52c07962007-10-31 13:53:06 +01001563 default:
1564 goto out;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001565 }
1566
William Juul52c07962007-10-31 13:53:06 +01001567 if (!ops->datbuf)
1568 ret = nand_do_read_oob(mtd, from, ops);
1569 else
1570 ret = nand_do_read_ops(mtd, from, ops);
1571
1572 out:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001573 nand_release_device(mtd);
William Juul52c07962007-10-31 13:53:06 +01001574 return ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001575}
1576
1577
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001578/**
William Juul52c07962007-10-31 13:53:06 +01001579 * nand_write_page_raw - [Intern] raw page write function
1580 * @mtd: mtd info structure
1581 * @chip: nand chip info structure
1582 * @buf: data buffer
David Brownellee86b8d2009-11-07 16:27:01 -05001583 *
1584 * Not for syndrome calculating ecc controllers, which use a special oob layout
William Juul52c07962007-10-31 13:53:06 +01001585 */
1586static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1587 const uint8_t *buf)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001588{
William Juul52c07962007-10-31 13:53:06 +01001589 chip->write_buf(mtd, buf, mtd->writesize);
1590 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1591}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001592
William Juul52c07962007-10-31 13:53:06 +01001593/**
David Brownellee86b8d2009-11-07 16:27:01 -05001594 * nand_write_page_raw_syndrome - [Intern] raw page write function
1595 * @mtd: mtd info structure
1596 * @chip: nand chip info structure
1597 * @buf: data buffer
1598 *
1599 * We need a special oob layout and handling even when ECC isn't checked.
1600 */
1601static void nand_write_page_raw_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1602 const uint8_t *buf)
1603{
1604 int eccsize = chip->ecc.size;
1605 int eccbytes = chip->ecc.bytes;
1606 uint8_t *oob = chip->oob_poi;
1607 int steps, size;
1608
1609 for (steps = chip->ecc.steps; steps > 0; steps--) {
1610 chip->write_buf(mtd, buf, eccsize);
1611 buf += eccsize;
1612
1613 if (chip->ecc.prepad) {
1614 chip->write_buf(mtd, oob, chip->ecc.prepad);
1615 oob += chip->ecc.prepad;
1616 }
1617
1618 chip->read_buf(mtd, oob, eccbytes);
1619 oob += eccbytes;
1620
1621 if (chip->ecc.postpad) {
1622 chip->write_buf(mtd, oob, chip->ecc.postpad);
1623 oob += chip->ecc.postpad;
1624 }
1625 }
1626
1627 size = mtd->oobsize - (oob - chip->oob_poi);
1628 if (size)
1629 chip->write_buf(mtd, oob, size);
1630}
1631/**
William Juul52c07962007-10-31 13:53:06 +01001632 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
1633 * @mtd: mtd info structure
1634 * @chip: nand chip info structure
1635 * @buf: data buffer
1636 */
1637static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1638 const uint8_t *buf)
1639{
1640 int i, eccsize = chip->ecc.size;
1641 int eccbytes = chip->ecc.bytes;
1642 int eccsteps = chip->ecc.steps;
1643 uint8_t *ecc_calc = chip->buffers->ecccalc;
1644 const uint8_t *p = buf;
1645 uint32_t *eccpos = chip->ecc.layout->eccpos;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001646
William Juul52c07962007-10-31 13:53:06 +01001647 /* Software ecc calculation */
1648 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1649 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001650
William Juul52c07962007-10-31 13:53:06 +01001651 for (i = 0; i < chip->ecc.total; i++)
1652 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001653
William Juul52c07962007-10-31 13:53:06 +01001654 chip->ecc.write_page_raw(mtd, chip, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001655}
1656
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001657/**
William Juul52c07962007-10-31 13:53:06 +01001658 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
1659 * @mtd: mtd info structure
1660 * @chip: nand chip info structure
1661 * @buf: data buffer
1662 */
1663static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1664 const uint8_t *buf)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001665{
William Juul52c07962007-10-31 13:53:06 +01001666 int i, eccsize = chip->ecc.size;
1667 int eccbytes = chip->ecc.bytes;
1668 int eccsteps = chip->ecc.steps;
1669 uint8_t *ecc_calc = chip->buffers->ecccalc;
1670 const uint8_t *p = buf;
1671 uint32_t *eccpos = chip->ecc.layout->eccpos;
1672
1673 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1674 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1675 chip->write_buf(mtd, p, eccsize);
1676 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1677 }
1678
1679 for (i = 0; i < chip->ecc.total; i++)
1680 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1681
1682 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001683}
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001684
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001685/**
William Juul52c07962007-10-31 13:53:06 +01001686 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
1687 * @mtd: mtd info structure
1688 * @chip: nand chip info structure
1689 * @buf: data buffer
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001690 *
William Juul52c07962007-10-31 13:53:06 +01001691 * The hw generator calculates the error syndrome automatically. Therefor
1692 * we need a special oob layout and handling.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001693 */
William Juul52c07962007-10-31 13:53:06 +01001694static void nand_write_page_syndrome(struct mtd_info *mtd,
1695 struct nand_chip *chip, const uint8_t *buf)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001696{
William Juul52c07962007-10-31 13:53:06 +01001697 int i, eccsize = chip->ecc.size;
1698 int eccbytes = chip->ecc.bytes;
1699 int eccsteps = chip->ecc.steps;
1700 const uint8_t *p = buf;
1701 uint8_t *oob = chip->oob_poi;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001702
William Juul52c07962007-10-31 13:53:06 +01001703 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001704
William Juul52c07962007-10-31 13:53:06 +01001705 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1706 chip->write_buf(mtd, p, eccsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001707
William Juul52c07962007-10-31 13:53:06 +01001708 if (chip->ecc.prepad) {
1709 chip->write_buf(mtd, oob, chip->ecc.prepad);
1710 oob += chip->ecc.prepad;
1711 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001712
William Juul52c07962007-10-31 13:53:06 +01001713 chip->ecc.calculate(mtd, p, oob);
1714 chip->write_buf(mtd, oob, eccbytes);
1715 oob += eccbytes;
1716
1717 if (chip->ecc.postpad) {
1718 chip->write_buf(mtd, oob, chip->ecc.postpad);
1719 oob += chip->ecc.postpad;
1720 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001721 }
1722
William Juul52c07962007-10-31 13:53:06 +01001723 /* Calculate remaining oob bytes */
1724 i = mtd->oobsize - (oob - chip->oob_poi);
1725 if (i)
1726 chip->write_buf(mtd, oob, i);
1727}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001728
William Juul52c07962007-10-31 13:53:06 +01001729/**
1730 * nand_write_page - [REPLACEABLE] write one page
1731 * @mtd: MTD device structure
1732 * @chip: NAND chip descriptor
1733 * @buf: the data to write
1734 * @page: page number to write
1735 * @cached: cached programming
1736 * @raw: use _raw version of write_page
1737 */
1738static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
1739 const uint8_t *buf, int page, int cached, int raw)
1740{
1741 int status;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001742
William Juul52c07962007-10-31 13:53:06 +01001743 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
1744
1745 if (unlikely(raw))
1746 chip->ecc.write_page_raw(mtd, chip, buf);
1747 else
1748 chip->ecc.write_page(mtd, chip, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001749
William Juul52c07962007-10-31 13:53:06 +01001750 /*
1751 * Cached progamming disabled for now, Not sure if its worth the
1752 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
1753 */
1754 cached = 0;
1755
1756 if (!cached || !(chip->options & NAND_CACHEPRG)) {
1757
1758 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1759 status = chip->waitfunc(mtd, chip);
1760 /*
1761 * See if operation failed and additional status checks are
1762 * available
1763 */
1764 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
1765 status = chip->errstat(mtd, chip, FL_WRITING, status,
1766 page);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001767
William Juul52c07962007-10-31 13:53:06 +01001768 if (status & NAND_STATUS_FAIL)
1769 return -EIO;
1770 } else {
1771 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
1772 status = chip->waitfunc(mtd, chip);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001773 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001774
William Juul52c07962007-10-31 13:53:06 +01001775#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
1776 /* Send command to read back the data */
1777 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001778
William Juul52c07962007-10-31 13:53:06 +01001779 if (chip->verify_buf(mtd, buf, mtd->writesize))
1780 return -EIO;
1781#endif
1782 return 0;
1783}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001784
William Juul52c07962007-10-31 13:53:06 +01001785/**
1786 * nand_fill_oob - [Internal] Transfer client buffer to oob
1787 * @chip: nand chip structure
1788 * @oob: oob data buffer
1789 * @ops: oob ops structure
1790 */
1791static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob,
1792 struct mtd_oob_ops *ops)
1793{
1794 size_t len = ops->ooblen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001795
William Juul52c07962007-10-31 13:53:06 +01001796 switch(ops->mode) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001797
William Juul52c07962007-10-31 13:53:06 +01001798 case MTD_OOB_PLACE:
1799 case MTD_OOB_RAW:
1800 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
1801 return oob + len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001802
William Juul52c07962007-10-31 13:53:06 +01001803 case MTD_OOB_AUTO: {
1804 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1805 uint32_t boffs = 0, woffs = ops->ooboffs;
1806 size_t bytes = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001807
William Juul52c07962007-10-31 13:53:06 +01001808 for(; free->length && len; free++, len -= bytes) {
1809 /* Write request not from offset 0 ? */
1810 if (unlikely(woffs)) {
1811 if (woffs >= free->length) {
1812 woffs -= free->length;
1813 continue;
1814 }
1815 boffs = free->offset + woffs;
1816 bytes = min_t(size_t, len,
1817 (free->length - woffs));
1818 woffs = 0;
1819 } else {
1820 bytes = min_t(size_t, len, free->length);
1821 boffs = free->offset;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001822 }
William Juul52c07962007-10-31 13:53:06 +01001823 memcpy(chip->oob_poi + boffs, oob, bytes);
1824 oob += bytes;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001825 }
William Juul52c07962007-10-31 13:53:06 +01001826 return oob;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001827 }
William Juul52c07962007-10-31 13:53:06 +01001828 default:
1829 BUG();
1830 }
1831 return NULL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001832}
1833
William Juul52c07962007-10-31 13:53:06 +01001834#define NOTALIGNED(x) (x & (chip->subpagesize - 1)) != 0
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001835
1836/**
William Juul52c07962007-10-31 13:53:06 +01001837 * nand_do_write_ops - [Internal] NAND write with ECC
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001838 * @mtd: MTD device structure
1839 * @to: offset to write to
William Juul52c07962007-10-31 13:53:06 +01001840 * @ops: oob operations description structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001841 *
William Juul52c07962007-10-31 13:53:06 +01001842 * NAND write with ECC
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001843 */
William Juul52c07962007-10-31 13:53:06 +01001844static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
1845 struct mtd_oob_ops *ops)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001846{
William Juul52c07962007-10-31 13:53:06 +01001847 int chipnr, realpage, page, blockmask, column;
1848 struct nand_chip *chip = mtd->priv;
1849 uint32_t writelen = ops->len;
1850 uint8_t *oob = ops->oobbuf;
1851 uint8_t *buf = ops->datbuf;
1852 int ret, subpage;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001853
William Juul52c07962007-10-31 13:53:06 +01001854 ops->retlen = 0;
1855 if (!writelen)
1856 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001857
William Juul52c07962007-10-31 13:53:06 +01001858 column = to & (mtd->writesize - 1);
1859 subpage = column || (writelen & (mtd->writesize - 1));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001860
William Juul52c07962007-10-31 13:53:06 +01001861 if (subpage && oob)
1862 return -EINVAL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001863
William Juul52c07962007-10-31 13:53:06 +01001864 chipnr = (int)(to >> chip->chip_shift);
1865 chip->select_chip(mtd, chipnr);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001866
1867 /* Check, if it is write protected */
William Juul52c07962007-10-31 13:53:06 +01001868 if (nand_check_wp(mtd)) {
1869 printk (KERN_NOTICE "nand_do_write_ops: Device is write protected\n");
1870 return -EIO;
1871 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001872
William Juul52c07962007-10-31 13:53:06 +01001873 realpage = (int)(to >> chip->page_shift);
1874 page = realpage & chip->pagemask;
1875 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001876
William Juul52c07962007-10-31 13:53:06 +01001877 /* Invalidate the page cache, when we write to the cached page */
1878 if (to <= (chip->pagebuf << chip->page_shift) &&
1879 (chip->pagebuf << chip->page_shift) < (to + ops->len))
1880 chip->pagebuf = -1;
1881
1882 /* If we're not given explicit OOB data, let it be 0xFF */
1883 if (likely(!oob))
1884 memset(chip->oob_poi, 0xff, mtd->oobsize);
1885
1886 while(1) {
1887 int bytes = mtd->writesize;
1888 int cached = writelen > bytes && page != blockmask;
1889 uint8_t *wbuf = buf;
1890
1891 /* Partial page write ? */
1892 if (unlikely(column || writelen < (mtd->writesize - 1))) {
1893 cached = 0;
1894 bytes = min_t(int, bytes - column, (int) writelen);
1895 chip->pagebuf = -1;
1896 memset(chip->buffers->databuf, 0xff, mtd->writesize);
1897 memcpy(&chip->buffers->databuf[column], buf, bytes);
1898 wbuf = chip->buffers->databuf;
Sergei Poselenov04fbaa02008-06-06 15:42:43 +02001899 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001900
William Juul52c07962007-10-31 13:53:06 +01001901 if (unlikely(oob))
1902 oob = nand_fill_oob(chip, oob, ops);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001903
William Juul52c07962007-10-31 13:53:06 +01001904 ret = chip->write_page(mtd, chip, wbuf, page, cached,
1905 (ops->mode == MTD_OOB_RAW));
1906 if (ret)
1907 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001908
William Juul52c07962007-10-31 13:53:06 +01001909 writelen -= bytes;
1910 if (!writelen)
1911 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001912
William Juul52c07962007-10-31 13:53:06 +01001913 column = 0;
1914 buf += bytes;
1915 realpage++;
1916
1917 page = realpage & chip->pagemask;
1918 /* Check, if we cross a chip boundary */
1919 if (!page) {
1920 chipnr++;
1921 chip->select_chip(mtd, -1);
1922 chip->select_chip(mtd, chipnr);
1923 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001924 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001925
William Juul52c07962007-10-31 13:53:06 +01001926 ops->retlen = ops->len - writelen;
1927 if (unlikely(oob))
1928 ops->oobretlen = ops->ooblen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001929 return ret;
1930}
1931
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001932/**
William Juul52c07962007-10-31 13:53:06 +01001933 * nand_write - [MTD Interface] NAND write with ECC
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001934 * @mtd: MTD device structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001935 * @to: offset to write to
William Juul52c07962007-10-31 13:53:06 +01001936 * @len: number of bytes to write
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001937 * @retlen: pointer to variable to store the number of written bytes
William Juul52c07962007-10-31 13:53:06 +01001938 * @buf: the data to write
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001939 *
William Juul52c07962007-10-31 13:53:06 +01001940 * NAND write with ECC
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001941 */
William Juul52c07962007-10-31 13:53:06 +01001942static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
1943 size_t *retlen, const uint8_t *buf)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001944{
William Juul52c07962007-10-31 13:53:06 +01001945 struct nand_chip *chip = mtd->priv;
1946 int ret;
1947
1948 /* Do not allow reads past end of device */
1949 if ((to + len) > mtd->size)
1950 return -EINVAL;
1951 if (!len)
1952 return 0;
1953
1954 nand_get_device(chip, mtd, FL_WRITING);
1955
1956 chip->ops.len = len;
1957 chip->ops.datbuf = (uint8_t *)buf;
1958 chip->ops.oobbuf = NULL;
1959
1960 ret = nand_do_write_ops(mtd, to, &chip->ops);
1961
1962 *retlen = chip->ops.retlen;
1963
1964 nand_release_device(mtd);
1965
1966 return ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001967}
1968
1969/**
William Juul52c07962007-10-31 13:53:06 +01001970 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001971 * @mtd: MTD device structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001972 * @to: offset to write to
William Juul52c07962007-10-31 13:53:06 +01001973 * @ops: oob operation description structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001974 *
William Juul52c07962007-10-31 13:53:06 +01001975 * NAND write out-of-band
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001976 */
William Juul52c07962007-10-31 13:53:06 +01001977static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
1978 struct mtd_oob_ops *ops)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001979{
William Juul52c07962007-10-31 13:53:06 +01001980 int chipnr, page, status, len;
1981 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001982
William Juul52c07962007-10-31 13:53:06 +01001983 MTDDEBUG (MTD_DEBUG_LEVEL3, "nand_write_oob: to = 0x%08x, len = %i\n",
Wolfgang Denka4de8352011-02-02 22:36:10 +01001984 (unsigned int)to, (int)ops->ooblen);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001985
William Juul52c07962007-10-31 13:53:06 +01001986 if (ops->mode == MTD_OOB_AUTO)
1987 len = chip->ecc.layout->oobavail;
1988 else
1989 len = mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001990
1991 /* Do not allow write past end of page */
William Juul52c07962007-10-31 13:53:06 +01001992 if ((ops->ooboffs + ops->ooblen) > len) {
1993 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_write_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01001994 "Attempt to write past end of page\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001995 return -EINVAL;
1996 }
1997
William Juul52c07962007-10-31 13:53:06 +01001998 if (unlikely(ops->ooboffs >= len)) {
1999 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01002000 "Attempt to start write outside oob\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002001 return -EINVAL;
2002 }
2003
William Juul52c07962007-10-31 13:53:06 +01002004 /* Do not allow reads past end of device */
2005 if (unlikely(to >= mtd->size ||
2006 ops->ooboffs + ops->ooblen >
2007 ((mtd->size >> chip->page_shift) -
2008 (to >> chip->page_shift)) * len)) {
2009 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01002010 "Attempt write beyond end of device\n");
William Juul52c07962007-10-31 13:53:06 +01002011 return -EINVAL;
2012 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002013
William Juul52c07962007-10-31 13:53:06 +01002014 chipnr = (int)(to >> chip->chip_shift);
2015 chip->select_chip(mtd, chipnr);
2016
2017 /* Shift to get page */
2018 page = (int)(to >> chip->page_shift);
2019
2020 /*
2021 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2022 * of my DiskOnChip 2000 test units) will clear the whole data page too
2023 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2024 * it in the doc2000 driver in August 1999. dwmw2.
2025 */
2026 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002027
2028 /* Check, if it is write protected */
2029 if (nand_check_wp(mtd))
William Juul52c07962007-10-31 13:53:06 +01002030 return -EROFS;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002031
William Juul52c07962007-10-31 13:53:06 +01002032 /* Invalidate the page cache, if we write to the cached page */
2033 if (page == chip->pagebuf)
2034 chip->pagebuf = -1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002035
William Juul52c07962007-10-31 13:53:06 +01002036 memset(chip->oob_poi, 0xff, mtd->oobsize);
2037 nand_fill_oob(chip, ops->oobbuf, ops);
2038 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2039 memset(chip->oob_poi, 0xff, mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002040
William Juul52c07962007-10-31 13:53:06 +01002041 if (status)
2042 return status;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002043
William Juul52c07962007-10-31 13:53:06 +01002044 ops->oobretlen = ops->ooblen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002045
William Juul52c07962007-10-31 13:53:06 +01002046 return 0;
2047}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002048
William Juul52c07962007-10-31 13:53:06 +01002049/**
2050 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2051 * @mtd: MTD device structure
2052 * @to: offset to write to
2053 * @ops: oob operation description structure
2054 */
2055static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2056 struct mtd_oob_ops *ops)
2057{
2058 struct nand_chip *chip = mtd->priv;
2059 int ret = -ENOTSUPP;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002060
William Juul52c07962007-10-31 13:53:06 +01002061 ops->retlen = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002062
William Juul52c07962007-10-31 13:53:06 +01002063 /* Do not allow writes past end of device */
2064 if (ops->datbuf && (to + ops->len) > mtd->size) {
2065 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_read_oob: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01002066 "Attempt read beyond end of device\n");
William Juul52c07962007-10-31 13:53:06 +01002067 return -EINVAL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002068 }
William Juul52c07962007-10-31 13:53:06 +01002069
2070 nand_get_device(chip, mtd, FL_WRITING);
2071
2072 switch(ops->mode) {
2073 case MTD_OOB_PLACE:
2074 case MTD_OOB_AUTO:
2075 case MTD_OOB_RAW:
2076 break;
2077
2078 default:
2079 goto out;
2080 }
2081
2082 if (!ops->datbuf)
2083 ret = nand_do_write_oob(mtd, to, ops);
2084 else
2085 ret = nand_do_write_ops(mtd, to, ops);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002086
William Juul52c07962007-10-31 13:53:06 +01002087 out:
2088 nand_release_device(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002089 return ret;
2090}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002091
2092/**
2093 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2094 * @mtd: MTD device structure
2095 * @page: the page address of the block which will be erased
2096 *
2097 * Standard erase command for NAND chips
2098 */
William Juul52c07962007-10-31 13:53:06 +01002099static void single_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002100{
William Juul52c07962007-10-31 13:53:06 +01002101 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002102 /* Send commands to erase a block */
William Juul52c07962007-10-31 13:53:06 +01002103 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2104 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002105}
2106
2107/**
2108 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2109 * @mtd: MTD device structure
2110 * @page: the page address of the block which will be erased
2111 *
2112 * AND multi block erase command function
2113 * Erase 4 consecutive blocks
2114 */
William Juul52c07962007-10-31 13:53:06 +01002115static void multi_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002116{
William Juul52c07962007-10-31 13:53:06 +01002117 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002118 /* Send commands to erase a block */
William Juul52c07962007-10-31 13:53:06 +01002119 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2120 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2121 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2122 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2123 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002124}
2125
2126/**
2127 * nand_erase - [MTD Interface] erase block(s)
2128 * @mtd: MTD device structure
2129 * @instr: erase instruction
2130 *
2131 * Erase one ore more blocks
2132 */
William Juul52c07962007-10-31 13:53:06 +01002133static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002134{
William Juul52c07962007-10-31 13:53:06 +01002135 return nand_erase_nand(mtd, instr, 0);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002136}
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002137
William Juul52c07962007-10-31 13:53:06 +01002138#define BBT_PAGE_MASK 0xffffff3f
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002139/**
William Juul52c07962007-10-31 13:53:06 +01002140 * nand_erase_nand - [Internal] erase block(s)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002141 * @mtd: MTD device structure
2142 * @instr: erase instruction
2143 * @allowbbt: allow erasing the bbt area
2144 *
2145 * Erase one ore more blocks
2146 */
William Juul52c07962007-10-31 13:53:06 +01002147int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2148 int allowbbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002149{
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002150 int page, status, pages_per_block, ret, chipnr;
William Juul52c07962007-10-31 13:53:06 +01002151 struct nand_chip *chip = mtd->priv;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002152 loff_t rewrite_bbt[CONFIG_SYS_NAND_MAX_CHIPS] = {0};
William Juul52c07962007-10-31 13:53:06 +01002153 unsigned int bbt_masked_page = 0xffffffff;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002154 loff_t len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002155
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002156 MTDDEBUG(MTD_DEBUG_LEVEL3, "nand_erase: start = 0x%012llx, "
2157 "len = %llu\n", (unsigned long long) instr->addr,
2158 (unsigned long long) instr->len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002159
2160 /* Start address must align on block boundary */
William Juul52c07962007-10-31 13:53:06 +01002161 if (instr->addr & ((1 << chip->phys_erase_shift) - 1)) {
Scott Wooddf83c472008-06-20 12:38:57 -05002162 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_erase: Unaligned address\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002163 return -EINVAL;
2164 }
2165
2166 /* Length must align on block boundary */
William Juul52c07962007-10-31 13:53:06 +01002167 if (instr->len & ((1 << chip->phys_erase_shift) - 1)) {
Scott Wooddf83c472008-06-20 12:38:57 -05002168 MTDDEBUG (MTD_DEBUG_LEVEL0,
Wolfgang Denka4de8352011-02-02 22:36:10 +01002169 "nand_erase: Length not block aligned\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002170 return -EINVAL;
2171 }
2172
2173 /* Do not allow erase past end of device */
2174 if ((instr->len + instr->addr) > mtd->size) {
Scott Wooddf83c472008-06-20 12:38:57 -05002175 MTDDEBUG (MTD_DEBUG_LEVEL0,
Wolfgang Denka4de8352011-02-02 22:36:10 +01002176 "nand_erase: Erase past end of device\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002177 return -EINVAL;
2178 }
2179
2180 instr->fail_addr = 0xffffffff;
2181
2182 /* Grab the lock and see if the device is available */
William Juul52c07962007-10-31 13:53:06 +01002183 nand_get_device(chip, mtd, FL_ERASING);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002184
2185 /* Shift to get first page */
William Juul52c07962007-10-31 13:53:06 +01002186 page = (int)(instr->addr >> chip->page_shift);
2187 chipnr = (int)(instr->addr >> chip->chip_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002188
2189 /* Calculate pages in each block */
William Juul52c07962007-10-31 13:53:06 +01002190 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
William Juulb76ec382007-11-08 10:39:53 +01002191
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002192 /* Select the NAND device */
William Juul52c07962007-10-31 13:53:06 +01002193 chip->select_chip(mtd, chipnr);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002194
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002195 /* Check, if it is write protected */
2196 if (nand_check_wp(mtd)) {
Scott Wooddf83c472008-06-20 12:38:57 -05002197 MTDDEBUG (MTD_DEBUG_LEVEL0,
Wolfgang Denka4de8352011-02-02 22:36:10 +01002198 "nand_erase: Device is write protected!!!\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002199 instr->state = MTD_ERASE_FAILED;
2200 goto erase_exit;
2201 }
2202
William Juul52c07962007-10-31 13:53:06 +01002203 /*
2204 * If BBT requires refresh, set the BBT page mask to see if the BBT
2205 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2206 * can not be matched. This is also done when the bbt is actually
2207 * erased to avoid recusrsive updates
2208 */
2209 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2210 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
2211
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002212 /* Loop through the pages */
2213 len = instr->len;
2214
2215 instr->state = MTD_ERASING;
2216
2217 while (len) {
William Juul52c07962007-10-31 13:53:06 +01002218 /*
2219 * heck if we have a bad block, we do not erase bad blocks !
2220 */
2221 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2222 chip->page_shift, 0, allowbbt)) {
2223 printk(KERN_WARNING "nand_erase: attempt to erase a "
2224 "bad block at page 0x%08x\n", page);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002225 instr->state = MTD_ERASE_FAILED;
2226 goto erase_exit;
2227 }
William Juul52c07962007-10-31 13:53:06 +01002228
2229 /*
2230 * Invalidate the page cache, if we erase the block which
2231 * contains the current cached page
2232 */
2233 if (page <= chip->pagebuf && chip->pagebuf <
2234 (page + pages_per_block))
2235 chip->pagebuf = -1;
2236
2237 chip->erase_cmd(mtd, page & chip->pagemask);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002238
William Juul52c07962007-10-31 13:53:06 +01002239 status = chip->waitfunc(mtd, chip);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002240
William Juul52c07962007-10-31 13:53:06 +01002241 /*
2242 * See if operation failed and additional status checks are
2243 * available
2244 */
2245 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2246 status = chip->errstat(mtd, chip, FL_ERASING,
2247 status, page);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002248
2249 /* See if block erase succeeded */
William Juul52c07962007-10-31 13:53:06 +01002250 if (status & NAND_STATUS_FAIL) {
Scott Wooddf83c472008-06-20 12:38:57 -05002251 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_erase: "
Wolfgang Denka4de8352011-02-02 22:36:10 +01002252 "Failed erase, page 0x%08x\n", page);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002253 instr->state = MTD_ERASE_FAILED;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002254 instr->fail_addr = ((loff_t)page << chip->page_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002255 goto erase_exit;
2256 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002257
William Juul52c07962007-10-31 13:53:06 +01002258 /*
2259 * If BBT requires refresh, set the BBT rewrite flag to the
2260 * page being erased
2261 */
2262 if (bbt_masked_page != 0xffffffff &&
2263 (page & BBT_PAGE_MASK) == bbt_masked_page)
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002264 rewrite_bbt[chipnr] =
2265 ((loff_t)page << chip->page_shift);
William Juul52c07962007-10-31 13:53:06 +01002266
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002267 /* Increment page address and decrement length */
William Juul52c07962007-10-31 13:53:06 +01002268 len -= (1 << chip->phys_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002269 page += pages_per_block;
2270
2271 /* Check, if we cross a chip boundary */
William Juul52c07962007-10-31 13:53:06 +01002272 if (len && !(page & chip->pagemask)) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002273 chipnr++;
William Juul52c07962007-10-31 13:53:06 +01002274 chip->select_chip(mtd, -1);
2275 chip->select_chip(mtd, chipnr);
2276
2277 /*
2278 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2279 * page mask to see if this BBT should be rewritten
2280 */
2281 if (bbt_masked_page != 0xffffffff &&
2282 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2283 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2284 BBT_PAGE_MASK;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002285 }
2286 }
2287 instr->state = MTD_ERASE_DONE;
2288
William Juul52c07962007-10-31 13:53:06 +01002289 erase_exit:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002290
2291 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002292
2293 /* Deselect and wake up anyone waiting on the device */
2294 nand_release_device(mtd);
2295
Scott Wood3628f002008-10-24 16:20:43 -05002296 /* Do call back function */
2297 if (!ret)
2298 mtd_erase_callback(instr);
2299
William Juul52c07962007-10-31 13:53:06 +01002300 /*
2301 * If BBT requires refresh and erase was successful, rewrite any
2302 * selected bad block tables
2303 */
2304 if (bbt_masked_page == 0xffffffff || ret)
2305 return ret;
2306
2307 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2308 if (!rewrite_bbt[chipnr])
2309 continue;
2310 /* update the BBT for chip */
2311 MTDDEBUG (MTD_DEBUG_LEVEL0, "nand_erase_nand: nand_update_bbt "
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002312 "(%d:0x%0llx 0x%0x)\n", chipnr, rewrite_bbt[chipnr],
2313 chip->bbt_td->pages[chipnr]);
William Juul52c07962007-10-31 13:53:06 +01002314 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
2315 }
2316
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002317 /* Return more or less happy */
2318 return ret;
2319}
2320
2321/**
2322 * nand_sync - [MTD Interface] sync
2323 * @mtd: MTD device structure
2324 *
2325 * Sync is actually a wait for chip ready function
2326 */
William Juul52c07962007-10-31 13:53:06 +01002327static void nand_sync(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002328{
William Juul52c07962007-10-31 13:53:06 +01002329 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002330
Scott Wooddf83c472008-06-20 12:38:57 -05002331 MTDDEBUG (MTD_DEBUG_LEVEL3, "nand_sync: called\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002332
2333 /* Grab the lock and see if the device is available */
William Juul52c07962007-10-31 13:53:06 +01002334 nand_get_device(chip, mtd, FL_SYNCING);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002335 /* Release it and go back */
William Juul52c07962007-10-31 13:53:06 +01002336 nand_release_device(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002337}
2338
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002339/**
William Juul52c07962007-10-31 13:53:06 +01002340 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002341 * @mtd: MTD device structure
William Juul52c07962007-10-31 13:53:06 +01002342 * @offs: offset relative to mtd start
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002343 */
William Juul52c07962007-10-31 13:53:06 +01002344static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002345{
2346 /* Check for invalid offset */
William Juul52c07962007-10-31 13:53:06 +01002347 if (offs > mtd->size)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002348 return -EINVAL;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002349
William Juul52c07962007-10-31 13:53:06 +01002350 return nand_block_checkbad(mtd, offs, 1, 0);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002351}
2352
2353/**
William Juul52c07962007-10-31 13:53:06 +01002354 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002355 * @mtd: MTD device structure
2356 * @ofs: offset relative to mtd start
2357 */
William Juul52c07962007-10-31 13:53:06 +01002358static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002359{
William Juul52c07962007-10-31 13:53:06 +01002360 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002361 int ret;
2362
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002363 if ((ret = nand_block_isbad(mtd, ofs))) {
2364 /* If it was bad already, return success and do nothing. */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002365 if (ret > 0)
2366 return 0;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002367 return ret;
2368 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002369
William Juul52c07962007-10-31 13:53:06 +01002370 return chip->block_markbad(mtd, ofs);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002371}
2372
William Juul52c07962007-10-31 13:53:06 +01002373/*
2374 * Set default functions
2375 */
2376static void nand_set_defaults(struct nand_chip *chip, int busw)
2377{
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002378 /* check for proper chip_delay setup, set 20us if not */
William Juul52c07962007-10-31 13:53:06 +01002379 if (!chip->chip_delay)
2380 chip->chip_delay = 20;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002381
2382 /* check, if a user supplied command function given */
William Juul52c07962007-10-31 13:53:06 +01002383 if (chip->cmdfunc == NULL)
2384 chip->cmdfunc = nand_command;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002385
2386 /* check, if a user supplied wait function given */
William Juul52c07962007-10-31 13:53:06 +01002387 if (chip->waitfunc == NULL)
2388 chip->waitfunc = nand_wait;
2389
2390 if (!chip->select_chip)
2391 chip->select_chip = nand_select_chip;
2392 if (!chip->read_byte)
2393 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2394 if (!chip->read_word)
2395 chip->read_word = nand_read_word;
2396 if (!chip->block_bad)
2397 chip->block_bad = nand_block_bad;
2398 if (!chip->block_markbad)
2399 chip->block_markbad = nand_default_block_markbad;
2400 if (!chip->write_buf)
2401 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2402 if (!chip->read_buf)
2403 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2404 if (!chip->verify_buf)
2405 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2406 if (!chip->scan_bbt)
2407 chip->scan_bbt = nand_default_bbt;
Scott Woodda0f4392010-08-25 17:42:49 -05002408 if (!chip->controller)
William Juul52c07962007-10-31 13:53:06 +01002409 chip->controller = &chip->hwcontrol;
William Juul52c07962007-10-31 13:53:06 +01002410}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002411
William Juul52c07962007-10-31 13:53:06 +01002412/*
2413 * Get the flash and manufacturer id and lookup if the type is supported
2414 */
Mike Frysinger6c285f62010-10-20 01:15:21 +00002415static const struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
William Juul52c07962007-10-31 13:53:06 +01002416 struct nand_chip *chip,
Lei Wen75bde942011-01-06 09:48:18 +08002417 int busw, int *maf_id,
2418 const struct nand_flash_dev *type)
William Juul52c07962007-10-31 13:53:06 +01002419{
Lei Wen75bde942011-01-06 09:48:18 +08002420 int dev_id, maf_idx;
Scott Wood3628f002008-10-24 16:20:43 -05002421 int tmp_id, tmp_manf;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002422
2423 /* Select the device */
William Juul52c07962007-10-31 13:53:06 +01002424 chip->select_chip(mtd, 0);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002425
Karl Beldanb6322fc2008-09-15 16:08:03 +02002426 /*
2427 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2428 * after power-up
2429 */
2430 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2431
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002432 /* Send the command for reading device ID */
William Juul52c07962007-10-31 13:53:06 +01002433 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002434
2435 /* Read manufacturer and device IDs */
William Juul52c07962007-10-31 13:53:06 +01002436 *maf_id = chip->read_byte(mtd);
2437 dev_id = chip->read_byte(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002438
Scott Wood3628f002008-10-24 16:20:43 -05002439 /* Try again to make sure, as some systems the bus-hold or other
2440 * interface concerns can cause random data which looks like a
2441 * possibly credible NAND flash to appear. If the two results do
2442 * not match, ignore the device completely.
2443 */
2444
2445 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2446
2447 /* Read manufacturer and device IDs */
2448
2449 tmp_manf = chip->read_byte(mtd);
2450 tmp_id = chip->read_byte(mtd);
2451
2452 if (tmp_manf != *maf_id || tmp_id != dev_id) {
2453 printk(KERN_INFO "%s: second ID read did not match "
2454 "%02x,%02x against %02x,%02x\n", __func__,
2455 *maf_id, dev_id, tmp_manf, tmp_id);
2456 return ERR_PTR(-ENODEV);
2457 }
2458
Lei Wen75bde942011-01-06 09:48:18 +08002459 if (!type)
2460 type = nand_flash_ids;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002461
Lei Wen75bde942011-01-06 09:48:18 +08002462 for (; type->name != NULL; type++)
2463 if (dev_id == type->id)
Wolfgang Denka4de8352011-02-02 22:36:10 +01002464 break;
Lei Wen75bde942011-01-06 09:48:18 +08002465
2466 if (!type->name) {
Steve Sakomanb8fbc2b2010-08-19 20:14:01 -07002467 /* supress warning if there is no nand */
2468 if (*maf_id != 0x00 && *maf_id != 0xff &&
2469 dev_id != 0x00 && dev_id != 0xff)
2470 printk(KERN_INFO "%s: unknown NAND device: "
2471 "Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
2472 __func__, *maf_id, dev_id);
William Juul52c07962007-10-31 13:53:06 +01002473 return ERR_PTR(-ENODEV);
Florian Fainellid6191892010-06-12 20:59:25 +02002474 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002475
William Juul52c07962007-10-31 13:53:06 +01002476 if (!mtd->name)
2477 mtd->name = type->name;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002478
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002479 chip->chipsize = (uint64_t)type->chipsize << 20;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002480
William Juul52c07962007-10-31 13:53:06 +01002481 /* Newer devices have all the information in additional id bytes */
2482 if (!type->pagesize) {
2483 int extid;
2484 /* The 3rd id byte holds MLC / multichip data */
2485 chip->cellinfo = chip->read_byte(mtd);
2486 /* The 4th id byte is the important one */
2487 extid = chip->read_byte(mtd);
2488 /* Calc pagesize */
2489 mtd->writesize = 1024 << (extid & 0x3);
2490 extid >>= 2;
2491 /* Calc oobsize */
2492 mtd->oobsize = (8 << (extid & 0x01)) * (mtd->writesize >> 9);
2493 extid >>= 2;
2494 /* Calc blocksize. Blocksize is multiples of 64KiB */
2495 mtd->erasesize = (64 * 1024) << (extid & 0x03);
2496 extid >>= 2;
2497 /* Get buswidth information */
2498 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002499
William Juul52c07962007-10-31 13:53:06 +01002500 } else {
2501 /*
2502 * Old devices have chip data hardcoded in the device id table
2503 */
2504 mtd->erasesize = type->erasesize;
2505 mtd->writesize = type->pagesize;
2506 mtd->oobsize = mtd->writesize / 32;
2507 busw = type->options & NAND_BUSWIDTH_16;
2508 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002509
William Juul52c07962007-10-31 13:53:06 +01002510 /* Try to identify manufacturer */
2511 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
2512 if (nand_manuf_ids[maf_idx].id == *maf_id)
2513 break;
2514 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002515
William Juul52c07962007-10-31 13:53:06 +01002516 /*
2517 * Check, if buswidth is correct. Hardware drivers should set
2518 * chip correct !
2519 */
2520 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
2521 printk(KERN_INFO "NAND device: Manufacturer ID:"
2522 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
2523 dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
2524 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
2525 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
2526 busw ? 16 : 8);
2527 return ERR_PTR(-EINVAL);
2528 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002529
William Juul52c07962007-10-31 13:53:06 +01002530 /* Calculate the address shift from the page size */
2531 chip->page_shift = ffs(mtd->writesize) - 1;
2532 /* Convert chipsize to number of pages per chip -1. */
2533 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002534
William Juul52c07962007-10-31 13:53:06 +01002535 chip->bbt_erase_shift = chip->phys_erase_shift =
2536 ffs(mtd->erasesize) - 1;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002537 if (chip->chipsize & 0xffffffff)
Sandeep Paulraj1bc877c2009-11-07 14:24:06 -05002538 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -04002539 else
2540 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32)) + 31;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002541
William Juul52c07962007-10-31 13:53:06 +01002542 /* Set the bad block position */
2543 chip->badblockpos = mtd->writesize > 512 ?
2544 NAND_LARGE_BADBLOCK_POS : NAND_SMALL_BADBLOCK_POS;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002545
William Juul52c07962007-10-31 13:53:06 +01002546 /* Get chip options, preserve non chip based options */
2547 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2548 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002549
William Juul52c07962007-10-31 13:53:06 +01002550 /*
2551 * Set chip as a default. Board drivers can override it, if necessary
2552 */
2553 chip->options |= NAND_NO_AUTOINCR;
2554
2555 /* Check if chip is a not a samsung device. Do not clear the
2556 * options for chips which are not having an extended id.
2557 */
2558 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
2559 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
2560
2561 /* Check for AND chips with 4 page planes */
2562 if (chip->options & NAND_4PAGE_ARRAY)
2563 chip->erase_cmd = multi_erase_cmd;
2564 else
2565 chip->erase_cmd = single_erase_cmd;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002566
William Juul52c07962007-10-31 13:53:06 +01002567 /* Do not replace user supplied command function ! */
2568 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
2569 chip->cmdfunc = nand_command_lp;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002570
Stefan Roese4fe71432008-01-10 18:47:33 +01002571 MTDDEBUG (MTD_DEBUG_LEVEL0, "NAND device: Manufacturer ID:"
Wolfgang Denka4de8352011-02-02 22:36:10 +01002572 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, dev_id,
2573 nand_manuf_ids[maf_idx].name, type->name);
William Juul52c07962007-10-31 13:53:06 +01002574
2575 return type;
2576}
2577
2578/**
2579 * nand_scan_ident - [NAND Interface] Scan for the NAND device
2580 * @mtd: MTD device structure
2581 * @maxchips: Number of chips to scan for
Lei Wen75bde942011-01-06 09:48:18 +08002582 * @table: Alternative NAND ID table
William Juul52c07962007-10-31 13:53:06 +01002583 *
2584 * This is the first phase of the normal nand_scan() function. It
2585 * reads the flash ID and sets up MTD fields accordingly.
2586 *
2587 * The mtd->owner field must be set to the module of the caller.
2588 */
Lei Wen75bde942011-01-06 09:48:18 +08002589int nand_scan_ident(struct mtd_info *mtd, int maxchips,
2590 const struct nand_flash_dev *table)
William Juul52c07962007-10-31 13:53:06 +01002591{
2592 int i, busw, nand_maf_id;
2593 struct nand_chip *chip = mtd->priv;
Mike Frysinger6c285f62010-10-20 01:15:21 +00002594 const struct nand_flash_dev *type;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002595
William Juul52c07962007-10-31 13:53:06 +01002596 /* Get buswidth to select the correct functions */
2597 busw = chip->options & NAND_BUSWIDTH_16;
2598 /* Set the default functions */
2599 nand_set_defaults(chip, busw);
2600
2601 /* Read the flash type */
Lei Wen75bde942011-01-06 09:48:18 +08002602 type = nand_get_flash_type(mtd, chip, busw, &nand_maf_id, table);
William Juul52c07962007-10-31 13:53:06 +01002603
2604 if (IS_ERR(type)) {
Peter Tyserf96047a2009-02-04 13:39:40 -06002605#ifndef CONFIG_SYS_NAND_QUIET_TEST
William Juul52c07962007-10-31 13:53:06 +01002606 printk(KERN_WARNING "No NAND device found!!!\n");
Peter Tyserf96047a2009-02-04 13:39:40 -06002607#endif
William Juul52c07962007-10-31 13:53:06 +01002608 chip->select_chip(mtd, -1);
2609 return PTR_ERR(type);
2610 }
2611
2612 /* Check for a chip array */
2613 for (i = 1; i < maxchips; i++) {
2614 chip->select_chip(mtd, i);
Karl Beldanb6322fc2008-09-15 16:08:03 +02002615 /* See comment in nand_get_flash_type for reset */
2616 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
William Juul52c07962007-10-31 13:53:06 +01002617 /* Send the command for reading device ID */
2618 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002619 /* Read manufacturer and device IDs */
William Juul52c07962007-10-31 13:53:06 +01002620 if (nand_maf_id != chip->read_byte(mtd) ||
2621 type->id != chip->read_byte(mtd))
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002622 break;
2623 }
Wolfgang Grandeggerb325d7e2009-02-11 18:38:20 +01002624#ifdef DEBUG
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002625 if (i > 1)
2626 printk(KERN_INFO "%d NAND chips detected\n", i);
Wolfgang Grandeggerb325d7e2009-02-11 18:38:20 +01002627#endif
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002628
William Juul52c07962007-10-31 13:53:06 +01002629 /* Store the number of chips and calc total size for mtd */
2630 chip->numchips = i;
2631 mtd->size = i * chip->chipsize;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002632
William Juul52c07962007-10-31 13:53:06 +01002633 return 0;
2634}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002635
William Juul52c07962007-10-31 13:53:06 +01002636
2637/**
2638 * nand_scan_tail - [NAND Interface] Scan for the NAND device
2639 * @mtd: MTD device structure
William Juul52c07962007-10-31 13:53:06 +01002640 *
2641 * This is the second phase of the normal nand_scan() function. It
2642 * fills out all the uninitialized function pointers with the defaults
2643 * and scans for a bad block table if appropriate.
2644 */
2645int nand_scan_tail(struct mtd_info *mtd)
2646{
2647 int i;
2648 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002649
William Juul52c07962007-10-31 13:53:06 +01002650 if (!(chip->options & NAND_OWN_BUFFERS))
2651 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
2652 if (!chip->buffers)
2653 return -ENOMEM;
2654
2655 /* Set the internal oob buffer location, just after the page data */
2656 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
2657
2658 /*
2659 * If no default placement scheme is given, select an appropriate one
2660 */
2661 if (!chip->ecc.layout) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002662 switch (mtd->oobsize) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002663 case 8:
William Juul52c07962007-10-31 13:53:06 +01002664 chip->ecc.layout = &nand_oob_8;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002665 break;
2666 case 16:
William Juul52c07962007-10-31 13:53:06 +01002667 chip->ecc.layout = &nand_oob_16;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002668 break;
2669 case 64:
William Juul52c07962007-10-31 13:53:06 +01002670 chip->ecc.layout = &nand_oob_64;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002671 break;
Sergei Poselenov04fbaa02008-06-06 15:42:43 +02002672 case 128:
William Juul52c07962007-10-31 13:53:06 +01002673 chip->ecc.layout = &nand_oob_128;
Sergei Poselenov04fbaa02008-06-06 15:42:43 +02002674 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002675 default:
William Juul52c07962007-10-31 13:53:06 +01002676 printk(KERN_WARNING "No oob scheme defined for "
2677 "oobsize %d\n", mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002678 }
2679 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002680
William Juul52c07962007-10-31 13:53:06 +01002681 if (!chip->write_page)
2682 chip->write_page = nand_write_page;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002683
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002684 /*
William Juul52c07962007-10-31 13:53:06 +01002685 * check ECC mode, default to software if 3byte/512byte hardware ECC is
2686 * selected and we have 256 byte pagesize fallback to software ECC
2687 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002688
William Juul52c07962007-10-31 13:53:06 +01002689 switch (chip->ecc.mode) {
Sandeep Paulrajdea40702009-08-10 13:27:56 -04002690 case NAND_ECC_HW_OOB_FIRST:
2691 /* Similar to NAND_ECC_HW, but a separate read_page handle */
2692 if (!chip->ecc.calculate || !chip->ecc.correct ||
2693 !chip->ecc.hwctl) {
2694 printk(KERN_WARNING "No ECC functions supplied, "
2695 "Hardware ECC not possible\n");
2696 BUG();
2697 }
2698 if (!chip->ecc.read_page)
2699 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
2700
William Juul52c07962007-10-31 13:53:06 +01002701 case NAND_ECC_HW:
2702 /* Use standard hwecc read page function ? */
2703 if (!chip->ecc.read_page)
2704 chip->ecc.read_page = nand_read_page_hwecc;
2705 if (!chip->ecc.write_page)
2706 chip->ecc.write_page = nand_write_page_hwecc;
David Brownellee86b8d2009-11-07 16:27:01 -05002707 if (!chip->ecc.read_page_raw)
2708 chip->ecc.read_page_raw = nand_read_page_raw;
2709 if (!chip->ecc.write_page_raw)
2710 chip->ecc.write_page_raw = nand_write_page_raw;
William Juul52c07962007-10-31 13:53:06 +01002711 if (!chip->ecc.read_oob)
2712 chip->ecc.read_oob = nand_read_oob_std;
2713 if (!chip->ecc.write_oob)
2714 chip->ecc.write_oob = nand_write_oob_std;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002715
William Juul52c07962007-10-31 13:53:06 +01002716 case NAND_ECC_HW_SYNDROME:
Scott Wood5fd2c302008-03-18 15:29:14 -05002717 if ((!chip->ecc.calculate || !chip->ecc.correct ||
2718 !chip->ecc.hwctl) &&
2719 (!chip->ecc.read_page ||
2720 chip->ecc.read_page == nand_read_page_hwecc ||
2721 !chip->ecc.write_page ||
2722 chip->ecc.write_page == nand_write_page_hwecc)) {
William Juul52c07962007-10-31 13:53:06 +01002723 printk(KERN_WARNING "No ECC functions supplied, "
2724 "Hardware ECC not possible\n");
2725 BUG();
2726 }
2727 /* Use standard syndrome read/write page function ? */
2728 if (!chip->ecc.read_page)
2729 chip->ecc.read_page = nand_read_page_syndrome;
2730 if (!chip->ecc.write_page)
2731 chip->ecc.write_page = nand_write_page_syndrome;
David Brownellee86b8d2009-11-07 16:27:01 -05002732 if (!chip->ecc.read_page_raw)
2733 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
2734 if (!chip->ecc.write_page_raw)
2735 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
William Juul52c07962007-10-31 13:53:06 +01002736 if (!chip->ecc.read_oob)
2737 chip->ecc.read_oob = nand_read_oob_syndrome;
2738 if (!chip->ecc.write_oob)
2739 chip->ecc.write_oob = nand_write_oob_syndrome;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002740
William Juul52c07962007-10-31 13:53:06 +01002741 if (mtd->writesize >= chip->ecc.size)
2742 break;
2743 printk(KERN_WARNING "%d byte HW ECC not possible on "
2744 "%d byte page size, fallback to SW ECC\n",
2745 chip->ecc.size, mtd->writesize);
2746 chip->ecc.mode = NAND_ECC_SOFT;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002747
William Juul52c07962007-10-31 13:53:06 +01002748 case NAND_ECC_SOFT:
2749 chip->ecc.calculate = nand_calculate_ecc;
2750 chip->ecc.correct = nand_correct_data;
2751 chip->ecc.read_page = nand_read_page_swecc;
Scott Wood3628f002008-10-24 16:20:43 -05002752 chip->ecc.read_subpage = nand_read_subpage;
William Juul52c07962007-10-31 13:53:06 +01002753 chip->ecc.write_page = nand_write_page_swecc;
David Brownellee86b8d2009-11-07 16:27:01 -05002754 chip->ecc.read_page_raw = nand_read_page_raw;
2755 chip->ecc.write_page_raw = nand_write_page_raw;
William Juul52c07962007-10-31 13:53:06 +01002756 chip->ecc.read_oob = nand_read_oob_std;
2757 chip->ecc.write_oob = nand_write_oob_std;
2758 chip->ecc.size = 256;
2759 chip->ecc.bytes = 3;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002760 break;
2761
William Juul52c07962007-10-31 13:53:06 +01002762 case NAND_ECC_NONE:
2763 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
2764 "This is not recommended !!\n");
2765 chip->ecc.read_page = nand_read_page_raw;
2766 chip->ecc.write_page = nand_write_page_raw;
2767 chip->ecc.read_oob = nand_read_oob_std;
David Brownellee86b8d2009-11-07 16:27:01 -05002768 chip->ecc.read_page_raw = nand_read_page_raw;
2769 chip->ecc.write_page_raw = nand_write_page_raw;
William Juul52c07962007-10-31 13:53:06 +01002770 chip->ecc.write_oob = nand_write_oob_std;
2771 chip->ecc.size = mtd->writesize;
2772 chip->ecc.bytes = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002773 break;
2774
2775 default:
William Juul52c07962007-10-31 13:53:06 +01002776 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
2777 chip->ecc.mode);
2778 BUG();
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002779 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002780
William Juul52c07962007-10-31 13:53:06 +01002781 /*
2782 * The number of bytes available for a client to place data into
2783 * the out of band area
2784 */
2785 chip->ecc.layout->oobavail = 0;
Sandeep Paulrajeec6cb32009-11-07 14:25:18 -05002786 for (i = 0; chip->ecc.layout->oobfree[i].length
2787 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
William Juul52c07962007-10-31 13:53:06 +01002788 chip->ecc.layout->oobavail +=
2789 chip->ecc.layout->oobfree[i].length;
2790 mtd->oobavail = chip->ecc.layout->oobavail;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002791
William Juul52c07962007-10-31 13:53:06 +01002792 /*
2793 * Set the number of read / write steps for one page depending on ECC
2794 * mode
2795 */
2796 chip->ecc.steps = mtd->writesize / chip->ecc.size;
2797 if(chip->ecc.steps * chip->ecc.size != mtd->writesize) {
2798 printk(KERN_WARNING "Invalid ecc parameters\n");
2799 BUG();
2800 }
2801 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002802
William Juul52c07962007-10-31 13:53:06 +01002803 /*
2804 * Allow subpage writes up to ecc.steps. Not possible for MLC
2805 * FLASH.
2806 */
2807 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2808 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
2809 switch(chip->ecc.steps) {
2810 case 2:
2811 mtd->subpage_sft = 1;
2812 break;
2813 case 4:
2814 case 8:
Sandeep Paulrajfd9874d2009-11-07 14:24:34 -05002815 case 16:
William Juul52c07962007-10-31 13:53:06 +01002816 mtd->subpage_sft = 2;
2817 break;
2818 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002819 }
William Juul52c07962007-10-31 13:53:06 +01002820 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002821
William Juul52c07962007-10-31 13:53:06 +01002822 /* Initialize state */
2823 chip->state = FL_READY;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002824
2825 /* De-select the device */
William Juul52c07962007-10-31 13:53:06 +01002826 chip->select_chip(mtd, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002827
2828 /* Invalidate the pagebuffer reference */
William Juul52c07962007-10-31 13:53:06 +01002829 chip->pagebuf = -1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002830
2831 /* Fill in remaining MTD driver data */
2832 mtd->type = MTD_NANDFLASH;
William Juul52c07962007-10-31 13:53:06 +01002833 mtd->flags = MTD_CAP_NANDFLASH;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002834 mtd->erase = nand_erase;
2835 mtd->point = NULL;
2836 mtd->unpoint = NULL;
2837 mtd->read = nand_read;
2838 mtd->write = nand_write;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002839 mtd->read_oob = nand_read_oob;
2840 mtd->write_oob = nand_write_oob;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002841 mtd->sync = nand_sync;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002842 mtd->lock = NULL;
2843 mtd->unlock = NULL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002844 mtd->block_isbad = nand_block_isbad;
2845 mtd->block_markbad = nand_block_markbad;
2846
William Juul52c07962007-10-31 13:53:06 +01002847 /* propagate ecc.layout to mtd_info */
2848 mtd->ecclayout = chip->ecc.layout;
2849
2850 /* Check, if we should skip the bad block table scan */
2851 if (chip->options & NAND_SKIP_BBTSCAN)
Ilya Yanoka2d4dfe2008-06-30 15:34:40 +02002852 chip->options |= NAND_BBT_SCANNED;
William Juul52c07962007-10-31 13:53:06 +01002853
Ilya Yanoka2d4dfe2008-06-30 15:34:40 +02002854 return 0;
William Juul52c07962007-10-31 13:53:06 +01002855}
2856
William Juul52c07962007-10-31 13:53:06 +01002857/**
2858 * nand_scan - [NAND Interface] Scan for the NAND device
2859 * @mtd: MTD device structure
2860 * @maxchips: Number of chips to scan for
2861 *
2862 * This fills out all the uninitialized function pointers
2863 * with the defaults.
2864 * The flash ID is read and the mtd/chip structures are
2865 * filled with the appropriate values.
2866 * The mtd->owner field must be set to the module of the caller
2867 *
2868 */
2869int nand_scan(struct mtd_info *mtd, int maxchips)
2870{
2871 int ret;
2872
Lei Wen75bde942011-01-06 09:48:18 +08002873 ret = nand_scan_ident(mtd, maxchips, NULL);
William Juul52c07962007-10-31 13:53:06 +01002874 if (!ret)
2875 ret = nand_scan_tail(mtd);
2876 return ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002877}
2878
2879/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02002880 * nand_release - [NAND Interface] Free resources held by the NAND device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002881 * @mtd: MTD device structure
William Juul52c07962007-10-31 13:53:06 +01002882*/
2883void nand_release(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002884{
William Juul52c07962007-10-31 13:53:06 +01002885 struct nand_chip *chip = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002886
2887#ifdef CONFIG_MTD_PARTITIONS
2888 /* Deregister partitions */
William Juul52c07962007-10-31 13:53:06 +01002889 del_mtd_partitions(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002890#endif
William Juul52c07962007-10-31 13:53:06 +01002891
2892 /* Free bad block table memory */
2893 kfree(chip->bbt);
2894 if (!(chip->options & NAND_OWN_BUFFERS))
2895 kfree(chip->buffers);
2896}