blob: ed2640c3ef0fdde2e4e18e616ec58c6ee820a74a [file] [log] [blame]
Wolfgang Denk932394a2005-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 Denkac7eb8a32005-09-14 23:53:32 +02008 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02009 * Additional technical information is available on
Scott Woodc45912d2008-10-24 16:20:43 -050010 * http://www.linux-mtd.infradead.org/doc/nand.html
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +020011 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
William Juulcfa460a2007-10-31 13:53:06 +010013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk932394a2005-08-17 12:55:25 +020014 *
William Juulcfa460a2007-10-31 13:53:06 +010015 * Credits:
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +020016 * David Woodhouse for adding multichip support
17 *
Wolfgang Denk932394a2005-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 Juulcfa460a2007-10-31 13:53:06 +010021 * TODO:
Wolfgang Denk932394a2005-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 Woodc45912d2008-10-24 16:20:43 -050027 * BBT table is not serialized, has to be fixed
Wolfgang Denk932394a2005-08-17 12:55:25 +020028 *
Wolfgang Denk932394a2005-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 Denk932394a2005-08-17 12:55:25 +020035#include <common.h>
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +010036
William Juulcfa460a2007-10-31 13:53:06 +010037#define ENOTSUPP 524 /* Operation is not supported */
38
Wolfgang Denk932394a2005-08-17 12:55:25 +020039#include <malloc.h>
40#include <watchdog.h>
William Juulcfa460a2007-10-31 13:53:06 +010041#include <linux/err.h>
Wolfgang Denk932394a2005-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>
Christian Hitz4c6de852011-10-12 09:31:59 +020046#include <linux/mtd/nand_bch.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020047
Stefan Roese10bb62d2009-04-24 15:58:33 +020048#ifdef CONFIG_MTD_PARTITIONS
49#include <linux/mtd/partitions.h>
50#endif
51
Wolfgang Denk932394a2005-08-17 12:55:25 +020052#include <asm/io.h>
53#include <asm/errno.h>
54
Peter Tyser8da60122009-02-04 13:47:22 -060055/*
56 * CONFIG_SYS_NAND_RESET_CNT is used as a timeout mechanism when resetting
57 * a flash. NAND flash is initialized prior to interrupts so standard timers
58 * can't be used. CONFIG_SYS_NAND_RESET_CNT should be set to a value
59 * which is greater than (max NAND reset time / NAND status read time).
60 * A conservative default of 200000 (500 us / 25 ns) is used as a default.
61 */
62#ifndef CONFIG_SYS_NAND_RESET_CNT
63#define CONFIG_SYS_NAND_RESET_CNT 200000
64#endif
65
Wolfgang Denk932394a2005-08-17 12:55:25 +020066/* Define default oob placement schemes for large and small page devices */
William Juulcfa460a2007-10-31 13:53:06 +010067static struct nand_ecclayout nand_oob_8 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020068 .eccbytes = 3,
69 .eccpos = {0, 1, 2},
William Juulcfa460a2007-10-31 13:53:06 +010070 .oobfree = {
71 {.offset = 3,
72 .length = 2},
73 {.offset = 6,
Christian Hitz90e3f392011-10-12 09:32:01 +020074 .length = 2} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020075};
76
William Juulcfa460a2007-10-31 13:53:06 +010077static struct nand_ecclayout nand_oob_16 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020078 .eccbytes = 6,
79 .eccpos = {0, 1, 2, 3, 6, 7},
William Juulcfa460a2007-10-31 13:53:06 +010080 .oobfree = {
81 {.offset = 8,
Christian Hitz90e3f392011-10-12 09:32:01 +020082 . length = 8} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020083};
84
William Juulcfa460a2007-10-31 13:53:06 +010085static struct nand_ecclayout nand_oob_64 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020086 .eccbytes = 24,
87 .eccpos = {
William Juulcfa460a2007-10-31 13:53:06 +010088 40, 41, 42, 43, 44, 45, 46, 47,
89 48, 49, 50, 51, 52, 53, 54, 55,
90 56, 57, 58, 59, 60, 61, 62, 63},
91 .oobfree = {
92 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +020093 .length = 38} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020094};
95
William Juulcfa460a2007-10-31 13:53:06 +010096static struct nand_ecclayout nand_oob_128 = {
Sergei Poselenov248ae5c2008-06-06 15:42:43 +020097 .eccbytes = 48,
98 .eccpos = {
Christian Hitz90e3f392011-10-12 09:32:01 +020099 80, 81, 82, 83, 84, 85, 86, 87,
100 88, 89, 90, 91, 92, 93, 94, 95,
101 96, 97, 98, 99, 100, 101, 102, 103,
William Juulcfa460a2007-10-31 13:53:06 +0100102 104, 105, 106, 107, 108, 109, 110, 111,
103 112, 113, 114, 115, 116, 117, 118, 119,
104 120, 121, 122, 123, 124, 125, 126, 127},
105 .oobfree = {
106 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +0200107 .length = 78} }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200108};
109
William Juulcfa460a2007-10-31 13:53:06 +0100110static 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 Poselenov248ae5c2008-06-06 15:42:43 +0200117
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200118static int check_offs_len(struct mtd_info *mtd,
119 loff_t ofs, uint64_t len)
120{
121 struct nand_chip *chip = mtd->priv;
122 int ret = 0;
123
124 /* Start address must align on block boundary */
125 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
126 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
127 ret = -EINVAL;
128 }
129
130 /* Length must align on block boundary */
131 if (len & ((1 << chip->phys_erase_shift) - 1)) {
132 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
133 __func__);
134 ret = -EINVAL;
135 }
136
137 /* Do not allow past end of device */
138 if (ofs + len > mtd->size) {
139 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
140 __func__);
141 ret = -EINVAL;
142 }
143
144 return ret;
145}
146
Wolfgang Denk932394a2005-08-17 12:55:25 +0200147/**
148 * nand_release_device - [GENERIC] release chip
149 * @mtd: MTD device structure
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200150 *
151 * Deselect, release chip lock and wake up anyone waiting on the device
Wolfgang Denk932394a2005-08-17 12:55:25 +0200152 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200153static void nand_release_device(struct mtd_info *mtd)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100154{
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200155 struct nand_chip *chip = mtd->priv;
156
157 /* De-select the NAND device */
158 chip->select_chip(mtd, -1);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100159}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200160
161/**
162 * nand_read_byte - [DEFAULT] read one byte from the chip
163 * @mtd: MTD device structure
164 *
165 * Default read function for 8bit buswith
166 */
Simon Schwarz82645f82011-10-31 06:34:44 +0000167uint8_t nand_read_byte(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200168{
William Juulcfa460a2007-10-31 13:53:06 +0100169 struct nand_chip *chip = mtd->priv;
170 return readb(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200171}
172
173/**
174 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
175 * @mtd: MTD device structure
176 *
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200177 * Default read function for 16bit buswith with
Wolfgang Denk932394a2005-08-17 12:55:25 +0200178 * endianess conversion
179 */
William Juulcfa460a2007-10-31 13:53:06 +0100180static uint8_t nand_read_byte16(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200181{
William Juulcfa460a2007-10-31 13:53:06 +0100182 struct nand_chip *chip = mtd->priv;
183 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200184}
185
186/**
187 * nand_read_word - [DEFAULT] read one word from the chip
188 * @mtd: MTD device structure
189 *
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200190 * Default read function for 16bit buswith without
Wolfgang Denk932394a2005-08-17 12:55:25 +0200191 * endianess conversion
192 */
193static u16 nand_read_word(struct mtd_info *mtd)
194{
William Juulcfa460a2007-10-31 13:53:06 +0100195 struct nand_chip *chip = mtd->priv;
196 return readw(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200197}
198
199/**
200 * nand_select_chip - [DEFAULT] control CE line
201 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +0100202 * @chipnr: chipnumber to select, -1 for deselect
Wolfgang Denk932394a2005-08-17 12:55:25 +0200203 *
204 * Default select function for 1 chip devices.
205 */
William Juulcfa460a2007-10-31 13:53:06 +0100206static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200207{
William Juulcfa460a2007-10-31 13:53:06 +0100208 struct nand_chip *chip = mtd->priv;
209
210 switch (chipnr) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200211 case -1:
William Juulcfa460a2007-10-31 13:53:06 +0100212 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200213 break;
214 case 0:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200215 break;
216
217 default:
218 BUG();
219 }
220}
221
222/**
223 * nand_write_buf - [DEFAULT] write buffer to chip
224 * @mtd: MTD device structure
225 * @buf: data buffer
226 * @len: number of bytes to write
227 *
228 * Default write function for 8bit buswith
229 */
Simon Schwarz82645f82011-10-31 06:34:44 +0000230void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200231{
232 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100233 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200234
William Juulcfa460a2007-10-31 13:53:06 +0100235 for (i = 0; i < len; i++)
236 writeb(buf[i], chip->IO_ADDR_W);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200237}
238
239/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200240 * nand_read_buf - [DEFAULT] read chip data into buffer
Wolfgang Denk932394a2005-08-17 12:55:25 +0200241 * @mtd: MTD device structure
242 * @buf: buffer to store date
243 * @len: number of bytes to read
244 *
245 * Default read function for 8bit buswith
246 */
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400247void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200248{
249 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100250 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200251
William Juulcfa460a2007-10-31 13:53:06 +0100252 for (i = 0; i < len; i++)
253 buf[i] = readb(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200254}
255
256/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200257 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Wolfgang Denk932394a2005-08-17 12:55:25 +0200258 * @mtd: MTD device structure
259 * @buf: buffer containing the data to compare
260 * @len: number of bytes to compare
261 *
262 * Default verify function for 8bit buswith
263 */
William Juulcfa460a2007-10-31 13:53:06 +0100264static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200265{
266 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100267 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200268
William Juulcfa460a2007-10-31 13:53:06 +0100269 for (i = 0; i < len; i++)
270 if (buf[i] != readb(chip->IO_ADDR_R))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200271 return -EFAULT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200272 return 0;
273}
274
275/**
276 * nand_write_buf16 - [DEFAULT] write buffer to chip
277 * @mtd: MTD device structure
278 * @buf: data buffer
279 * @len: number of bytes to write
280 *
281 * Default write function for 16bit buswith
282 */
Simon Schwarz82645f82011-10-31 06:34:44 +0000283void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200284{
285 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100286 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200287 u16 *p = (u16 *) buf;
288 len >>= 1;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200289
William Juulcfa460a2007-10-31 13:53:06 +0100290 for (i = 0; i < len; i++)
291 writew(p[i], chip->IO_ADDR_W);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200292
Wolfgang Denk932394a2005-08-17 12:55:25 +0200293}
294
295/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200296 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Wolfgang Denk932394a2005-08-17 12:55:25 +0200297 * @mtd: MTD device structure
298 * @buf: buffer to store date
299 * @len: number of bytes to read
300 *
301 * Default read function for 16bit buswith
302 */
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400303void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200304{
305 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100306 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200307 u16 *p = (u16 *) buf;
308 len >>= 1;
309
William Juulcfa460a2007-10-31 13:53:06 +0100310 for (i = 0; i < len; i++)
311 p[i] = readw(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200312}
313
314/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200315 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Wolfgang Denk932394a2005-08-17 12:55:25 +0200316 * @mtd: MTD device structure
317 * @buf: buffer containing the data to compare
318 * @len: number of bytes to compare
319 *
320 * Default verify function for 16bit buswith
321 */
William Juulcfa460a2007-10-31 13:53:06 +0100322static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200323{
324 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100325 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200326 u16 *p = (u16 *) buf;
327 len >>= 1;
328
William Juulcfa460a2007-10-31 13:53:06 +0100329 for (i = 0; i < len; i++)
330 if (p[i] != readw(chip->IO_ADDR_R))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200331 return -EFAULT;
332
333 return 0;
334}
335
336/**
337 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
338 * @mtd: MTD device structure
339 * @ofs: offset from device start
340 * @getchip: 0, if the chip is already selected
341 *
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200342 * Check, if the block is bad.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200343 */
344static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
345{
346 int page, chipnr, res = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100347 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200348 u16 bad;
349
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200350 if (chip->options & NAND_BBT_SCANLASTPAGE)
351 ofs += mtd->erasesize - mtd->writesize;
352
William Juulcfa460a2007-10-31 13:53:06 +0100353 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Thomas Knoblocha7988652007-05-05 07:04:42 +0200354
Wolfgang Denk932394a2005-08-17 12:55:25 +0200355 if (getchip) {
William Juulcfa460a2007-10-31 13:53:06 +0100356 chipnr = (int)(ofs >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200357
William Juulcfa460a2007-10-31 13:53:06 +0100358 nand_get_device(chip, mtd, FL_READING);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200359
360 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +0100361 chip->select_chip(mtd, chipnr);
Thomas Knoblocha7988652007-05-05 07:04:42 +0200362 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200363
William Juulcfa460a2007-10-31 13:53:06 +0100364 if (chip->options & NAND_BUSWIDTH_16) {
365 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
366 page);
367 bad = cpu_to_le16(chip->read_word(mtd));
368 if (chip->badblockpos & 0x1)
369 bad >>= 8;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200370 else
371 bad &= 0xFF;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200372 } else {
William Juulcfa460a2007-10-31 13:53:06 +0100373 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200374 bad = chip->read_byte(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200375 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200376
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200377 if (likely(chip->badblockbits == 8))
378 res = bad != 0xFF;
379 else
380 res = hweight8(bad) < chip->badblockbits;
381
William Juulcfa460a2007-10-31 13:53:06 +0100382 if (getchip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200383 nand_release_device(mtd);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200384
Wolfgang Denk932394a2005-08-17 12:55:25 +0200385 return res;
386}
387
388/**
389 * nand_default_block_markbad - [DEFAULT] mark a block bad
390 * @mtd: MTD device structure
391 * @ofs: offset from device start
392 *
393 * This is the default implementation, which can be overridden by
394 * a hardware specific driver.
395*/
396static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
397{
William Juulcfa460a2007-10-31 13:53:06 +0100398 struct nand_chip *chip = mtd->priv;
399 uint8_t buf[2] = { 0, 0 };
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200400 int block, ret, i = 0;
401
402 if (chip->options & NAND_BBT_SCANLASTPAGE)
403 ofs += mtd->erasesize - mtd->writesize;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200404
Wolfgang Denk932394a2005-08-17 12:55:25 +0200405 /* Get block number */
William Juulcfa460a2007-10-31 13:53:06 +0100406 block = (int)(ofs >> chip->bbt_erase_shift);
407 if (chip->bbt)
408 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200409
410 /* Do we have a flash based bad block table ? */
William Juulcfa460a2007-10-31 13:53:06 +0100411 if (chip->options & NAND_USE_FLASH_BBT)
412 ret = nand_update_bbt(mtd, ofs);
413 else {
Scott Woodc45912d2008-10-24 16:20:43 -0500414 nand_get_device(chip, mtd, FL_WRITING);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200415
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200416 /* Write to first two pages and to byte 1 and 6 if necessary.
417 * If we write to more than one location, the first error
418 * encountered quits the procedure. We write two bytes per
419 * location, so we dont have to mess with 16 bit access.
420 */
421 do {
422 chip->ops.len = chip->ops.ooblen = 2;
423 chip->ops.datbuf = NULL;
424 chip->ops.oobbuf = buf;
425 chip->ops.ooboffs = chip->badblockpos & ~0x01;
426
427 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
428
429 if (!ret && (chip->options & NAND_BBT_SCANBYTE1AND6)) {
430 chip->ops.ooboffs = NAND_SMALL_BADBLOCK_POS
431 & ~0x01;
432 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
433 }
434 i++;
435 ofs += mtd->writesize;
436 } while (!ret && (chip->options & NAND_BBT_SCAN2NDPAGE) &&
437 i < 2);
438
Scott Woodc45912d2008-10-24 16:20:43 -0500439 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +0100440 }
441 if (!ret)
442 mtd->ecc_stats.badblocks++;
Scott Woodc45912d2008-10-24 16:20:43 -0500443
William Juulcfa460a2007-10-31 13:53:06 +0100444 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200445}
446
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200447/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200448 * nand_check_wp - [GENERIC] check if the chip is write protected
449 * @mtd: MTD device structure
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200450 * Check, if the device is write protected
Wolfgang Denk932394a2005-08-17 12:55:25 +0200451 *
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200452 * The function expects, that the device is already selected
Wolfgang Denk932394a2005-08-17 12:55:25 +0200453 */
William Juulcfa460a2007-10-31 13:53:06 +0100454static int nand_check_wp(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200455{
William Juulcfa460a2007-10-31 13:53:06 +0100456 struct nand_chip *chip = mtd->priv;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200457
458 /* broken xD cards report WP despite being writable */
459 if (chip->options & NAND_BROKEN_XD)
460 return 0;
461
Wolfgang Denk932394a2005-08-17 12:55:25 +0200462 /* Check the WP bit */
William Juulcfa460a2007-10-31 13:53:06 +0100463 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
464 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200465}
Markus Klotzbücher43638c62006-03-06 15:04:25 +0100466
Wolfgang Denk932394a2005-08-17 12:55:25 +0200467/**
468 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
469 * @mtd: MTD device structure
470 * @ofs: offset from device start
471 * @getchip: 0, if the chip is already selected
472 * @allowbbt: 1, if its allowed to access the bbt area
473 *
474 * Check, if the block is bad. Either by reading the bad block table or
475 * calling of the scan function.
476 */
William Juulcfa460a2007-10-31 13:53:06 +0100477static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
478 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200479{
William Juulcfa460a2007-10-31 13:53:06 +0100480 struct nand_chip *chip = mtd->priv;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200481
William Juulcfa460a2007-10-31 13:53:06 +0100482 if (!chip->bbt)
483 return chip->block_bad(mtd, ofs, getchip);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200484
Wolfgang Denk932394a2005-08-17 12:55:25 +0200485 /* Return info from the table */
William Juulcfa460a2007-10-31 13:53:06 +0100486 return nand_isbad_bbt(mtd, ofs, allowbbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200487}
488
William Juulcfa460a2007-10-31 13:53:06 +0100489/*
490 * Wait for the ready pin, after a command
491 * The timeout is catched later.
492 */
William Juulcfa460a2007-10-31 13:53:06 +0100493void nand_wait_ready(struct mtd_info *mtd)
494{
495 struct nand_chip *chip = mtd->priv;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200496 u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000497 u32 time_start;
Stefan Roese12072262008-01-05 16:43:25 +0100498
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000499 time_start = get_timer(0);
Stefan Roese12072262008-01-05 16:43:25 +0100500
501 /* wait until command is processed or timeout occures */
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000502 while (get_timer(time_start) < timeo) {
Stefan Roese12072262008-01-05 16:43:25 +0100503 if (chip->dev_ready)
504 if (chip->dev_ready(mtd))
505 break;
506 }
William Juulcfa460a2007-10-31 13:53:06 +0100507}
William Juulcfa460a2007-10-31 13:53:06 +0100508
Wolfgang Denk932394a2005-08-17 12:55:25 +0200509/**
510 * nand_command - [DEFAULT] Send command to NAND device
511 * @mtd: MTD device structure
512 * @command: the command to be sent
513 * @column: the column address for this command, -1 if none
514 * @page_addr: the page address for this command, -1 if none
515 *
516 * Send command to NAND device. This function is used for small page
517 * devices (256/512 Bytes per page)
518 */
William Juulcfa460a2007-10-31 13:53:06 +0100519static void nand_command(struct mtd_info *mtd, unsigned int command,
520 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200521{
William Juulcfa460a2007-10-31 13:53:06 +0100522 register struct nand_chip *chip = mtd->priv;
523 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Peter Tyser8da60122009-02-04 13:47:22 -0600524 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200525
Wolfgang Denk932394a2005-08-17 12:55:25 +0200526 /*
527 * Write out the command to the device.
528 */
529 if (command == NAND_CMD_SEQIN) {
530 int readcmd;
531
William Juulcfa460a2007-10-31 13:53:06 +0100532 if (column >= mtd->writesize) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200533 /* OOB area */
William Juulcfa460a2007-10-31 13:53:06 +0100534 column -= mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200535 readcmd = NAND_CMD_READOOB;
536 } else if (column < 256) {
537 /* First 256 bytes --> READ0 */
538 readcmd = NAND_CMD_READ0;
539 } else {
540 column -= 256;
541 readcmd = NAND_CMD_READ1;
542 }
William Juulcfa460a2007-10-31 13:53:06 +0100543 chip->cmd_ctrl(mtd, readcmd, ctrl);
544 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200545 }
William Juulcfa460a2007-10-31 13:53:06 +0100546 chip->cmd_ctrl(mtd, command, ctrl);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200547
William Juulcfa460a2007-10-31 13:53:06 +0100548 /*
549 * Address cycle, when necessary
550 */
551 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
552 /* Serially input address */
553 if (column != -1) {
554 /* Adjust columns for 16 bit buswidth */
555 if (chip->options & NAND_BUSWIDTH_16)
556 column >>= 1;
557 chip->cmd_ctrl(mtd, column, ctrl);
558 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200559 }
William Juulcfa460a2007-10-31 13:53:06 +0100560 if (page_addr != -1) {
561 chip->cmd_ctrl(mtd, page_addr, ctrl);
562 ctrl &= ~NAND_CTRL_CHANGE;
563 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
564 /* One more address cycle for devices > 32MiB */
565 if (chip->chipsize > (32 << 20))
566 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
567 }
568 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200569
570 /*
571 * program and erase have their own busy handlers
Wolfgang Denk932394a2005-08-17 12:55:25 +0200572 * status and sequential in needs no delay
William Juulcfa460a2007-10-31 13:53:06 +0100573 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200574 switch (command) {
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200575
Wolfgang Denk932394a2005-08-17 12:55:25 +0200576 case NAND_CMD_PAGEPROG:
577 case NAND_CMD_ERASE1:
578 case NAND_CMD_ERASE2:
579 case NAND_CMD_SEQIN:
580 case NAND_CMD_STATUS:
581 return;
582
583 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100584 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200585 break;
William Juulcfa460a2007-10-31 13:53:06 +0100586 udelay(chip->chip_delay);
587 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
588 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
589 chip->cmd_ctrl(mtd,
590 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600591 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
592 (rst_sts_cnt--));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200593 return;
594
William Juulcfa460a2007-10-31 13:53:06 +0100595 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200596 default:
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200597 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200598 * If we don't have access to the busy pin, we apply the given
599 * command delay
William Juulcfa460a2007-10-31 13:53:06 +0100600 */
601 if (!chip->dev_ready) {
602 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200603 return;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200604 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200605 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200606 /* Apply this short delay always to ensure that we do wait tWB in
607 * any case on any machine. */
William Juulcfa460a2007-10-31 13:53:06 +0100608 ndelay(100);
609
610 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200611}
612
613/**
614 * nand_command_lp - [DEFAULT] Send command to NAND large page device
615 * @mtd: MTD device structure
616 * @command: the command to be sent
617 * @column: the column address for this command, -1 if none
618 * @page_addr: the page address for this command, -1 if none
619 *
William Juulcfa460a2007-10-31 13:53:06 +0100620 * Send command to NAND device. This is the version for the new large page
621 * devices We dont have the separate regions as we have in the small page
622 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200623 */
William Juulcfa460a2007-10-31 13:53:06 +0100624static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
625 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200626{
William Juulcfa460a2007-10-31 13:53:06 +0100627 register struct nand_chip *chip = mtd->priv;
Peter Tyser8da60122009-02-04 13:47:22 -0600628 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200629
630 /* Emulate NAND_CMD_READOOB */
631 if (command == NAND_CMD_READOOB) {
William Juulcfa460a2007-10-31 13:53:06 +0100632 column += mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200633 command = NAND_CMD_READ0;
634 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200635
William Juulcfa460a2007-10-31 13:53:06 +0100636 /* Command latch cycle */
637 chip->cmd_ctrl(mtd, command & 0xff,
638 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200639
640 if (column != -1 || page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100641 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200642
643 /* Serially input address */
644 if (column != -1) {
645 /* Adjust columns for 16 bit buswidth */
William Juulcfa460a2007-10-31 13:53:06 +0100646 if (chip->options & NAND_BUSWIDTH_16)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200647 column >>= 1;
William Juulcfa460a2007-10-31 13:53:06 +0100648 chip->cmd_ctrl(mtd, column, ctrl);
649 ctrl &= ~NAND_CTRL_CHANGE;
650 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200651 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200652 if (page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100653 chip->cmd_ctrl(mtd, page_addr, ctrl);
654 chip->cmd_ctrl(mtd, page_addr >> 8,
655 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200656 /* One more address cycle for devices > 128MiB */
William Juulcfa460a2007-10-31 13:53:06 +0100657 if (chip->chipsize > (128 << 20))
658 chip->cmd_ctrl(mtd, page_addr >> 16,
659 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200660 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200661 }
William Juulcfa460a2007-10-31 13:53:06 +0100662 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200663
664 /*
665 * program and erase have their own busy handlers
William Juulcfa460a2007-10-31 13:53:06 +0100666 * status, sequential in, and deplete1 need no delay
667 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200668 switch (command) {
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200669
Wolfgang Denk932394a2005-08-17 12:55:25 +0200670 case NAND_CMD_CACHEDPROG:
671 case NAND_CMD_PAGEPROG:
672 case NAND_CMD_ERASE1:
673 case NAND_CMD_ERASE2:
674 case NAND_CMD_SEQIN:
William Juulcfa460a2007-10-31 13:53:06 +0100675 case NAND_CMD_RNDIN:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200676 case NAND_CMD_STATUS:
William Juulcfa460a2007-10-31 13:53:06 +0100677 case NAND_CMD_DEPLETE1:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200678 return;
679
William Juulcfa460a2007-10-31 13:53:06 +0100680 /*
681 * read error status commands require only a short delay
682 */
683 case NAND_CMD_STATUS_ERROR:
684 case NAND_CMD_STATUS_ERROR0:
685 case NAND_CMD_STATUS_ERROR1:
686 case NAND_CMD_STATUS_ERROR2:
687 case NAND_CMD_STATUS_ERROR3:
688 udelay(chip->chip_delay);
689 return;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200690
691 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100692 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200693 break;
William Juulcfa460a2007-10-31 13:53:06 +0100694 udelay(chip->chip_delay);
695 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
696 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
697 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
698 NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600699 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
700 (rst_sts_cnt--));
William Juulcfa460a2007-10-31 13:53:06 +0100701 return;
702
703 case NAND_CMD_RNDOUT:
704 /* No ready / busy check necessary */
705 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
706 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
707 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
708 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200709 return;
710
711 case NAND_CMD_READ0:
William Juulcfa460a2007-10-31 13:53:06 +0100712 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
713 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
714 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
715 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200716
William Juulcfa460a2007-10-31 13:53:06 +0100717 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200718 default:
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200719 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200720 * If we don't have access to the busy pin, we apply the given
721 * command delay
William Juulcfa460a2007-10-31 13:53:06 +0100722 */
723 if (!chip->dev_ready) {
724 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200725 return;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200726 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200727 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200728
Wolfgang Denk932394a2005-08-17 12:55:25 +0200729 /* Apply this short delay always to ensure that we do wait tWB in
730 * any case on any machine. */
William Juulcfa460a2007-10-31 13:53:06 +0100731 ndelay(100);
732
733 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200734}
735
736/**
737 * nand_get_device - [GENERIC] Get chip for selected access
William Juulcfa460a2007-10-31 13:53:06 +0100738 * @chip: the nand chip descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200739 * @mtd: MTD device structure
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200740 * @new_state: the state which is requested
Wolfgang Denk932394a2005-08-17 12:55:25 +0200741 *
742 * Get the device and lock it for exclusive access
743 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200744static int
745nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
William Juulcfa460a2007-10-31 13:53:06 +0100746{
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200747 chip->state = new_state;
William Juulcfa460a2007-10-31 13:53:06 +0100748 return 0;
749}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200750
751/**
752 * nand_wait - [DEFAULT] wait until the command is done
753 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +0100754 * @chip: NAND chip structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200755 *
756 * Wait for command done. This applies to erase and program only
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200757 * Erase can take up to 400ms and program up to 20ms according to
Wolfgang Denk932394a2005-08-17 12:55:25 +0200758 * general NAND and SmartMedia specs
William Juulcfa460a2007-10-31 13:53:06 +0100759 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200760static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200761{
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100762 unsigned long timeo;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200763 int state = chip->state;
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000764 u32 time_start;
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100765
766 if (state == FL_ERASING)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200767 timeo = (CONFIG_SYS_HZ * 400) / 1000;
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100768 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200769 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100770
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200771 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
772 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100773 else
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200774 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100775
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000776 time_start = get_timer(0);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100777
778 while (1) {
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000779 if (get_timer(time_start) > timeo) {
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100780 printf("Timeout!");
Stefan Roese15784862006-11-27 17:22:19 +0100781 return 0x01;
782 }
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100783
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200784 if (chip->dev_ready) {
785 if (chip->dev_ready(mtd))
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100786 break;
787 } else {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200788 if (chip->read_byte(mtd) & NAND_STATUS_READY)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100789 break;
790 }
791 }
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100792#ifdef PPCHAMELON_NAND_TIMER_HACK
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000793 time_start = get_timer(0);
794 while (get_timer(time_start) < 10)
795 ;
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +0100796#endif /* PPCHAMELON_NAND_TIMER_HACK */
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100797
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200798 return (int)chip->read_byte(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200799}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200800
801/**
William Juulcfa460a2007-10-31 13:53:06 +0100802 * nand_read_page_raw - [Intern] read raw page data without ecc
803 * @mtd: mtd info structure
804 * @chip: nand chip info structure
805 * @buf: buffer to store read data
Sandeep Paulraje25ee032009-11-07 14:24:50 -0500806 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -0500807 *
808 * Not for syndrome calculating ecc controllers, which use a special oob layout
Wolfgang Denk932394a2005-08-17 12:55:25 +0200809 */
William Juulcfa460a2007-10-31 13:53:06 +0100810static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraja2c65b42009-08-10 13:27:46 -0400811 uint8_t *buf, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200812{
William Juulcfa460a2007-10-31 13:53:06 +0100813 chip->read_buf(mtd, buf, mtd->writesize);
814 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
815 return 0;
816}
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200817
William Juulcfa460a2007-10-31 13:53:06 +0100818/**
David Brownell7e866612009-11-07 16:27:01 -0500819 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
820 * @mtd: mtd info structure
821 * @chip: nand chip info structure
822 * @buf: buffer to store read data
823 * @page: page number to read
824 *
825 * We need a special oob layout and handling even when OOB isn't used.
826 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200827static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
828 struct nand_chip *chip,
829 uint8_t *buf, int page)
David Brownell7e866612009-11-07 16:27:01 -0500830{
831 int eccsize = chip->ecc.size;
832 int eccbytes = chip->ecc.bytes;
833 uint8_t *oob = chip->oob_poi;
834 int steps, size;
835
836 for (steps = chip->ecc.steps; steps > 0; steps--) {
837 chip->read_buf(mtd, buf, eccsize);
838 buf += eccsize;
839
840 if (chip->ecc.prepad) {
841 chip->read_buf(mtd, oob, chip->ecc.prepad);
842 oob += chip->ecc.prepad;
843 }
844
845 chip->read_buf(mtd, oob, eccbytes);
846 oob += eccbytes;
847
848 if (chip->ecc.postpad) {
849 chip->read_buf(mtd, oob, chip->ecc.postpad);
850 oob += chip->ecc.postpad;
851 }
852 }
853
854 size = mtd->oobsize - (oob - chip->oob_poi);
855 if (size)
856 chip->read_buf(mtd, oob, size);
857
858 return 0;
859}
860
861/**
William Juulcfa460a2007-10-31 13:53:06 +0100862 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
863 * @mtd: mtd info structure
864 * @chip: nand chip info structure
865 * @buf: buffer to store read data
Sandeep Paulraje25ee032009-11-07 14:24:50 -0500866 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +0100867 */
868static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraja2c65b42009-08-10 13:27:46 -0400869 uint8_t *buf, int page)
William Juulcfa460a2007-10-31 13:53:06 +0100870{
871 int i, eccsize = chip->ecc.size;
872 int eccbytes = chip->ecc.bytes;
873 int eccsteps = chip->ecc.steps;
874 uint8_t *p = buf;
875 uint8_t *ecc_calc = chip->buffers->ecccalc;
876 uint8_t *ecc_code = chip->buffers->ecccode;
877 uint32_t *eccpos = chip->ecc.layout->eccpos;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200878
Sandeep Paulraja2c65b42009-08-10 13:27:46 -0400879 chip->ecc.read_page_raw(mtd, chip, buf, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200880
William Juulcfa460a2007-10-31 13:53:06 +0100881 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
882 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200883
William Juulcfa460a2007-10-31 13:53:06 +0100884 for (i = 0; i < chip->ecc.total; i++)
885 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200886
William Juulcfa460a2007-10-31 13:53:06 +0100887 eccsteps = chip->ecc.steps;
888 p = buf;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200889
William Juulcfa460a2007-10-31 13:53:06 +0100890 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
891 int stat;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200892
William Juulcfa460a2007-10-31 13:53:06 +0100893 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Scott Woodc45912d2008-10-24 16:20:43 -0500894 if (stat < 0)
895 mtd->ecc_stats.failed++;
896 else
897 mtd->ecc_stats.corrected += stat;
898 }
899 return 0;
900}
901
902/**
903 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
904 * @mtd: mtd info structure
905 * @chip: nand chip info structure
Sandeep Paulraje25ee032009-11-07 14:24:50 -0500906 * @data_offs: offset of requested data within the page
907 * @readlen: data length
908 * @bufpoi: buffer to store read data
Scott Woodc45912d2008-10-24 16:20:43 -0500909 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200910static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
911 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Scott Woodc45912d2008-10-24 16:20:43 -0500912{
913 int start_step, end_step, num_steps;
914 uint32_t *eccpos = chip->ecc.layout->eccpos;
915 uint8_t *p;
916 int data_col_addr, i, gaps = 0;
917 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
918 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200919 int index = 0;
Scott Woodc45912d2008-10-24 16:20:43 -0500920
921 /* Column address wihin the page aligned to ECC size (256bytes). */
922 start_step = data_offs / chip->ecc.size;
923 end_step = (data_offs + readlen - 1) / chip->ecc.size;
924 num_steps = end_step - start_step + 1;
925
926 /* Data size aligned to ECC ecc.size*/
927 datafrag_len = num_steps * chip->ecc.size;
928 eccfrag_len = num_steps * chip->ecc.bytes;
929
930 data_col_addr = start_step * chip->ecc.size;
931 /* If we read not a page aligned data */
932 if (data_col_addr != 0)
933 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
934
935 p = bufpoi + data_col_addr;
936 chip->read_buf(mtd, p, datafrag_len);
937
938 /* Calculate ECC */
939 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
940 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
941
942 /* The performance is faster if to position offsets
943 according to ecc.pos. Let make sure here that
944 there are no gaps in ecc positions */
945 for (i = 0; i < eccfrag_len - 1; i++) {
946 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
947 eccpos[i + start_step * chip->ecc.bytes + 1]) {
948 gaps = 1;
949 break;
950 }
951 }
952 if (gaps) {
953 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
954 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
955 } else {
956 /* send the command to read the particular ecc bytes */
957 /* take care about buswidth alignment in read_buf */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200958 index = start_step * chip->ecc.bytes;
959
960 aligned_pos = eccpos[index] & ~(busw - 1);
Scott Woodc45912d2008-10-24 16:20:43 -0500961 aligned_len = eccfrag_len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200962 if (eccpos[index] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -0500963 aligned_len++;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200964 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -0500965 aligned_len++;
966
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200967 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
968 mtd->writesize + aligned_pos, -1);
Scott Woodc45912d2008-10-24 16:20:43 -0500969 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
970 }
971
972 for (i = 0; i < eccfrag_len; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200973 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Scott Woodc45912d2008-10-24 16:20:43 -0500974
975 p = bufpoi + data_col_addr;
976 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
977 int stat;
978
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200979 stat = chip->ecc.correct(mtd, p,
980 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
981 if (stat < 0)
William Juulcfa460a2007-10-31 13:53:06 +0100982 mtd->ecc_stats.failed++;
983 else
984 mtd->ecc_stats.corrected += stat;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200985 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200986 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200987}
988
Wolfgang Denk932394a2005-08-17 12:55:25 +0200989/**
William Juulcfa460a2007-10-31 13:53:06 +0100990 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
991 * @mtd: mtd info structure
992 * @chip: nand chip info structure
993 * @buf: buffer to store read data
Sandeep Paulraje25ee032009-11-07 14:24:50 -0500994 * @page: page number to read
Wolfgang Denk932394a2005-08-17 12:55:25 +0200995 *
William Juulcfa460a2007-10-31 13:53:06 +0100996 * Not for syndrome calculating ecc controllers which need a special oob layout
Wolfgang Denk932394a2005-08-17 12:55:25 +0200997 */
William Juulcfa460a2007-10-31 13:53:06 +0100998static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraja2c65b42009-08-10 13:27:46 -0400999 uint8_t *buf, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001000{
William Juulcfa460a2007-10-31 13:53:06 +01001001 int i, eccsize = chip->ecc.size;
1002 int eccbytes = chip->ecc.bytes;
1003 int eccsteps = chip->ecc.steps;
1004 uint8_t *p = buf;
1005 uint8_t *ecc_calc = chip->buffers->ecccalc;
1006 uint8_t *ecc_code = chip->buffers->ecccode;
1007 uint32_t *eccpos = chip->ecc.layout->eccpos;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001008
William Juulcfa460a2007-10-31 13:53:06 +01001009 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1010 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1011 chip->read_buf(mtd, p, eccsize);
1012 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1013 }
1014 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001015
William Juulcfa460a2007-10-31 13:53:06 +01001016 for (i = 0; i < chip->ecc.total; i++)
1017 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk932394a2005-08-17 12:55:25 +02001018
William Juulcfa460a2007-10-31 13:53:06 +01001019 eccsteps = chip->ecc.steps;
1020 p = buf;
1021
1022 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1023 int stat;
1024
1025 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Sandeep Paulraj18b5a4b2009-11-07 14:25:03 -05001026 if (stat < 0)
William Juulcfa460a2007-10-31 13:53:06 +01001027 mtd->ecc_stats.failed++;
1028 else
1029 mtd->ecc_stats.corrected += stat;
1030 }
1031 return 0;
1032}
1033
1034/**
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001035 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
1036 * @mtd: mtd info structure
1037 * @chip: nand chip info structure
1038 * @buf: buffer to store read data
Sandeep Paulraje25ee032009-11-07 14:24:50 -05001039 * @page: page number to read
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001040 *
1041 * Hardware ECC for large page chips, require OOB to be read first.
1042 * For this ECC mode, the write_page method is re-used from ECC_HW.
1043 * These methods read/write ECC from the OOB area, unlike the
1044 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
1045 * "infix ECC" scheme and reads/writes ECC from the data area, by
1046 * overwriting the NAND manufacturer bad block markings.
1047 */
1048static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1049 struct nand_chip *chip, uint8_t *buf, int page)
1050{
1051 int i, eccsize = chip->ecc.size;
1052 int eccbytes = chip->ecc.bytes;
1053 int eccsteps = chip->ecc.steps;
1054 uint8_t *p = buf;
1055 uint8_t *ecc_code = chip->buffers->ecccode;
1056 uint32_t *eccpos = chip->ecc.layout->eccpos;
1057 uint8_t *ecc_calc = chip->buffers->ecccalc;
1058
1059 /* Read the OOB area first */
1060 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1061 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1062 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1063
1064 for (i = 0; i < chip->ecc.total; i++)
1065 ecc_code[i] = chip->oob_poi[eccpos[i]];
1066
1067 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1068 int stat;
1069
1070 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1071 chip->read_buf(mtd, p, eccsize);
1072 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1073
1074 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1075 if (stat < 0)
1076 mtd->ecc_stats.failed++;
1077 else
1078 mtd->ecc_stats.corrected += stat;
1079 }
1080 return 0;
1081}
1082
1083/**
William Juulcfa460a2007-10-31 13:53:06 +01001084 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
1085 * @mtd: mtd info structure
1086 * @chip: nand chip info structure
1087 * @buf: buffer to store read data
Sandeep Paulraje25ee032009-11-07 14:24:50 -05001088 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001089 *
1090 * The hw generator calculates the error syndrome automatically. Therefor
1091 * we need a special oob layout and handling.
1092 */
1093static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001094 uint8_t *buf, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001095{
1096 int i, eccsize = chip->ecc.size;
1097 int eccbytes = chip->ecc.bytes;
1098 int eccsteps = chip->ecc.steps;
1099 uint8_t *p = buf;
1100 uint8_t *oob = chip->oob_poi;
1101
1102 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1103 int stat;
1104
1105 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1106 chip->read_buf(mtd, p, eccsize);
1107
1108 if (chip->ecc.prepad) {
1109 chip->read_buf(mtd, oob, chip->ecc.prepad);
1110 oob += chip->ecc.prepad;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001111 }
1112
William Juulcfa460a2007-10-31 13:53:06 +01001113 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1114 chip->read_buf(mtd, oob, eccbytes);
1115 stat = chip->ecc.correct(mtd, p, oob, NULL);
1116
Scott Woodc45912d2008-10-24 16:20:43 -05001117 if (stat < 0)
William Juulcfa460a2007-10-31 13:53:06 +01001118 mtd->ecc_stats.failed++;
1119 else
1120 mtd->ecc_stats.corrected += stat;
1121
1122 oob += eccbytes;
1123
1124 if (chip->ecc.postpad) {
1125 chip->read_buf(mtd, oob, chip->ecc.postpad);
1126 oob += chip->ecc.postpad;
1127 }
1128 }
1129
1130 /* Calculate remaining oob bytes */
1131 i = mtd->oobsize - (oob - chip->oob_poi);
1132 if (i)
1133 chip->read_buf(mtd, oob, i);
1134
1135 return 0;
1136}
1137
1138/**
1139 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1140 * @chip: nand chip structure
1141 * @oob: oob destination address
1142 * @ops: oob ops structure
1143 * @len: size of oob to transfer
1144 */
1145static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
1146 struct mtd_oob_ops *ops, size_t len)
1147{
Christian Hitz90e3f392011-10-12 09:32:01 +02001148 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001149
1150 case MTD_OOB_PLACE:
1151 case MTD_OOB_RAW:
1152 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1153 return oob + len;
1154
1155 case MTD_OOB_AUTO: {
1156 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1157 uint32_t boffs = 0, roffs = ops->ooboffs;
1158 size_t bytes = 0;
1159
Christian Hitz90e3f392011-10-12 09:32:01 +02001160 for (; free->length && len; free++, len -= bytes) {
William Juulcfa460a2007-10-31 13:53:06 +01001161 /* Read request not from offset 0 ? */
1162 if (unlikely(roffs)) {
1163 if (roffs >= free->length) {
1164 roffs -= free->length;
1165 continue;
1166 }
1167 boffs = free->offset + roffs;
1168 bytes = min_t(size_t, len,
1169 (free->length - roffs));
1170 roffs = 0;
1171 } else {
1172 bytes = min_t(size_t, len, free->length);
1173 boffs = free->offset;
1174 }
1175 memcpy(oob, chip->oob_poi + boffs, bytes);
1176 oob += bytes;
1177 }
1178 return oob;
1179 }
1180 default:
1181 BUG();
1182 }
1183 return NULL;
1184}
1185
1186/**
1187 * nand_do_read_ops - [Internal] Read data with ECC
1188 *
1189 * @mtd: MTD device structure
1190 * @from: offset to read from
1191 * @ops: oob ops structure
1192 *
1193 * Internal function. Called with chip held.
1194 */
1195static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1196 struct mtd_oob_ops *ops)
1197{
1198 int chipnr, page, realpage, col, bytes, aligned;
1199 struct nand_chip *chip = mtd->priv;
1200 struct mtd_ecc_stats stats;
1201 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1202 int sndcmd = 1;
1203 int ret = 0;
1204 uint32_t readlen = ops->len;
1205 uint32_t oobreadlen = ops->ooblen;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001206 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1207 mtd->oobavail : mtd->oobsize;
1208
William Juulcfa460a2007-10-31 13:53:06 +01001209 uint8_t *bufpoi, *oob, *buf;
1210
1211 stats = mtd->ecc_stats;
1212
1213 chipnr = (int)(from >> chip->chip_shift);
1214 chip->select_chip(mtd, chipnr);
1215
1216 realpage = (int)(from >> chip->page_shift);
1217 page = realpage & chip->pagemask;
1218
1219 col = (int)(from & (mtd->writesize - 1));
1220
1221 buf = ops->datbuf;
1222 oob = ops->oobbuf;
1223
Christian Hitz90e3f392011-10-12 09:32:01 +02001224 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06001225 WATCHDOG_RESET();
1226
William Juulcfa460a2007-10-31 13:53:06 +01001227 bytes = min(mtd->writesize - col, readlen);
1228 aligned = (bytes == mtd->writesize);
1229
1230 /* Is the current page in the buffer ? */
1231 if (realpage != chip->pagebuf || oob) {
1232 bufpoi = aligned ? buf : chip->buffers->databuf;
1233
1234 if (likely(sndcmd)) {
1235 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1236 sndcmd = 0;
1237 }
1238
1239 /* Now read the page into the buffer */
1240 if (unlikely(ops->mode == MTD_OOB_RAW))
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001241 ret = chip->ecc.read_page_raw(mtd, chip,
Christian Hitz90e3f392011-10-12 09:32:01 +02001242 bufpoi, page);
Scott Woodc45912d2008-10-24 16:20:43 -05001243 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Christian Hitz90e3f392011-10-12 09:32:01 +02001244 ret = chip->ecc.read_subpage(mtd, chip,
1245 col, bytes, bufpoi);
William Juulcfa460a2007-10-31 13:53:06 +01001246 else
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001247 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Christian Hitz90e3f392011-10-12 09:32:01 +02001248 page);
William Juulcfa460a2007-10-31 13:53:06 +01001249 if (ret < 0)
1250 break;
1251
1252 /* Transfer not aligned data */
1253 if (!aligned) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001254 if (!NAND_SUBPAGE_READ(chip) && !oob &&
1255 !(mtd->ecc_stats.failed - stats.failed))
Scott Woodc45912d2008-10-24 16:20:43 -05001256 chip->pagebuf = realpage;
William Juulcfa460a2007-10-31 13:53:06 +01001257 memcpy(buf, chip->buffers->databuf + col, bytes);
1258 }
1259
1260 buf += bytes;
1261
1262 if (unlikely(oob)) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001263
1264 int toread = min(oobreadlen, max_oobsize);
1265
1266 if (toread) {
1267 oob = nand_transfer_oob(chip,
1268 oob, ops, toread);
1269 oobreadlen -= toread;
1270 }
William Juulcfa460a2007-10-31 13:53:06 +01001271 }
1272
1273 if (!(chip->options & NAND_NO_READRDY)) {
1274 /*
1275 * Apply delay or wait for ready/busy pin. Do
1276 * this before the AUTOINCR check, so no
1277 * problems arise if a chip which does auto
1278 * increment is marked as NOAUTOINCR by the
1279 * board driver.
1280 */
1281 if (!chip->dev_ready)
1282 udelay(chip->chip_delay);
1283 else
1284 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001285 }
1286 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001287 memcpy(buf, chip->buffers->databuf + col, bytes);
1288 buf += bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001289 }
1290
William Juulcfa460a2007-10-31 13:53:06 +01001291 readlen -= bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001292
William Juulcfa460a2007-10-31 13:53:06 +01001293 if (!readlen)
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001294 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001295
1296 /* For subsequent reads align to page boundary. */
1297 col = 0;
1298 /* Increment page address */
1299 realpage++;
1300
William Juulcfa460a2007-10-31 13:53:06 +01001301 page = realpage & chip->pagemask;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001302 /* Check, if we cross a chip boundary */
1303 if (!page) {
1304 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01001305 chip->select_chip(mtd, -1);
1306 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001307 }
William Juulcfa460a2007-10-31 13:53:06 +01001308
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001309 /* Check, if the chip supports auto page increment
1310 * or if we have hit a block boundary.
William Juulcfa460a2007-10-31 13:53:06 +01001311 */
1312 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001313 sndcmd = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001314 }
1315
William Juulcfa460a2007-10-31 13:53:06 +01001316 ops->retlen = ops->len - (size_t) readlen;
1317 if (oob)
1318 ops->oobretlen = ops->ooblen - oobreadlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001319
William Juulcfa460a2007-10-31 13:53:06 +01001320 if (ret)
1321 return ret;
1322
1323 if (mtd->ecc_stats.failed - stats.failed)
1324 return -EBADMSG;
1325
Christian Hitz90e3f392011-10-12 09:32:01 +02001326 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001327}
1328
1329/**
Christian Hitz90e3f392011-10-12 09:32:01 +02001330 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Wolfgang Denk932394a2005-08-17 12:55:25 +02001331 * @mtd: MTD device structure
1332 * @from: offset to read from
1333 * @len: number of bytes to read
1334 * @retlen: pointer to variable to store the number of read bytes
1335 * @buf: the databuffer to put data
1336 *
William Juulcfa460a2007-10-31 13:53:06 +01001337 * Get hold of the chip and call nand_do_read
Wolfgang Denk932394a2005-08-17 12:55:25 +02001338 */
William Juulcfa460a2007-10-31 13:53:06 +01001339static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1340 size_t *retlen, uint8_t *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001341{
William Juulcfa460a2007-10-31 13:53:06 +01001342 struct nand_chip *chip = mtd->priv;
1343 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001344
1345 /* Do not allow reads past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01001346 if ((from + len) > mtd->size)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001347 return -EINVAL;
William Juulcfa460a2007-10-31 13:53:06 +01001348 if (!len)
1349 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001350
William Juulcfa460a2007-10-31 13:53:06 +01001351 nand_get_device(chip, mtd, FL_READING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001352
William Juulcfa460a2007-10-31 13:53:06 +01001353 chip->ops.len = len;
1354 chip->ops.datbuf = buf;
1355 chip->ops.oobbuf = NULL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001356
William Juulcfa460a2007-10-31 13:53:06 +01001357 ret = nand_do_read_ops(mtd, from, &chip->ops);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001358
William Juulcfa460a2007-10-31 13:53:06 +01001359 *retlen = chip->ops.retlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001360
Wolfgang Denk932394a2005-08-17 12:55:25 +02001361 nand_release_device(mtd);
1362
1363 return ret;
1364}
1365
William Juulcfa460a2007-10-31 13:53:06 +01001366/**
1367 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1368 * @mtd: mtd info structure
1369 * @chip: nand chip info structure
1370 * @page: page number to read
1371 * @sndcmd: flag whether to issue read command or not
1372 */
1373static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1374 int page, int sndcmd)
1375{
1376 if (sndcmd) {
1377 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1378 sndcmd = 0;
1379 }
1380 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1381 return sndcmd;
1382}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001383
1384/**
William Juulcfa460a2007-10-31 13:53:06 +01001385 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1386 * with syndromes
1387 * @mtd: mtd info structure
1388 * @chip: nand chip info structure
1389 * @page: page number to read
1390 * @sndcmd: flag whether to issue read command or not
1391 */
1392static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1393 int page, int sndcmd)
1394{
1395 uint8_t *buf = chip->oob_poi;
1396 int length = mtd->oobsize;
1397 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1398 int eccsize = chip->ecc.size;
1399 uint8_t *bufpoi = buf;
1400 int i, toread, sndrnd = 0, pos;
1401
1402 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1403 for (i = 0; i < chip->ecc.steps; i++) {
1404 if (sndrnd) {
1405 pos = eccsize + i * (eccsize + chunk);
1406 if (mtd->writesize > 512)
1407 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1408 else
1409 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1410 } else
1411 sndrnd = 1;
1412 toread = min_t(int, length, chunk);
1413 chip->read_buf(mtd, bufpoi, toread);
1414 bufpoi += toread;
1415 length -= toread;
1416 }
1417 if (length > 0)
1418 chip->read_buf(mtd, bufpoi, length);
1419
1420 return 1;
1421}
1422
1423/**
1424 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1425 * @mtd: mtd info structure
1426 * @chip: nand chip info structure
1427 * @page: page number to write
1428 */
1429static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1430 int page)
1431{
1432 int status = 0;
1433 const uint8_t *buf = chip->oob_poi;
1434 int length = mtd->oobsize;
1435
1436 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1437 chip->write_buf(mtd, buf, length);
1438 /* Send command to program the OOB data */
1439 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1440
1441 status = chip->waitfunc(mtd, chip);
1442
1443 return status & NAND_STATUS_FAIL ? -EIO : 0;
1444}
1445
1446/**
1447 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1448 * with syndrome - only for large page flash !
1449 * @mtd: mtd info structure
1450 * @chip: nand chip info structure
1451 * @page: page number to write
1452 */
1453static int nand_write_oob_syndrome(struct mtd_info *mtd,
1454 struct nand_chip *chip, int page)
1455{
1456 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1457 int eccsize = chip->ecc.size, length = mtd->oobsize;
1458 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1459 const uint8_t *bufpoi = chip->oob_poi;
1460
1461 /*
1462 * data-ecc-data-ecc ... ecc-oob
1463 * or
1464 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1465 */
1466 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1467 pos = steps * (eccsize + chunk);
1468 steps = 0;
1469 } else
1470 pos = eccsize;
1471
1472 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1473 for (i = 0; i < steps; i++) {
1474 if (sndcmd) {
1475 if (mtd->writesize <= 512) {
1476 uint32_t fill = 0xFFFFFFFF;
1477
1478 len = eccsize;
1479 while (len > 0) {
1480 int num = min_t(int, len, 4);
1481 chip->write_buf(mtd, (uint8_t *)&fill,
1482 num);
1483 len -= num;
1484 }
1485 } else {
1486 pos = eccsize + i * (eccsize + chunk);
1487 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1488 }
1489 } else
1490 sndcmd = 1;
1491 len = min_t(int, length, chunk);
1492 chip->write_buf(mtd, bufpoi, len);
1493 bufpoi += len;
1494 length -= len;
1495 }
1496 if (length > 0)
1497 chip->write_buf(mtd, bufpoi, length);
1498
1499 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1500 status = chip->waitfunc(mtd, chip);
1501
1502 return status & NAND_STATUS_FAIL ? -EIO : 0;
1503}
1504
1505/**
1506 * nand_do_read_oob - [Intern] NAND read out-of-band
1507 * @mtd: MTD device structure
1508 * @from: offset to read from
1509 * @ops: oob operations description structure
1510 *
1511 * NAND read out-of-band data from the spare area
1512 */
1513static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1514 struct mtd_oob_ops *ops)
1515{
1516 int page, realpage, chipnr, sndcmd = 1;
1517 struct nand_chip *chip = mtd->priv;
1518 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1519 int readlen = ops->ooblen;
1520 int len;
1521 uint8_t *buf = ops->oobbuf;
1522
Christian Hitz90e3f392011-10-12 09:32:01 +02001523 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1524 __func__, (unsigned long long)from, readlen);
William Juulcfa460a2007-10-31 13:53:06 +01001525
1526 if (ops->mode == MTD_OOB_AUTO)
1527 len = chip->ecc.layout->oobavail;
1528 else
1529 len = mtd->oobsize;
1530
1531 if (unlikely(ops->ooboffs >= len)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02001532 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1533 "outside oob\n", __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001534 return -EINVAL;
1535 }
1536
1537 /* Do not allow reads past end of device */
1538 if (unlikely(from >= mtd->size ||
1539 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1540 (from >> chip->page_shift)) * len)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02001541 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1542 "of device\n", __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001543 return -EINVAL;
1544 }
1545
1546 chipnr = (int)(from >> chip->chip_shift);
1547 chip->select_chip(mtd, chipnr);
1548
1549 /* Shift to get page */
1550 realpage = (int)(from >> chip->page_shift);
1551 page = realpage & chip->pagemask;
1552
Christian Hitz90e3f392011-10-12 09:32:01 +02001553 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06001554 WATCHDOG_RESET();
William Juulcfa460a2007-10-31 13:53:06 +01001555 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
1556
1557 len = min(len, readlen);
1558 buf = nand_transfer_oob(chip, buf, ops, len);
1559
1560 if (!(chip->options & NAND_NO_READRDY)) {
1561 /*
1562 * Apply delay or wait for ready/busy pin. Do this
1563 * before the AUTOINCR check, so no problems arise if a
1564 * chip which does auto increment is marked as
1565 * NOAUTOINCR by the board driver.
1566 */
1567 if (!chip->dev_ready)
1568 udelay(chip->chip_delay);
1569 else
1570 nand_wait_ready(mtd);
1571 }
1572
1573 readlen -= len;
1574 if (!readlen)
1575 break;
1576
1577 /* Increment page address */
1578 realpage++;
1579
1580 page = realpage & chip->pagemask;
1581 /* Check, if we cross a chip boundary */
1582 if (!page) {
1583 chipnr++;
1584 chip->select_chip(mtd, -1);
1585 chip->select_chip(mtd, chipnr);
1586 }
1587
1588 /* Check, if the chip supports auto page increment
1589 * or if we have hit a block boundary.
1590 */
1591 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1592 sndcmd = 1;
1593 }
1594
1595 ops->oobretlen = ops->ooblen;
1596 return 0;
1597}
1598
1599/**
1600 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
1601 * @mtd: MTD device structure
1602 * @from: offset to read from
1603 * @ops: oob operation description structure
1604 *
1605 * NAND read data and/or out-of-band data
1606 */
1607static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1608 struct mtd_oob_ops *ops)
1609{
1610 struct nand_chip *chip = mtd->priv;
1611 int ret = -ENOTSUPP;
1612
1613 ops->retlen = 0;
1614
1615 /* Do not allow reads past end of device */
1616 if (ops->datbuf && (from + ops->len) > mtd->size) {
Christian Hitz90e3f392011-10-12 09:32:01 +02001617 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1618 "beyond end of device\n", __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001619 return -EINVAL;
1620 }
1621
1622 nand_get_device(chip, mtd, FL_READING);
1623
Christian Hitz90e3f392011-10-12 09:32:01 +02001624 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001625 case MTD_OOB_PLACE:
1626 case MTD_OOB_AUTO:
1627 case MTD_OOB_RAW:
1628 break;
1629
1630 default:
1631 goto out;
1632 }
1633
1634 if (!ops->datbuf)
1635 ret = nand_do_read_oob(mtd, from, ops);
1636 else
1637 ret = nand_do_read_ops(mtd, from, ops);
1638
Christian Hitz90e3f392011-10-12 09:32:01 +02001639out:
William Juulcfa460a2007-10-31 13:53:06 +01001640 nand_release_device(mtd);
1641 return ret;
1642}
1643
1644
1645/**
1646 * nand_write_page_raw - [Intern] raw page write function
1647 * @mtd: mtd info structure
1648 * @chip: nand chip info structure
1649 * @buf: data buffer
David Brownell7e866612009-11-07 16:27:01 -05001650 *
1651 * Not for syndrome calculating ecc controllers, which use a special oob layout
William Juulcfa460a2007-10-31 13:53:06 +01001652 */
1653static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1654 const uint8_t *buf)
1655{
1656 chip->write_buf(mtd, buf, mtd->writesize);
1657 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1658}
1659
1660/**
David Brownell7e866612009-11-07 16:27:01 -05001661 * nand_write_page_raw_syndrome - [Intern] raw page write function
1662 * @mtd: mtd info structure
1663 * @chip: nand chip info structure
1664 * @buf: data buffer
1665 *
1666 * We need a special oob layout and handling even when ECC isn't checked.
1667 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001668static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1669 struct nand_chip *chip,
1670 const uint8_t *buf)
David Brownell7e866612009-11-07 16:27:01 -05001671{
1672 int eccsize = chip->ecc.size;
1673 int eccbytes = chip->ecc.bytes;
1674 uint8_t *oob = chip->oob_poi;
1675 int steps, size;
1676
1677 for (steps = chip->ecc.steps; steps > 0; steps--) {
1678 chip->write_buf(mtd, buf, eccsize);
1679 buf += eccsize;
1680
1681 if (chip->ecc.prepad) {
1682 chip->write_buf(mtd, oob, chip->ecc.prepad);
1683 oob += chip->ecc.prepad;
1684 }
1685
1686 chip->read_buf(mtd, oob, eccbytes);
1687 oob += eccbytes;
1688
1689 if (chip->ecc.postpad) {
1690 chip->write_buf(mtd, oob, chip->ecc.postpad);
1691 oob += chip->ecc.postpad;
1692 }
1693 }
1694
1695 size = mtd->oobsize - (oob - chip->oob_poi);
1696 if (size)
1697 chip->write_buf(mtd, oob, size);
1698}
1699/**
William Juulcfa460a2007-10-31 13:53:06 +01001700 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
1701 * @mtd: mtd info structure
1702 * @chip: nand chip info structure
1703 * @buf: data buffer
1704 */
1705static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1706 const uint8_t *buf)
1707{
1708 int i, eccsize = chip->ecc.size;
1709 int eccbytes = chip->ecc.bytes;
1710 int eccsteps = chip->ecc.steps;
1711 uint8_t *ecc_calc = chip->buffers->ecccalc;
1712 const uint8_t *p = buf;
1713 uint32_t *eccpos = chip->ecc.layout->eccpos;
1714
1715 /* Software ecc calculation */
1716 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1717 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1718
1719 for (i = 0; i < chip->ecc.total; i++)
1720 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1721
1722 chip->ecc.write_page_raw(mtd, chip, buf);
1723}
1724
1725/**
1726 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
1727 * @mtd: mtd info structure
1728 * @chip: nand chip info structure
1729 * @buf: data buffer
1730 */
1731static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1732 const uint8_t *buf)
1733{
1734 int i, eccsize = chip->ecc.size;
1735 int eccbytes = chip->ecc.bytes;
1736 int eccsteps = chip->ecc.steps;
1737 uint8_t *ecc_calc = chip->buffers->ecccalc;
1738 const uint8_t *p = buf;
1739 uint32_t *eccpos = chip->ecc.layout->eccpos;
1740
1741 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1742 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1743 chip->write_buf(mtd, p, eccsize);
1744 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1745 }
1746
1747 for (i = 0; i < chip->ecc.total; i++)
1748 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1749
1750 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1751}
1752
1753/**
1754 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
1755 * @mtd: mtd info structure
1756 * @chip: nand chip info structure
1757 * @buf: data buffer
1758 *
1759 * The hw generator calculates the error syndrome automatically. Therefor
1760 * we need a special oob layout and handling.
1761 */
1762static void nand_write_page_syndrome(struct mtd_info *mtd,
1763 struct nand_chip *chip, const uint8_t *buf)
1764{
1765 int i, eccsize = chip->ecc.size;
1766 int eccbytes = chip->ecc.bytes;
1767 int eccsteps = chip->ecc.steps;
1768 const uint8_t *p = buf;
1769 uint8_t *oob = chip->oob_poi;
1770
1771 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1772
1773 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1774 chip->write_buf(mtd, p, eccsize);
1775
1776 if (chip->ecc.prepad) {
1777 chip->write_buf(mtd, oob, chip->ecc.prepad);
1778 oob += chip->ecc.prepad;
1779 }
1780
1781 chip->ecc.calculate(mtd, p, oob);
1782 chip->write_buf(mtd, oob, eccbytes);
1783 oob += eccbytes;
1784
1785 if (chip->ecc.postpad) {
1786 chip->write_buf(mtd, oob, chip->ecc.postpad);
1787 oob += chip->ecc.postpad;
1788 }
1789 }
1790
1791 /* Calculate remaining oob bytes */
1792 i = mtd->oobsize - (oob - chip->oob_poi);
1793 if (i)
1794 chip->write_buf(mtd, oob, i);
1795}
1796
1797/**
1798 * nand_write_page - [REPLACEABLE] write one page
1799 * @mtd: MTD device structure
1800 * @chip: NAND chip descriptor
1801 * @buf: the data to write
1802 * @page: page number to write
1803 * @cached: cached programming
1804 * @raw: use _raw version of write_page
1805 */
1806static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
1807 const uint8_t *buf, int page, int cached, int raw)
1808{
1809 int status;
1810
1811 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
1812
1813 if (unlikely(raw))
1814 chip->ecc.write_page_raw(mtd, chip, buf);
1815 else
1816 chip->ecc.write_page(mtd, chip, buf);
1817
1818 /*
1819 * Cached progamming disabled for now, Not sure if its worth the
1820 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
1821 */
1822 cached = 0;
1823
1824 if (!cached || !(chip->options & NAND_CACHEPRG)) {
1825
1826 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1827 status = chip->waitfunc(mtd, chip);
1828 /*
1829 * See if operation failed and additional status checks are
1830 * available
1831 */
1832 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
1833 status = chip->errstat(mtd, chip, FL_WRITING, status,
1834 page);
1835
1836 if (status & NAND_STATUS_FAIL)
1837 return -EIO;
1838 } else {
1839 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
1840 status = chip->waitfunc(mtd, chip);
1841 }
1842
1843#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
1844 /* Send command to read back the data */
1845 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1846
1847 if (chip->verify_buf(mtd, buf, mtd->writesize))
1848 return -EIO;
1849#endif
1850 return 0;
1851}
1852
1853/**
1854 * nand_fill_oob - [Internal] Transfer client buffer to oob
1855 * @chip: nand chip structure
1856 * @oob: oob data buffer
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001857 * @len: oob data write length
William Juulcfa460a2007-10-31 13:53:06 +01001858 * @ops: oob ops structure
1859 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001860static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,
1861 struct mtd_oob_ops *ops)
William Juulcfa460a2007-10-31 13:53:06 +01001862{
Christian Hitz90e3f392011-10-12 09:32:01 +02001863 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001864
1865 case MTD_OOB_PLACE:
1866 case MTD_OOB_RAW:
1867 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
1868 return oob + len;
1869
1870 case MTD_OOB_AUTO: {
1871 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1872 uint32_t boffs = 0, woffs = ops->ooboffs;
1873 size_t bytes = 0;
1874
Christian Hitz90e3f392011-10-12 09:32:01 +02001875 for (; free->length && len; free++, len -= bytes) {
William Juulcfa460a2007-10-31 13:53:06 +01001876 /* Write request not from offset 0 ? */
1877 if (unlikely(woffs)) {
1878 if (woffs >= free->length) {
1879 woffs -= free->length;
1880 continue;
1881 }
1882 boffs = free->offset + woffs;
1883 bytes = min_t(size_t, len,
1884 (free->length - woffs));
1885 woffs = 0;
1886 } else {
1887 bytes = min_t(size_t, len, free->length);
1888 boffs = free->offset;
1889 }
1890 memcpy(chip->oob_poi + boffs, oob, bytes);
1891 oob += bytes;
1892 }
1893 return oob;
1894 }
1895 default:
1896 BUG();
1897 }
1898 return NULL;
1899}
1900
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001901#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
William Juulcfa460a2007-10-31 13:53:06 +01001902
1903/**
1904 * nand_do_write_ops - [Internal] NAND write with ECC
1905 * @mtd: MTD device structure
1906 * @to: offset to write to
1907 * @ops: oob operations description structure
1908 *
1909 * NAND write with ECC
1910 */
1911static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
1912 struct mtd_oob_ops *ops)
1913{
1914 int chipnr, realpage, page, blockmask, column;
1915 struct nand_chip *chip = mtd->priv;
1916 uint32_t writelen = ops->len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001917
1918 uint32_t oobwritelen = ops->ooblen;
1919 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
1920 mtd->oobavail : mtd->oobsize;
1921
William Juulcfa460a2007-10-31 13:53:06 +01001922 uint8_t *oob = ops->oobbuf;
1923 uint8_t *buf = ops->datbuf;
1924 int ret, subpage;
1925
1926 ops->retlen = 0;
1927 if (!writelen)
1928 return 0;
1929
William Juulcfa460a2007-10-31 13:53:06 +01001930 column = to & (mtd->writesize - 1);
1931 subpage = column || (writelen & (mtd->writesize - 1));
1932
1933 if (subpage && oob)
1934 return -EINVAL;
1935
1936 chipnr = (int)(to >> chip->chip_shift);
1937 chip->select_chip(mtd, chipnr);
1938
1939 /* Check, if it is write protected */
1940 if (nand_check_wp(mtd)) {
1941 printk (KERN_NOTICE "nand_do_write_ops: Device is write protected\n");
1942 return -EIO;
1943 }
1944
1945 realpage = (int)(to >> chip->page_shift);
1946 page = realpage & chip->pagemask;
1947 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1948
1949 /* Invalidate the page cache, when we write to the cached page */
1950 if (to <= (chip->pagebuf << chip->page_shift) &&
1951 (chip->pagebuf << chip->page_shift) < (to + ops->len))
1952 chip->pagebuf = -1;
1953
1954 /* If we're not given explicit OOB data, let it be 0xFF */
1955 if (likely(!oob))
1956 memset(chip->oob_poi, 0xff, mtd->oobsize);
1957
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001958 /* Don't allow multipage oob writes with offset */
1959 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
1960 return -EINVAL;
1961
Christian Hitz90e3f392011-10-12 09:32:01 +02001962 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06001963 WATCHDOG_RESET();
1964
William Juulcfa460a2007-10-31 13:53:06 +01001965 int bytes = mtd->writesize;
1966 int cached = writelen > bytes && page != blockmask;
1967 uint8_t *wbuf = buf;
1968
1969 /* Partial page write ? */
1970 if (unlikely(column || writelen < (mtd->writesize - 1))) {
1971 cached = 0;
1972 bytes = min_t(int, bytes - column, (int) writelen);
1973 chip->pagebuf = -1;
1974 memset(chip->buffers->databuf, 0xff, mtd->writesize);
1975 memcpy(&chip->buffers->databuf[column], buf, bytes);
1976 wbuf = chip->buffers->databuf;
1977 }
1978
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001979 if (unlikely(oob)) {
1980 size_t len = min(oobwritelen, oobmaxlen);
1981 oob = nand_fill_oob(chip, oob, len, ops);
1982 oobwritelen -= len;
1983 }
William Juulcfa460a2007-10-31 13:53:06 +01001984
1985 ret = chip->write_page(mtd, chip, wbuf, page, cached,
1986 (ops->mode == MTD_OOB_RAW));
1987 if (ret)
1988 break;
1989
1990 writelen -= bytes;
1991 if (!writelen)
1992 break;
1993
1994 column = 0;
1995 buf += bytes;
1996 realpage++;
1997
1998 page = realpage & chip->pagemask;
1999 /* Check, if we cross a chip boundary */
2000 if (!page) {
2001 chipnr++;
2002 chip->select_chip(mtd, -1);
2003 chip->select_chip(mtd, chipnr);
2004 }
2005 }
2006
2007 ops->retlen = ops->len - writelen;
2008 if (unlikely(oob))
2009 ops->oobretlen = ops->ooblen;
2010 return ret;
2011}
2012
2013/**
2014 * nand_write - [MTD Interface] NAND write with ECC
Wolfgang Denk932394a2005-08-17 12:55:25 +02002015 * @mtd: MTD device structure
2016 * @to: offset to write to
2017 * @len: number of bytes to write
2018 * @retlen: pointer to variable to store the number of written bytes
2019 * @buf: the data to write
2020 *
William Juulcfa460a2007-10-31 13:53:06 +01002021 * NAND write with ECC
2022 */
2023static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2024 size_t *retlen, const uint8_t *buf)
2025{
2026 struct nand_chip *chip = mtd->priv;
2027 int ret;
2028
Ben Gardinerbee038e2011-05-24 10:18:34 -04002029 /* Do not allow writes past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01002030 if ((to + len) > mtd->size)
2031 return -EINVAL;
2032 if (!len)
2033 return 0;
2034
2035 nand_get_device(chip, mtd, FL_WRITING);
2036
2037 chip->ops.len = len;
2038 chip->ops.datbuf = (uint8_t *)buf;
2039 chip->ops.oobbuf = NULL;
2040
2041 ret = nand_do_write_ops(mtd, to, &chip->ops);
2042
2043 *retlen = chip->ops.retlen;
2044
2045 nand_release_device(mtd);
2046
2047 return ret;
2048}
2049
2050/**
2051 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
2052 * @mtd: MTD device structure
2053 * @to: offset to write to
2054 * @ops: oob operation description structure
2055 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02002056 * NAND write out-of-band
2057 */
William Juulcfa460a2007-10-31 13:53:06 +01002058static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2059 struct mtd_oob_ops *ops)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002060{
William Juulcfa460a2007-10-31 13:53:06 +01002061 int chipnr, page, status, len;
2062 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002063
Christian Hitz90e3f392011-10-12 09:32:01 +02002064 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2065 __func__, (unsigned int)to, (int)ops->ooblen);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002066
William Juulcfa460a2007-10-31 13:53:06 +01002067 if (ops->mode == MTD_OOB_AUTO)
2068 len = chip->ecc.layout->oobavail;
2069 else
2070 len = mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002071
2072 /* Do not allow write past end of page */
William Juulcfa460a2007-10-31 13:53:06 +01002073 if ((ops->ooboffs + ops->ooblen) > len) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002074 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2075 "past end of page\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002076 return -EINVAL;
2077 }
2078
William Juulcfa460a2007-10-31 13:53:06 +01002079 if (unlikely(ops->ooboffs >= len)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002080 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2081 "write outside oob\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002082 return -EINVAL;
2083 }
2084
Christian Hitz90e3f392011-10-12 09:32:01 +02002085 /* Do not allow write past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01002086 if (unlikely(to >= mtd->size ||
2087 ops->ooboffs + ops->ooblen >
2088 ((mtd->size >> chip->page_shift) -
2089 (to >> chip->page_shift)) * len)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002090 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2091 "end of device\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002092 return -EINVAL;
2093 }
2094
William Juulcfa460a2007-10-31 13:53:06 +01002095 chipnr = (int)(to >> chip->chip_shift);
2096 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002097
William Juulcfa460a2007-10-31 13:53:06 +01002098 /* Shift to get page */
2099 page = (int)(to >> chip->page_shift);
2100
2101 /*
2102 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2103 * of my DiskOnChip 2000 test units) will clear the whole data page too
2104 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2105 * it in the doc2000 driver in August 1999. dwmw2.
2106 */
2107 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002108
2109 /* Check, if it is write protected */
2110 if (nand_check_wp(mtd))
William Juulcfa460a2007-10-31 13:53:06 +01002111 return -EROFS;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002112
Wolfgang Denk932394a2005-08-17 12:55:25 +02002113 /* Invalidate the page cache, if we write to the cached page */
William Juulcfa460a2007-10-31 13:53:06 +01002114 if (page == chip->pagebuf)
2115 chip->pagebuf = -1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002116
William Juulcfa460a2007-10-31 13:53:06 +01002117 memset(chip->oob_poi, 0xff, mtd->oobsize);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002118 nand_fill_oob(chip, ops->oobbuf, ops->ooblen, ops);
William Juulcfa460a2007-10-31 13:53:06 +01002119 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2120 memset(chip->oob_poi, 0xff, mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002121
William Juulcfa460a2007-10-31 13:53:06 +01002122 if (status)
2123 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002124
William Juulcfa460a2007-10-31 13:53:06 +01002125 ops->oobretlen = ops->ooblen;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002126
William Juulcfa460a2007-10-31 13:53:06 +01002127 return 0;
2128}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002129
William Juulcfa460a2007-10-31 13:53:06 +01002130/**
2131 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2132 * @mtd: MTD device structure
2133 * @to: offset to write to
2134 * @ops: oob operation description structure
2135 */
2136static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2137 struct mtd_oob_ops *ops)
2138{
2139 struct nand_chip *chip = mtd->priv;
2140 int ret = -ENOTSUPP;
2141
2142 ops->retlen = 0;
2143
2144 /* Do not allow writes past end of device */
2145 if (ops->datbuf && (to + ops->len) > mtd->size) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002146 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2147 "end of device\n", __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002148 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002149 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002150
William Juulcfa460a2007-10-31 13:53:06 +01002151 nand_get_device(chip, mtd, FL_WRITING);
2152
Christian Hitz90e3f392011-10-12 09:32:01 +02002153 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01002154 case MTD_OOB_PLACE:
2155 case MTD_OOB_AUTO:
2156 case MTD_OOB_RAW:
2157 break;
2158
2159 default:
2160 goto out;
2161 }
2162
2163 if (!ops->datbuf)
2164 ret = nand_do_write_oob(mtd, to, ops);
2165 else
2166 ret = nand_do_write_ops(mtd, to, ops);
2167
Christian Hitz90e3f392011-10-12 09:32:01 +02002168out:
William Juulcfa460a2007-10-31 13:53:06 +01002169 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002170 return ret;
2171}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002172
2173/**
2174 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2175 * @mtd: MTD device structure
2176 * @page: the page address of the block which will be erased
2177 *
2178 * Standard erase command for NAND chips
2179 */
William Juulcfa460a2007-10-31 13:53:06 +01002180static void single_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002181{
William Juulcfa460a2007-10-31 13:53:06 +01002182 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002183 /* Send commands to erase a block */
William Juulcfa460a2007-10-31 13:53:06 +01002184 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2185 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002186}
2187
2188/**
2189 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2190 * @mtd: MTD device structure
2191 * @page: the page address of the block which will be erased
2192 *
2193 * AND multi block erase command function
2194 * Erase 4 consecutive blocks
2195 */
William Juulcfa460a2007-10-31 13:53:06 +01002196static void multi_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002197{
William Juulcfa460a2007-10-31 13:53:06 +01002198 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002199 /* Send commands to erase a block */
William Juulcfa460a2007-10-31 13:53:06 +01002200 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2201 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2202 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2203 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2204 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002205}
2206
2207/**
2208 * nand_erase - [MTD Interface] erase block(s)
2209 * @mtd: MTD device structure
2210 * @instr: erase instruction
2211 *
2212 * Erase one ore more blocks
2213 */
William Juulcfa460a2007-10-31 13:53:06 +01002214static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002215{
William Juulcfa460a2007-10-31 13:53:06 +01002216 return nand_erase_nand(mtd, instr, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002217}
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002218
William Juulcfa460a2007-10-31 13:53:06 +01002219#define BBT_PAGE_MASK 0xffffff3f
Wolfgang Denk932394a2005-08-17 12:55:25 +02002220/**
William Juulcfa460a2007-10-31 13:53:06 +01002221 * nand_erase_nand - [Internal] erase block(s)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002222 * @mtd: MTD device structure
2223 * @instr: erase instruction
2224 * @allowbbt: allow erasing the bbt area
2225 *
2226 * Erase one ore more blocks
2227 */
William Juulcfa460a2007-10-31 13:53:06 +01002228int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2229 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002230{
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002231 int page, status, pages_per_block, ret, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002232 struct nand_chip *chip = mtd->priv;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002233 loff_t rewrite_bbt[CONFIG_SYS_NAND_MAX_CHIPS] = {0};
William Juulcfa460a2007-10-31 13:53:06 +01002234 unsigned int bbt_masked_page = 0xffffffff;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002235 loff_t len;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002236
Christian Hitz90e3f392011-10-12 09:32:01 +02002237 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2238 __func__, (unsigned long long)instr->addr,
2239 (unsigned long long)instr->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002240
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002241 if (check_offs_len(mtd, instr->addr, instr->len))
Wolfgang Denk932394a2005-08-17 12:55:25 +02002242 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002243
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002244 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002245
2246 /* Grab the lock and see if the device is available */
William Juulcfa460a2007-10-31 13:53:06 +01002247 nand_get_device(chip, mtd, FL_ERASING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002248
2249 /* Shift to get first page */
William Juulcfa460a2007-10-31 13:53:06 +01002250 page = (int)(instr->addr >> chip->page_shift);
2251 chipnr = (int)(instr->addr >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002252
2253 /* Calculate pages in each block */
William Juulcfa460a2007-10-31 13:53:06 +01002254 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
William Juul4cbb6512007-11-08 10:39:53 +01002255
Wolfgang Denk932394a2005-08-17 12:55:25 +02002256 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +01002257 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002258
Wolfgang Denk932394a2005-08-17 12:55:25 +02002259 /* Check, if it is write protected */
2260 if (nand_check_wp(mtd)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002261 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2262 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002263 instr->state = MTD_ERASE_FAILED;
2264 goto erase_exit;
2265 }
2266
William Juulcfa460a2007-10-31 13:53:06 +01002267 /*
2268 * If BBT requires refresh, set the BBT page mask to see if the BBT
2269 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2270 * can not be matched. This is also done when the bbt is actually
2271 * erased to avoid recusrsive updates
2272 */
2273 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2274 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
2275
Wolfgang Denk932394a2005-08-17 12:55:25 +02002276 /* Loop through the pages */
2277 len = instr->len;
2278
2279 instr->state = MTD_ERASING;
2280
2281 while (len) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002282 WATCHDOG_RESET();
William Juulcfa460a2007-10-31 13:53:06 +01002283 /*
2284 * heck if we have a bad block, we do not erase bad blocks !
2285 */
Marek Vasut6d414192011-09-12 06:04:06 +02002286 if (!instr->scrub && nand_block_checkbad(mtd, ((loff_t) page) <<
William Juulcfa460a2007-10-31 13:53:06 +01002287 chip->page_shift, 0, allowbbt)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002288 printk(KERN_WARNING "%s: attempt to erase a bad block "
2289 "at page 0x%08x\n", __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002290 instr->state = MTD_ERASE_FAILED;
2291 goto erase_exit;
2292 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002293
William Juulcfa460a2007-10-31 13:53:06 +01002294 /*
2295 * Invalidate the page cache, if we erase the block which
2296 * contains the current cached page
2297 */
2298 if (page <= chip->pagebuf && chip->pagebuf <
2299 (page + pages_per_block))
2300 chip->pagebuf = -1;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002301
William Juulcfa460a2007-10-31 13:53:06 +01002302 chip->erase_cmd(mtd, page & chip->pagemask);
2303
2304 status = chip->waitfunc(mtd, chip);
2305
2306 /*
2307 * See if operation failed and additional status checks are
2308 * available
2309 */
2310 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2311 status = chip->errstat(mtd, chip, FL_ERASING,
2312 status, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002313
2314 /* See if block erase succeeded */
William Juulcfa460a2007-10-31 13:53:06 +01002315 if (status & NAND_STATUS_FAIL) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002316 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2317 "page 0x%08x\n", __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002318 instr->state = MTD_ERASE_FAILED;
Christian Hitz90e3f392011-10-12 09:32:01 +02002319 instr->fail_addr =
2320 ((loff_t)page << chip->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002321 goto erase_exit;
2322 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002323
William Juulcfa460a2007-10-31 13:53:06 +01002324 /*
2325 * If BBT requires refresh, set the BBT rewrite flag to the
2326 * page being erased
2327 */
2328 if (bbt_masked_page != 0xffffffff &&
2329 (page & BBT_PAGE_MASK) == bbt_masked_page)
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002330 rewrite_bbt[chipnr] =
2331 ((loff_t)page << chip->page_shift);
William Juulcfa460a2007-10-31 13:53:06 +01002332
Wolfgang Denk932394a2005-08-17 12:55:25 +02002333 /* Increment page address and decrement length */
William Juulcfa460a2007-10-31 13:53:06 +01002334 len -= (1 << chip->phys_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002335 page += pages_per_block;
2336
2337 /* Check, if we cross a chip boundary */
William Juulcfa460a2007-10-31 13:53:06 +01002338 if (len && !(page & chip->pagemask)) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02002339 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01002340 chip->select_chip(mtd, -1);
2341 chip->select_chip(mtd, chipnr);
2342
2343 /*
2344 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2345 * page mask to see if this BBT should be rewritten
2346 */
2347 if (bbt_masked_page != 0xffffffff &&
2348 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2349 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2350 BBT_PAGE_MASK;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002351 }
2352 }
2353 instr->state = MTD_ERASE_DONE;
2354
Christian Hitz90e3f392011-10-12 09:32:01 +02002355erase_exit:
Wolfgang Denk932394a2005-08-17 12:55:25 +02002356
2357 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002358
2359 /* Deselect and wake up anyone waiting on the device */
2360 nand_release_device(mtd);
2361
Scott Woodc45912d2008-10-24 16:20:43 -05002362 /* Do call back function */
2363 if (!ret)
2364 mtd_erase_callback(instr);
2365
William Juulcfa460a2007-10-31 13:53:06 +01002366 /*
2367 * If BBT requires refresh and erase was successful, rewrite any
2368 * selected bad block tables
2369 */
2370 if (bbt_masked_page == 0xffffffff || ret)
2371 return ret;
2372
2373 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2374 if (!rewrite_bbt[chipnr])
2375 continue;
2376 /* update the BBT for chip */
Christian Hitz90e3f392011-10-12 09:32:01 +02002377 MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2378 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2379 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
William Juulcfa460a2007-10-31 13:53:06 +01002380 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
2381 }
2382
Wolfgang Denk932394a2005-08-17 12:55:25 +02002383 /* Return more or less happy */
2384 return ret;
2385}
2386
2387/**
2388 * nand_sync - [MTD Interface] sync
2389 * @mtd: MTD device structure
2390 *
2391 * Sync is actually a wait for chip ready function
2392 */
William Juulcfa460a2007-10-31 13:53:06 +01002393static void nand_sync(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002394{
William Juulcfa460a2007-10-31 13:53:06 +01002395 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002396
Christian Hitz90e3f392011-10-12 09:32:01 +02002397 MTDDEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002398
2399 /* Grab the lock and see if the device is available */
William Juulcfa460a2007-10-31 13:53:06 +01002400 nand_get_device(chip, mtd, FL_SYNCING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002401 /* Release it and go back */
William Juulcfa460a2007-10-31 13:53:06 +01002402 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002403}
2404
Wolfgang Denk932394a2005-08-17 12:55:25 +02002405/**
William Juulcfa460a2007-10-31 13:53:06 +01002406 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Wolfgang Denk932394a2005-08-17 12:55:25 +02002407 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01002408 * @offs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02002409 */
William Juulcfa460a2007-10-31 13:53:06 +01002410static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002411{
2412 /* Check for invalid offset */
William Juulcfa460a2007-10-31 13:53:06 +01002413 if (offs > mtd->size)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002414 return -EINVAL;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002415
William Juulcfa460a2007-10-31 13:53:06 +01002416 return nand_block_checkbad(mtd, offs, 1, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002417}
2418
2419/**
William Juulcfa460a2007-10-31 13:53:06 +01002420 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Wolfgang Denk932394a2005-08-17 12:55:25 +02002421 * @mtd: MTD device structure
2422 * @ofs: offset relative to mtd start
2423 */
William Juulcfa460a2007-10-31 13:53:06 +01002424static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002425{
William Juulcfa460a2007-10-31 13:53:06 +01002426 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002427 int ret;
2428
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002429 ret = nand_block_isbad(mtd, ofs);
2430 if (ret) {
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002431 /* If it was bad already, return success and do nothing. */
Wolfgang Denk932394a2005-08-17 12:55:25 +02002432 if (ret > 0)
2433 return 0;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002434 return ret;
2435 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002436
William Juulcfa460a2007-10-31 13:53:06 +01002437 return chip->block_markbad(mtd, ofs);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002438}
2439
William Juulcfa460a2007-10-31 13:53:06 +01002440/*
2441 * Set default functions
2442 */
2443static void nand_set_defaults(struct nand_chip *chip, int busw)
2444{
2445 /* check for proper chip_delay setup, set 20us if not */
2446 if (!chip->chip_delay)
2447 chip->chip_delay = 20;
2448
2449 /* check, if a user supplied command function given */
2450 if (chip->cmdfunc == NULL)
2451 chip->cmdfunc = nand_command;
2452
2453 /* check, if a user supplied wait function given */
2454 if (chip->waitfunc == NULL)
2455 chip->waitfunc = nand_wait;
2456
2457 if (!chip->select_chip)
2458 chip->select_chip = nand_select_chip;
2459 if (!chip->read_byte)
2460 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2461 if (!chip->read_word)
2462 chip->read_word = nand_read_word;
2463 if (!chip->block_bad)
2464 chip->block_bad = nand_block_bad;
2465 if (!chip->block_markbad)
2466 chip->block_markbad = nand_default_block_markbad;
2467 if (!chip->write_buf)
2468 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2469 if (!chip->read_buf)
2470 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2471 if (!chip->verify_buf)
2472 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2473 if (!chip->scan_bbt)
2474 chip->scan_bbt = nand_default_bbt;
Scott Wood5b8e6bb2010-08-25 17:42:49 -05002475 if (!chip->controller)
William Juulcfa460a2007-10-31 13:53:06 +01002476 chip->controller = &chip->hwcontrol;
William Juulcfa460a2007-10-31 13:53:06 +01002477}
2478
Florian Fainelli0272c712011-02-25 00:01:34 +00002479#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
2480static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
William Juulcfa460a2007-10-31 13:53:06 +01002481{
Florian Fainelli0272c712011-02-25 00:01:34 +00002482 int i;
William Juulcfa460a2007-10-31 13:53:06 +01002483
Florian Fainelli0272c712011-02-25 00:01:34 +00002484 while (len--) {
2485 crc ^= *p++ << 8;
2486 for (i = 0; i < 8; i++)
2487 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
Scott Woodc45912d2008-10-24 16:20:43 -05002488 }
2489
Florian Fainelli0272c712011-02-25 00:01:34 +00002490 return crc;
2491}
William Juulcfa460a2007-10-31 13:53:06 +01002492
Florian Fainelli0272c712011-02-25 00:01:34 +00002493/*
2494 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise
2495 */
Christian Hitz90e3f392011-10-12 09:32:01 +02002496static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00002497 int *busw)
2498{
2499 struct nand_onfi_params *p = &chip->onfi_params;
2500 int i;
2501 int val;
2502
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002503 /* try ONFI for unknow chip or LP */
Florian Fainelli0272c712011-02-25 00:01:34 +00002504 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2505 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2506 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2507 return 0;
2508
2509 printk(KERN_INFO "ONFI flash detected\n");
2510 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2511 for (i = 0; i < 3; i++) {
2512 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2513 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
Christian Hitz90e3f392011-10-12 09:32:01 +02002514 le16_to_cpu(p->crc)) {
Florian Fainelli0272c712011-02-25 00:01:34 +00002515 printk(KERN_INFO "ONFI param page %d valid\n", i);
Wolfgang Denkd1a24f02011-02-02 22:36:10 +01002516 break;
Florian Fainelli0272c712011-02-25 00:01:34 +00002517 }
Florian Fainelli3e9b3492010-06-12 20:59:25 +02002518 }
William Juulcfa460a2007-10-31 13:53:06 +01002519
Florian Fainelli0272c712011-02-25 00:01:34 +00002520 if (i == 3)
2521 return 0;
2522
2523 /* check version */
2524 val = le16_to_cpu(p->revision);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002525 if (val & (1 << 5))
2526 chip->onfi_version = 23;
2527 else if (val & (1 << 4))
Florian Fainelli0272c712011-02-25 00:01:34 +00002528 chip->onfi_version = 22;
2529 else if (val & (1 << 3))
2530 chip->onfi_version = 21;
2531 else if (val & (1 << 2))
2532 chip->onfi_version = 20;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002533 else if (val & (1 << 1))
Florian Fainelli0272c712011-02-25 00:01:34 +00002534 chip->onfi_version = 10;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002535 else
2536 chip->onfi_version = 0;
2537
2538 if (!chip->onfi_version) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002539 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2540 __func__, val);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002541 return 0;
2542 }
Florian Fainelli0272c712011-02-25 00:01:34 +00002543
William Juulcfa460a2007-10-31 13:53:06 +01002544 if (!mtd->name)
Florian Fainelli0272c712011-02-25 00:01:34 +00002545 mtd->name = p->model;
Florian Fainelli0272c712011-02-25 00:01:34 +00002546 mtd->writesize = le32_to_cpu(p->byte_per_page);
2547 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2548 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Florian Fainellia931f492011-04-03 18:23:52 +02002549 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Florian Fainelli0272c712011-02-25 00:01:34 +00002550 *busw = 0;
2551 if (le16_to_cpu(p->features) & 1)
2552 *busw = NAND_BUSWIDTH_16;
William Juulcfa460a2007-10-31 13:53:06 +01002553
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002554 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2555 chip->options |= (NAND_NO_READRDY |
2556 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2557
Florian Fainelli0272c712011-02-25 00:01:34 +00002558 return 1;
2559}
2560#else
2561static inline int nand_flash_detect_onfi(struct mtd_info *mtd,
2562 struct nand_chip *chip,
2563 int *busw)
2564{
2565 return 0;
2566}
2567#endif
2568
Florian Fainelli0272c712011-02-25 00:01:34 +00002569/*
2570 * Get the flash and manufacturer id and lookup if the type is supported
2571 */
2572static const struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
2573 struct nand_chip *chip,
2574 int busw,
2575 int *maf_id, int *dev_id,
2576 const struct nand_flash_dev *type)
2577{
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002578 int i, maf_idx;
2579 u8 id_data[8];
2580 int ret;
Florian Fainelli0272c712011-02-25 00:01:34 +00002581
2582 /* Select the device */
2583 chip->select_chip(mtd, 0);
2584
2585 /*
2586 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2587 * after power-up
2588 */
2589 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2590
2591 /* Send the command for reading device ID */
2592 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2593
2594 /* Read manufacturer and device IDs */
2595 *maf_id = chip->read_byte(mtd);
2596 *dev_id = chip->read_byte(mtd);
2597
2598 /* Try again to make sure, as some systems the bus-hold or other
2599 * interface concerns can cause random data which looks like a
2600 * possibly credible NAND flash to appear. If the two results do
2601 * not match, ignore the device completely.
2602 */
2603
2604 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2605
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002606 for (i = 0; i < 2; i++)
2607 id_data[i] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00002608
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002609 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Florian Fainelli0272c712011-02-25 00:01:34 +00002610 printk(KERN_INFO "%s: second ID read did not match "
2611 "%02x,%02x against %02x,%02x\n", __func__,
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002612 *maf_id, *dev_id, id_data[0], id_data[1]);
Florian Fainelli0272c712011-02-25 00:01:34 +00002613 return ERR_PTR(-ENODEV);
2614 }
2615
2616 if (!type)
2617 type = nand_flash_ids;
2618
2619 for (; type->name != NULL; type++)
2620 if (*dev_id == type->id)
2621 break;
2622
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002623 chip->onfi_version = 0;
2624 if (!type->name || !type->pagesize) {
2625 /* Check is chip is ONFI compliant */
2626 ret = nand_flash_detect_onfi(mtd, chip, &busw);
2627 if (ret)
2628 goto ident_done;
Florian Fainelli0272c712011-02-25 00:01:34 +00002629 }
2630
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002631 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2632
2633 /* Read entire ID string */
2634
2635 for (i = 0; i < 8; i++)
2636 id_data[i] = chip->read_byte(mtd);
2637
2638 if (!type->name)
2639 return ERR_PTR(-ENODEV);
2640
Florian Fainelli0272c712011-02-25 00:01:34 +00002641 if (!mtd->name)
2642 mtd->name = type->name;
2643
2644 chip->chipsize = (uint64_t)type->chipsize << 20;
Florian Fainelli0272c712011-02-25 00:01:34 +00002645
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002646 if (!type->pagesize && chip->init_size) {
2647 /* set the pagesize, oobsize, erasesize by the driver*/
2648 busw = chip->init_size(mtd, chip, id_data);
2649 } else if (!type->pagesize) {
2650 int extid;
2651 /* The 3rd id byte holds MLC / multichip data */
2652 chip->cellinfo = id_data[2];
2653 /* The 4th id byte is the important one */
2654 extid = id_data[3];
Florian Fainelli0272c712011-02-25 00:01:34 +00002655
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002656 /*
2657 * Field definitions are in the following datasheets:
2658 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
2659 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
2660 *
2661 * Check for wraparound + Samsung ID + nonzero 6th byte
2662 * to decide what to do.
2663 */
2664 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2665 id_data[0] == NAND_MFR_SAMSUNG &&
2666 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
2667 id_data[5] != 0x00) {
2668 /* Calc pagesize */
2669 mtd->writesize = 2048 << (extid & 0x03);
2670 extid >>= 2;
2671 /* Calc oobsize */
2672 switch (extid & 0x03) {
2673 case 1:
2674 mtd->oobsize = 128;
2675 break;
2676 case 2:
2677 mtd->oobsize = 218;
2678 break;
2679 case 3:
2680 mtd->oobsize = 400;
2681 break;
2682 default:
2683 mtd->oobsize = 436;
2684 break;
2685 }
2686 extid >>= 2;
2687 /* Calc blocksize */
2688 mtd->erasesize = (128 * 1024) <<
2689 (((extid >> 1) & 0x04) | (extid & 0x03));
2690 busw = 0;
2691 } else {
2692 /* Calc pagesize */
2693 mtd->writesize = 1024 << (extid & 0x03);
2694 extid >>= 2;
2695 /* Calc oobsize */
2696 mtd->oobsize = (8 << (extid & 0x01)) *
2697 (mtd->writesize >> 9);
2698 extid >>= 2;
2699 /* Calc blocksize. Blocksize is multiples of 64KiB */
2700 mtd->erasesize = (64 * 1024) << (extid & 0x03);
2701 extid >>= 2;
2702 /* Get buswidth information */
2703 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
2704 }
2705 } else {
2706 /*
2707 * Old devices have chip data hardcoded in the device id table
2708 */
2709 mtd->erasesize = type->erasesize;
2710 mtd->writesize = type->pagesize;
2711 mtd->oobsize = mtd->writesize / 32;
2712 busw = type->options & NAND_BUSWIDTH_16;
2713
2714 /*
2715 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
2716 * some Spansion chips have erasesize that conflicts with size
2717 * listed in nand_ids table
2718 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
2719 */
2720 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
2721 id_data[5] == 0x00 && id_data[6] == 0x00 &&
2722 id_data[7] == 0x00 && mtd->writesize == 512) {
2723 mtd->erasesize = 128 * 1024;
2724 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
2725 }
2726 }
Florian Fainelli0272c712011-02-25 00:01:34 +00002727 /* Get chip options, preserve non chip based options */
2728 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2729 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
2730
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002731 /* Check if chip is a not a samsung device. Do not clear the
2732 * options for chips which are not having an extended id.
2733 */
2734 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
2735 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
2736ident_done:
2737
Florian Fainelli0272c712011-02-25 00:01:34 +00002738 /*
2739 * Set chip as a default. Board drivers can override it, if necessary
2740 */
2741 chip->options |= NAND_NO_AUTOINCR;
William Juulcfa460a2007-10-31 13:53:06 +01002742
2743 /* Try to identify manufacturer */
2744 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
2745 if (nand_manuf_ids[maf_idx].id == *maf_id)
2746 break;
2747 }
2748
2749 /*
2750 * Check, if buswidth is correct. Hardware drivers should set
2751 * chip correct !
2752 */
2753 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
2754 printk(KERN_INFO "NAND device: Manufacturer ID:"
2755 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainelli0272c712011-02-25 00:01:34 +00002756 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
William Juulcfa460a2007-10-31 13:53:06 +01002757 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
2758 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
2759 busw ? 16 : 8);
2760 return ERR_PTR(-EINVAL);
2761 }
2762
2763 /* Calculate the address shift from the page size */
2764 chip->page_shift = ffs(mtd->writesize) - 1;
2765 /* Convert chipsize to number of pages per chip -1. */
2766 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
2767
2768 chip->bbt_erase_shift = chip->phys_erase_shift =
2769 ffs(mtd->erasesize) - 1;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002770 if (chip->chipsize & 0xffffffff)
Sandeep Paulraj4f41e7e2009-11-07 14:24:06 -05002771 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002772 else {
2773 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
2774 chip->chip_shift += 32 - 1;
2775 }
2776
2777 chip->badblockbits = 8;
William Juulcfa460a2007-10-31 13:53:06 +01002778
2779 /* Set the bad block position */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002780 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
2781 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
2782 else
2783 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
William Juulcfa460a2007-10-31 13:53:06 +01002784
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002785 /*
2786 * Bad block marker is stored in the last page of each block
2787 * on Samsung and Hynix MLC devices; stored in first two pages
2788 * of each block on Micron devices with 2KiB pages and on
2789 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
2790 * only the first page.
William Juulcfa460a2007-10-31 13:53:06 +01002791 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002792 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
2793 (*maf_id == NAND_MFR_SAMSUNG ||
2794 *maf_id == NAND_MFR_HYNIX))
2795 chip->options |= NAND_BBT_SCANLASTPAGE;
2796 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
2797 (*maf_id == NAND_MFR_SAMSUNG ||
2798 *maf_id == NAND_MFR_HYNIX ||
2799 *maf_id == NAND_MFR_TOSHIBA ||
2800 *maf_id == NAND_MFR_AMD)) ||
2801 (mtd->writesize == 2048 &&
2802 *maf_id == NAND_MFR_MICRON))
2803 chip->options |= NAND_BBT_SCAN2NDPAGE;
2804
2805 /*
2806 * Numonyx/ST 2K pages, x8 bus use BOTH byte 1 and 6
2807 */
2808 if (!(busw & NAND_BUSWIDTH_16) &&
2809 *maf_id == NAND_MFR_STMICRO &&
2810 mtd->writesize == 2048) {
2811 chip->options |= NAND_BBT_SCANBYTE1AND6;
2812 chip->badblockpos = 0;
2813 }
William Juulcfa460a2007-10-31 13:53:06 +01002814
2815 /* Check for AND chips with 4 page planes */
2816 if (chip->options & NAND_4PAGE_ARRAY)
2817 chip->erase_cmd = multi_erase_cmd;
2818 else
2819 chip->erase_cmd = single_erase_cmd;
2820
2821 /* Do not replace user supplied command function ! */
2822 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
2823 chip->cmdfunc = nand_command_lp;
2824
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002825 /* TODO onfi flash name */
Stefan Roesee52b34d2008-01-10 18:47:33 +01002826 MTDDEBUG (MTD_DEBUG_LEVEL0, "NAND device: Manufacturer ID:"
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002827 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
2828 nand_manuf_ids[maf_idx].name,
2829#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
2830 chip->onfi_version ? chip->onfi_params.model : type->name);
2831#else
2832 type->name);
2833#endif
William Juulcfa460a2007-10-31 13:53:06 +01002834
2835 return type;
2836}
2837
2838/**
2839 * nand_scan_ident - [NAND Interface] Scan for the NAND device
2840 * @mtd: MTD device structure
2841 * @maxchips: Number of chips to scan for
Lei Wen245eb902011-01-06 09:48:18 +08002842 * @table: Alternative NAND ID table
William Juulcfa460a2007-10-31 13:53:06 +01002843 *
2844 * This is the first phase of the normal nand_scan() function. It
2845 * reads the flash ID and sets up MTD fields accordingly.
2846 *
2847 * The mtd->owner field must be set to the module of the caller.
2848 */
Lei Wen245eb902011-01-06 09:48:18 +08002849int nand_scan_ident(struct mtd_info *mtd, int maxchips,
2850 const struct nand_flash_dev *table)
William Juulcfa460a2007-10-31 13:53:06 +01002851{
Florian Fainelli0272c712011-02-25 00:01:34 +00002852 int i, busw, nand_maf_id, nand_dev_id;
William Juulcfa460a2007-10-31 13:53:06 +01002853 struct nand_chip *chip = mtd->priv;
Mike Frysinger0bdecd82010-10-20 01:15:21 +00002854 const struct nand_flash_dev *type;
William Juulcfa460a2007-10-31 13:53:06 +01002855
2856 /* Get buswidth to select the correct functions */
2857 busw = chip->options & NAND_BUSWIDTH_16;
2858 /* Set the default functions */
2859 nand_set_defaults(chip, busw);
2860
2861 /* Read the flash type */
Christian Hitz90e3f392011-10-12 09:32:01 +02002862 type = nand_get_flash_type(mtd, chip, busw,
2863 &nand_maf_id, &nand_dev_id, table);
William Juulcfa460a2007-10-31 13:53:06 +01002864
2865 if (IS_ERR(type)) {
Peter Tyser10dc6a92009-02-04 13:39:40 -06002866#ifndef CONFIG_SYS_NAND_QUIET_TEST
William Juulcfa460a2007-10-31 13:53:06 +01002867 printk(KERN_WARNING "No NAND device found!!!\n");
Peter Tyser10dc6a92009-02-04 13:39:40 -06002868#endif
William Juulcfa460a2007-10-31 13:53:06 +01002869 chip->select_chip(mtd, -1);
2870 return PTR_ERR(type);
2871 }
2872
2873 /* Check for a chip array */
2874 for (i = 1; i < maxchips; i++) {
2875 chip->select_chip(mtd, i);
Karl Beldan33efde52008-09-15 16:08:03 +02002876 /* See comment in nand_get_flash_type for reset */
2877 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002878 /* Send the command for reading device ID */
2879 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2880 /* Read manufacturer and device IDs */
2881 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainelli0272c712011-02-25 00:01:34 +00002882 nand_dev_id != chip->read_byte(mtd))
William Juulcfa460a2007-10-31 13:53:06 +01002883 break;
2884 }
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01002885#ifdef DEBUG
William Juulcfa460a2007-10-31 13:53:06 +01002886 if (i > 1)
2887 printk(KERN_INFO "%d NAND chips detected\n", i);
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01002888#endif
William Juulcfa460a2007-10-31 13:53:06 +01002889
2890 /* Store the number of chips and calc total size for mtd */
2891 chip->numchips = i;
2892 mtd->size = i * chip->chipsize;
2893
2894 return 0;
2895}
2896
2897
2898/**
2899 * nand_scan_tail - [NAND Interface] Scan for the NAND device
2900 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01002901 *
2902 * This is the second phase of the normal nand_scan() function. It
2903 * fills out all the uninitialized function pointers with the defaults
2904 * and scans for a bad block table if appropriate.
2905 */
2906int nand_scan_tail(struct mtd_info *mtd)
2907{
2908 int i;
2909 struct nand_chip *chip = mtd->priv;
2910
2911 if (!(chip->options & NAND_OWN_BUFFERS))
2912 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
2913 if (!chip->buffers)
2914 return -ENOMEM;
2915
2916 /* Set the internal oob buffer location, just after the page data */
2917 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
2918
2919 /*
2920 * If no default placement scheme is given, select an appropriate one
2921 */
Christian Hitz4c6de852011-10-12 09:31:59 +02002922 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
William Juulcfa460a2007-10-31 13:53:06 +01002923 switch (mtd->oobsize) {
2924 case 8:
2925 chip->ecc.layout = &nand_oob_8;
2926 break;
2927 case 16:
2928 chip->ecc.layout = &nand_oob_16;
2929 break;
2930 case 64:
2931 chip->ecc.layout = &nand_oob_64;
2932 break;
2933 case 128:
2934 chip->ecc.layout = &nand_oob_128;
2935 break;
2936 default:
2937 printk(KERN_WARNING "No oob scheme defined for "
2938 "oobsize %d\n", mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01002939 }
2940 }
2941
2942 if (!chip->write_page)
2943 chip->write_page = nand_write_page;
2944
2945 /*
2946 * check ECC mode, default to software if 3byte/512byte hardware ECC is
2947 * selected and we have 256 byte pagesize fallback to software ECC
2948 */
William Juulcfa460a2007-10-31 13:53:06 +01002949
2950 switch (chip->ecc.mode) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04002951 case NAND_ECC_HW_OOB_FIRST:
2952 /* Similar to NAND_ECC_HW, but a separate read_page handle */
2953 if (!chip->ecc.calculate || !chip->ecc.correct ||
2954 !chip->ecc.hwctl) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002955 printk(KERN_WARNING "No ECC functions supplied; "
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04002956 "Hardware ECC not possible\n");
2957 BUG();
2958 }
2959 if (!chip->ecc.read_page)
2960 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
2961
William Juulcfa460a2007-10-31 13:53:06 +01002962 case NAND_ECC_HW:
2963 /* Use standard hwecc read page function ? */
2964 if (!chip->ecc.read_page)
2965 chip->ecc.read_page = nand_read_page_hwecc;
2966 if (!chip->ecc.write_page)
2967 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell7e866612009-11-07 16:27:01 -05002968 if (!chip->ecc.read_page_raw)
2969 chip->ecc.read_page_raw = nand_read_page_raw;
2970 if (!chip->ecc.write_page_raw)
2971 chip->ecc.write_page_raw = nand_write_page_raw;
William Juulcfa460a2007-10-31 13:53:06 +01002972 if (!chip->ecc.read_oob)
2973 chip->ecc.read_oob = nand_read_oob_std;
2974 if (!chip->ecc.write_oob)
2975 chip->ecc.write_oob = nand_write_oob_std;
2976
2977 case NAND_ECC_HW_SYNDROME:
Scott Wood41ef8c72008-03-18 15:29:14 -05002978 if ((!chip->ecc.calculate || !chip->ecc.correct ||
2979 !chip->ecc.hwctl) &&
2980 (!chip->ecc.read_page ||
2981 chip->ecc.read_page == nand_read_page_hwecc ||
2982 !chip->ecc.write_page ||
2983 chip->ecc.write_page == nand_write_page_hwecc)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02002984 printk(KERN_WARNING "No ECC functions supplied; "
William Juulcfa460a2007-10-31 13:53:06 +01002985 "Hardware ECC not possible\n");
2986 BUG();
2987 }
2988 /* Use standard syndrome read/write page function ? */
2989 if (!chip->ecc.read_page)
2990 chip->ecc.read_page = nand_read_page_syndrome;
2991 if (!chip->ecc.write_page)
2992 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell7e866612009-11-07 16:27:01 -05002993 if (!chip->ecc.read_page_raw)
2994 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
2995 if (!chip->ecc.write_page_raw)
2996 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
William Juulcfa460a2007-10-31 13:53:06 +01002997 if (!chip->ecc.read_oob)
2998 chip->ecc.read_oob = nand_read_oob_syndrome;
2999 if (!chip->ecc.write_oob)
3000 chip->ecc.write_oob = nand_write_oob_syndrome;
3001
3002 if (mtd->writesize >= chip->ecc.size)
3003 break;
3004 printk(KERN_WARNING "%d byte HW ECC not possible on "
3005 "%d byte page size, fallback to SW ECC\n",
3006 chip->ecc.size, mtd->writesize);
3007 chip->ecc.mode = NAND_ECC_SOFT;
3008
3009 case NAND_ECC_SOFT:
3010 chip->ecc.calculate = nand_calculate_ecc;
3011 chip->ecc.correct = nand_correct_data;
3012 chip->ecc.read_page = nand_read_page_swecc;
Scott Woodc45912d2008-10-24 16:20:43 -05003013 chip->ecc.read_subpage = nand_read_subpage;
William Juulcfa460a2007-10-31 13:53:06 +01003014 chip->ecc.write_page = nand_write_page_swecc;
David Brownell7e866612009-11-07 16:27:01 -05003015 chip->ecc.read_page_raw = nand_read_page_raw;
3016 chip->ecc.write_page_raw = nand_write_page_raw;
William Juulcfa460a2007-10-31 13:53:06 +01003017 chip->ecc.read_oob = nand_read_oob_std;
3018 chip->ecc.write_oob = nand_write_oob_std;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003019 if (!chip->ecc.size)
3020 chip->ecc.size = 256;
William Juulcfa460a2007-10-31 13:53:06 +01003021 chip->ecc.bytes = 3;
3022 break;
3023
Christian Hitz4c6de852011-10-12 09:31:59 +02003024 case NAND_ECC_SOFT_BCH:
3025 if (!mtd_nand_has_bch()) {
3026 printk(KERN_WARNING "CONFIG_MTD_ECC_BCH not enabled\n");
3027 return -EINVAL;
3028 }
3029 chip->ecc.calculate = nand_bch_calculate_ecc;
3030 chip->ecc.correct = nand_bch_correct_data;
3031 chip->ecc.read_page = nand_read_page_swecc;
3032 chip->ecc.read_subpage = nand_read_subpage;
3033 chip->ecc.write_page = nand_write_page_swecc;
3034 chip->ecc.read_page_raw = nand_read_page_raw;
3035 chip->ecc.write_page_raw = nand_write_page_raw;
3036 chip->ecc.read_oob = nand_read_oob_std;
3037 chip->ecc.write_oob = nand_write_oob_std;
3038 /*
3039 * Board driver should supply ecc.size and ecc.bytes values to
3040 * select how many bits are correctable; see nand_bch_init()
3041 * for details.
3042 * Otherwise, default to 4 bits for large page devices
3043 */
3044 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3045 chip->ecc.size = 512;
3046 chip->ecc.bytes = 7;
3047 }
3048 chip->ecc.priv = nand_bch_init(mtd,
3049 chip->ecc.size,
3050 chip->ecc.bytes,
3051 &chip->ecc.layout);
3052 if (!chip->ecc.priv)
3053 printk(KERN_WARNING "BCH ECC initialization failed!\n");
3054
3055 break;
3056
William Juulcfa460a2007-10-31 13:53:06 +01003057 case NAND_ECC_NONE:
3058 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3059 "This is not recommended !!\n");
3060 chip->ecc.read_page = nand_read_page_raw;
3061 chip->ecc.write_page = nand_write_page_raw;
3062 chip->ecc.read_oob = nand_read_oob_std;
David Brownell7e866612009-11-07 16:27:01 -05003063 chip->ecc.read_page_raw = nand_read_page_raw;
3064 chip->ecc.write_page_raw = nand_write_page_raw;
William Juulcfa460a2007-10-31 13:53:06 +01003065 chip->ecc.write_oob = nand_write_oob_std;
3066 chip->ecc.size = mtd->writesize;
3067 chip->ecc.bytes = 0;
3068 break;
3069
3070 default:
3071 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
3072 chip->ecc.mode);
3073 BUG();
3074 }
3075
3076 /*
3077 * The number of bytes available for a client to place data into
3078 * the out of band area
3079 */
3080 chip->ecc.layout->oobavail = 0;
Sandeep Paulraj5df3c2b2009-11-07 14:25:18 -05003081 for (i = 0; chip->ecc.layout->oobfree[i].length
3082 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
William Juulcfa460a2007-10-31 13:53:06 +01003083 chip->ecc.layout->oobavail +=
3084 chip->ecc.layout->oobfree[i].length;
3085 mtd->oobavail = chip->ecc.layout->oobavail;
3086
3087 /*
3088 * Set the number of read / write steps for one page depending on ECC
3089 * mode
3090 */
3091 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Christian Hitz90e3f392011-10-12 09:32:01 +02003092 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
William Juulcfa460a2007-10-31 13:53:06 +01003093 printk(KERN_WARNING "Invalid ecc parameters\n");
3094 BUG();
3095 }
3096 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
3097
3098 /*
3099 * Allow subpage writes up to ecc.steps. Not possible for MLC
3100 * FLASH.
3101 */
3102 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3103 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Christian Hitz90e3f392011-10-12 09:32:01 +02003104 switch (chip->ecc.steps) {
William Juulcfa460a2007-10-31 13:53:06 +01003105 case 2:
3106 mtd->subpage_sft = 1;
3107 break;
3108 case 4:
3109 case 8:
Sandeep Paulrajaad4a282009-11-07 14:24:34 -05003110 case 16:
William Juulcfa460a2007-10-31 13:53:06 +01003111 mtd->subpage_sft = 2;
3112 break;
3113 }
3114 }
3115 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3116
3117 /* Initialize state */
3118 chip->state = FL_READY;
3119
3120 /* De-select the device */
3121 chip->select_chip(mtd, -1);
3122
3123 /* Invalidate the pagebuffer reference */
3124 chip->pagebuf = -1;
3125
3126 /* Fill in remaining MTD driver data */
3127 mtd->type = MTD_NANDFLASH;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003128 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3129 MTD_CAP_NANDFLASH;
William Juulcfa460a2007-10-31 13:53:06 +01003130 mtd->erase = nand_erase;
3131 mtd->point = NULL;
3132 mtd->unpoint = NULL;
3133 mtd->read = nand_read;
3134 mtd->write = nand_write;
3135 mtd->read_oob = nand_read_oob;
3136 mtd->write_oob = nand_write_oob;
3137 mtd->sync = nand_sync;
3138 mtd->lock = NULL;
3139 mtd->unlock = NULL;
William Juulcfa460a2007-10-31 13:53:06 +01003140 mtd->block_isbad = nand_block_isbad;
3141 mtd->block_markbad = nand_block_markbad;
3142
3143 /* propagate ecc.layout to mtd_info */
3144 mtd->ecclayout = chip->ecc.layout;
3145
3146 /* Check, if we should skip the bad block table scan */
3147 if (chip->options & NAND_SKIP_BBTSCAN)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003148 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01003149
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003150 /* Build bad block table */
3151 return chip->scan_bbt(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01003152}
3153
William Juulcfa460a2007-10-31 13:53:06 +01003154/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02003155 * nand_scan - [NAND Interface] Scan for the NAND device
3156 * @mtd: MTD device structure
3157 * @maxchips: Number of chips to scan for
3158 *
William Juulcfa460a2007-10-31 13:53:06 +01003159 * This fills out all the uninitialized function pointers
Wolfgang Denk932394a2005-08-17 12:55:25 +02003160 * with the defaults.
3161 * The flash ID is read and the mtd/chip structures are
William Juulcfa460a2007-10-31 13:53:06 +01003162 * filled with the appropriate values.
3163 * The mtd->owner field must be set to the module of the caller
Wolfgang Denk932394a2005-08-17 12:55:25 +02003164 *
3165 */
William Juulcfa460a2007-10-31 13:53:06 +01003166int nand_scan(struct mtd_info *mtd, int maxchips)
Wolfgang Denk932394a2005-08-17 12:55:25 +02003167{
William Juulcfa460a2007-10-31 13:53:06 +01003168 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02003169
Lei Wen245eb902011-01-06 09:48:18 +08003170 ret = nand_scan_ident(mtd, maxchips, NULL);
William Juulcfa460a2007-10-31 13:53:06 +01003171 if (!ret)
3172 ret = nand_scan_tail(mtd);
3173 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02003174}
3175
3176/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02003177 * nand_release - [NAND Interface] Free resources held by the NAND device
Wolfgang Denk932394a2005-08-17 12:55:25 +02003178 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01003179*/
3180void nand_release(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02003181{
William Juulcfa460a2007-10-31 13:53:06 +01003182 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02003183
Christian Hitz4c6de852011-10-12 09:31:59 +02003184 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3185 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3186
Wolfgang Denk932394a2005-08-17 12:55:25 +02003187#ifdef CONFIG_MTD_PARTITIONS
3188 /* Deregister partitions */
William Juulcfa460a2007-10-31 13:53:06 +01003189 del_mtd_partitions(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02003190#endif
William Juulcfa460a2007-10-31 13:53:06 +01003191
3192 /* Free bad block table memory */
3193 kfree(chip->bbt);
3194 if (!(chip->options & NAND_OWN_BUFFERS))
3195 kfree(chip->buffers);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003196
3197 /* Free bad block descriptor memory */
3198 if (chip->badblock_pattern && chip->badblock_pattern->options
3199 & NAND_BBT_DYNAMICSTRUCT)
3200 kfree(chip->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02003201}