blob: 922b890c8fcb28ebcb25293a266bea10da2beacc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
7 * Basic support for AG-AND chips is provided.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +020010 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020015 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 * David Woodhouse for adding multichip support
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020021 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Enable cached programming for 2k page size chips
23 * Check, if mtd->ecctype should be set to MTD_ECC_HW
24 * if we have HW ecc support.
25 * The AG-AND chips have nice features for speed improvement,
26 * which are not supported yet. Read / program 4 pages in one go.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030027 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License version 2 as
31 * published by the Free Software Foundation.
32 *
33 */
34
David Woodhouse552d9202006-05-14 01:20:46 +010035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/interrupt.h>
46#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080047#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020048#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#ifdef CONFIG_MTD_PARTITIONS
51#include <linux/mtd/partitions.h>
52#endif
53
54/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020055static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .eccbytes = 3,
57 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020058 .oobfree = {
59 {.offset = 3,
60 .length = 2},
61 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020062 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020065static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 .eccbytes = 6,
67 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020068 .oobfree = {
69 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020070 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020073static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .eccbytes = 24,
75 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010076 40, 41, 42, 43, 44, 45, 46, 47,
77 48, 49, 50, 51, 52, 53, 54, 55,
78 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020079 .oobfree = {
80 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020081 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Thomas Gleixner81ec5362007-12-12 17:27:03 +010084static struct nand_ecclayout nand_oob_128 = {
85 .eccbytes = 48,
86 .eccpos = {
87 80, 81, 82, 83, 84, 85, 86, 87,
88 88, 89, 90, 91, 92, 93, 94, 95,
89 96, 97, 98, 99, 100, 101, 102, 103,
90 104, 105, 106, 107, 108, 109, 110, 111,
91 112, 113, 114, 115, 116, 117, 118, 119,
92 120, 121, 122, 123, 124, 125, 126, 127},
93 .oobfree = {
94 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020095 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010096};
97
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020098static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020099 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200101static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
102 struct mtd_oob_ops *ops);
103
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104/*
Joe Perches8e87d782008-02-03 17:22:34 +0200105 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200106 * compiled away when LED support is disabled.
107 */
108DEFINE_LED_TRIGGER(nand_led_trigger);
109
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530110static int check_offs_len(struct mtd_info *mtd,
111 loff_t ofs, uint64_t len)
112{
113 struct nand_chip *chip = mtd->priv;
114 int ret = 0;
115
116 /* Start address must align on block boundary */
117 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
118 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
119 ret = -EINVAL;
120 }
121
122 /* Length must align on block boundary */
123 if (len & ((1 << chip->phys_erase_shift) - 1)) {
124 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
125 __func__);
126 ret = -EINVAL;
127 }
128
129 /* Do not allow past end of device */
130 if (ofs + len > mtd->size) {
131 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
132 __func__);
133 ret = -EINVAL;
134 }
135
136 return ret;
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
140 * nand_release_device - [GENERIC] release chip
141 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000142 *
143 * Deselect, release chip lock and wake up anyone waiting on the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100145static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200147 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200150 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100151
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200152 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200153 spin_lock(&chip->controller->lock);
154 chip->controller->active = NULL;
155 chip->state = FL_READY;
156 wake_up(&chip->controller->wq);
157 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/**
161 * nand_read_byte - [DEFAULT] read one byte from the chip
162 * @mtd: MTD device structure
163 *
164 * Default read function for 8bit buswith
165 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200166static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200168 struct nand_chip *chip = mtd->priv;
169 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
174 * @mtd: MTD device structure
175 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000176 * Default read function for 16bit buswith with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * endianess conversion
178 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200179static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200181 struct nand_chip *chip = mtd->priv;
182 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * nand_read_word - [DEFAULT] read one word from the chip
187 * @mtd: MTD device structure
188 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000189 * Default read function for 16bit buswith without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * endianess conversion
191 */
192static u16 nand_read_word(struct mtd_info *mtd)
193{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200194 struct nand_chip *chip = mtd->priv;
195 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * nand_select_chip - [DEFAULT] control CE line
200 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700201 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 *
203 * Default select function for 1 chip devices.
204 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200205static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200207 struct nand_chip *chip = mtd->priv;
208
209 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200211 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215
216 default:
217 BUG();
218 }
219}
220
221/**
222 * nand_write_buf - [DEFAULT] write buffer to chip
223 * @mtd: MTD device structure
224 * @buf: data buffer
225 * @len: number of bytes to write
226 *
227 * Default write function for 8bit buswith
228 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200229static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200232 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
David Woodhousee0c7d762006-05-13 18:07:53 +0100234 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200235 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000239 * nand_read_buf - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * @mtd: MTD device structure
241 * @buf: buffer to store date
242 * @len: number of bytes to read
243 *
244 * Default read function for 8bit buswith
245 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200246static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200249 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
David Woodhousee0c7d762006-05-13 18:07:53 +0100251 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200252 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000256 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * @mtd: MTD device structure
258 * @buf: buffer containing the data to compare
259 * @len: number of bytes to compare
260 *
261 * Default verify function for 8bit buswith
262 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200263static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200266 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David Woodhousee0c7d762006-05-13 18:07:53 +0100268 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200269 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return 0;
272}
273
274/**
275 * nand_write_buf16 - [DEFAULT] write buffer to chip
276 * @mtd: MTD device structure
277 * @buf: data buffer
278 * @len: number of bytes to write
279 *
280 * Default write function for 16bit buswith
281 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200282static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200285 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 u16 *p = (u16 *) buf;
287 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000288
David Woodhousee0c7d762006-05-13 18:07:53 +0100289 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200290 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000295 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * @mtd: MTD device structure
297 * @buf: buffer to store date
298 * @len: number of bytes to read
299 *
300 * Default read function for 16bit buswith
301 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200302static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200305 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 u16 *p = (u16 *) buf;
307 len >>= 1;
308
David Woodhousee0c7d762006-05-13 18:07:53 +0100309 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200310 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000314 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * @mtd: MTD device structure
316 * @buf: buffer containing the data to compare
317 * @len: number of bytes to compare
318 *
319 * Default verify function for 16bit buswith
320 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200321static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200324 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 u16 *p = (u16 *) buf;
326 len >>= 1;
327
David Woodhousee0c7d762006-05-13 18:07:53 +0100328 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200329 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return -EFAULT;
331
332 return 0;
333}
334
335/**
336 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
337 * @mtd: MTD device structure
338 * @ofs: offset from device start
339 * @getchip: 0, if the chip is already selected
340 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000341 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
343static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
344{
345 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200346 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 u16 bad;
348
Brian Norris30fe8112010-06-23 13:36:02 -0700349 if (chip->options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700350 ofs += mtd->erasesize - mtd->writesize;
351
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100352 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200357 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200360 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200363 if (chip->options & NAND_BUSWIDTH_16) {
364 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100365 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200366 bad = cpu_to_le16(chip->read_word(mtd));
367 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000368 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200369 else
370 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100372 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200373 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000375
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200376 if (likely(chip->badblockbits == 8))
377 res = bad != 0xFF;
378 else
379 res = hweight8(bad) < chip->badblockbits;
380
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200381 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return res;
385}
386
387/**
388 * nand_default_block_markbad - [DEFAULT] mark a block bad
389 * @mtd: MTD device structure
390 * @ofs: offset from device start
391 *
392 * This is the default implementation, which can be overridden by
393 * a hardware specific driver.
394*/
395static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
396{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200397 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200398 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700399 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000400
Brian Norris30fe8112010-06-23 13:36:02 -0700401 if (chip->options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700402 ofs += mtd->erasesize - mtd->writesize;
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400405 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200406 if (chip->bbt)
407 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* Do we have a flash based bad block table ? */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200410 if (chip->options & NAND_USE_FLASH_BBT)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200411 ret = nand_update_bbt(mtd, ofs);
412 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300413 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000414
Brian Norris02ed70b2010-07-21 16:53:47 -0700415 /* Write to first two pages and to byte 1 and 6 if necessary.
416 * If we write to more than one location, the first error
417 * encountered quits the procedure. We write two bytes per
418 * location, so we dont have to mess with 16 bit access.
419 */
420 do {
421 chip->ops.len = chip->ops.ooblen = 2;
422 chip->ops.datbuf = NULL;
423 chip->ops.oobbuf = buf;
424 chip->ops.ooboffs = chip->badblockpos & ~0x01;
425
426 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
427
428 if (!ret && (chip->options & NAND_BBT_SCANBYTE1AND6)) {
429 chip->ops.ooboffs = NAND_SMALL_BADBLOCK_POS
430 & ~0x01;
431 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
432 }
433 i++;
434 ofs += mtd->writesize;
435 } while (!ret && (chip->options & NAND_BBT_SCAN2NDPAGE) &&
436 i < 2);
437
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300438 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200439 }
440 if (!ret)
441 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300442
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000446/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * nand_check_wp - [GENERIC] check if the chip is write protected
448 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000449 * Check, if the device is write protected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000451 * The function expects, that the device is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100453static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200455 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200456
457 /* broken xD cards report WP despite being writable */
458 if (chip->options & NAND_BROKEN_XD)
459 return 0;
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200462 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
463 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466/**
467 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
468 * @mtd: MTD device structure
469 * @ofs: offset from device start
470 * @getchip: 0, if the chip is already selected
471 * @allowbbt: 1, if its allowed to access the bbt area
472 *
473 * Check, if the block is bad. Either by reading the bad block table or
474 * calling of the scan function.
475 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200476static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
477 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200479 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000480
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200481 if (!chip->bbt)
482 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100485 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200488/**
489 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
490 * @mtd: MTD device structure
491 * @timeo: Timeout
492 *
493 * Helper function for nand_wait_ready used when needing to wait in interrupt
494 * context.
495 */
496static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
497{
498 struct nand_chip *chip = mtd->priv;
499 int i;
500
501 /* Wait for the device to get ready */
502 for (i = 0; i < timeo; i++) {
503 if (chip->dev_ready(mtd))
504 break;
505 touch_softlockup_watchdog();
506 mdelay(1);
507 }
508}
509
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000510/*
Thomas Gleixner3b887752005-02-22 21:56:49 +0000511 * Wait for the ready pin, after a command
512 * The timeout is catched later.
513 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100514void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000515{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200516 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100517 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000518
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200519 /* 400ms timeout */
520 if (in_interrupt() || oops_in_progress)
521 return panic_nand_wait_ready(mtd, 400);
522
Richard Purdie8fe833c2006-03-31 02:31:14 -0800523 led_trigger_event(nand_led_trigger, LED_FULL);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000524 /* wait until command is processed or timeout occures */
525 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200526 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800527 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700528 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000529 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800530 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000531}
David Woodhouse4b648b02006-09-25 17:05:24 +0100532EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/**
535 * nand_command - [DEFAULT] Send command to NAND device
536 * @mtd: MTD device structure
537 * @command: the command to be sent
538 * @column: the column address for this command, -1 if none
539 * @page_addr: the page address for this command, -1 if none
540 *
541 * Send command to NAND device. This function is used for small page
542 * devices (256/512 Bytes per page)
543 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200544static void nand_command(struct mtd_info *mtd, unsigned int command,
545 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200547 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200548 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /*
551 * Write out the command to the device.
552 */
553 if (command == NAND_CMD_SEQIN) {
554 int readcmd;
555
Joern Engel28318772006-05-22 23:18:05 +0200556 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200558 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 readcmd = NAND_CMD_READOOB;
560 } else if (column < 256) {
561 /* First 256 bytes --> READ0 */
562 readcmd = NAND_CMD_READ0;
563 } else {
564 column -= 256;
565 readcmd = NAND_CMD_READ1;
566 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200567 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200568 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200570 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200572 /*
573 * Address cycle, when necessary
574 */
575 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
576 /* Serially input address */
577 if (column != -1) {
578 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200580 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200581 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200582 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200584 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200585 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200586 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200587 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200588 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200589 if (chip->chipsize > (32 << 20))
590 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200591 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200592 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000593
594 /*
595 * program and erase have their own busy handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 case NAND_CMD_PAGEPROG:
601 case NAND_CMD_ERASE1:
602 case NAND_CMD_ERASE2:
603 case NAND_CMD_SEQIN:
604 case NAND_CMD_STATUS:
605 return;
606
607 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200608 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200610 udelay(chip->chip_delay);
611 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200612 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200613 chip->cmd_ctrl(mtd,
614 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200615 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
616 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return;
618
David Woodhousee0c7d762006-05-13 18:07:53 +0100619 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000621 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 * If we don't have access to the busy pin, we apply the given
623 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100624 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200625 if (!chip->dev_ready) {
626 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Apply this short delay always to ensure that we do wait tWB in
631 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100632 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000633
634 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637/**
638 * nand_command_lp - [DEFAULT] Send command to NAND large page device
639 * @mtd: MTD device structure
640 * @command: the command to be sent
641 * @column: the column address for this command, -1 if none
642 * @page_addr: the page address for this command, -1 if none
643 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200644 * Send command to NAND device. This is the version for the new large page
645 * devices We dont have the separate regions as we have in the small page
646 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
649 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200651 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Emulate NAND_CMD_READOOB */
654 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200655 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 command = NAND_CMD_READ0;
657 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000658
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200659 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200661 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200664 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /* Serially input address */
667 if (column != -1) {
668 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200669 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200671 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200672 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200673 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200676 chip->cmd_ctrl(mtd, page_addr, ctrl);
677 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200678 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200680 if (chip->chipsize > (128 << 20))
681 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200682 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200685 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000686
687 /*
688 * program and erase have their own busy handlers
David A. Marlin30f464b2005-01-17 18:35:25 +0000689 * status, sequential in, and deplete1 need no delay
690 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 case NAND_CMD_CACHEDPROG:
694 case NAND_CMD_PAGEPROG:
695 case NAND_CMD_ERASE1:
696 case NAND_CMD_ERASE2:
697 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200698 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000700 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return;
702
David Woodhousee0c7d762006-05-13 18:07:53 +0100703 /*
704 * read error status commands require only a short delay
705 */
David A. Marlin30f464b2005-01-17 18:35:25 +0000706 case NAND_CMD_STATUS_ERROR:
707 case NAND_CMD_STATUS_ERROR0:
708 case NAND_CMD_STATUS_ERROR1:
709 case NAND_CMD_STATUS_ERROR2:
710 case NAND_CMD_STATUS_ERROR3:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200711 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200715 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200717 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200718 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
719 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
720 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
721 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200722 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
723 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return;
725
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200726 case NAND_CMD_RNDOUT:
727 /* No ready / busy check necessary */
728 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
729 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
730 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
731 NAND_NCE | NAND_CTRL_CHANGE);
732 return;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200735 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
736 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
737 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
738 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000739
David Woodhousee0c7d762006-05-13 18:07:53 +0100740 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000742 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 * If we don't have access to the busy pin, we apply the given
744 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100745 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200746 if (!chip->dev_ready) {
747 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* Apply this short delay always to ensure that we do wait tWB in
753 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100754 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000755
756 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200760 * panic_nand_get_device - [GENERIC] Get chip for selected access
761 * @chip: the nand chip descriptor
762 * @mtd: MTD device structure
763 * @new_state: the state which is requested
764 *
765 * Used when in panic, no locks are taken.
766 */
767static void panic_nand_get_device(struct nand_chip *chip,
768 struct mtd_info *mtd, int new_state)
769{
770 /* Hardware controller shared among independend devices */
771 chip->controller->active = chip;
772 chip->state = new_state;
773}
774
775/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * nand_get_device - [GENERIC] Get chip for selected access
Randy Dunlap844d3b42006-06-28 21:48:27 -0700777 * @chip: the nand chip descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000779 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 *
781 * Get the device and lock it for exclusive access
782 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200783static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200784nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200786 spinlock_t *lock = &chip->controller->lock;
787 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100788 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200789retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100790 spin_lock(lock);
791
vimal singhb8b3ee92009-07-09 20:41:22 +0530792 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200793 if (!chip->controller->active)
794 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200795
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200796 if (chip->controller->active == chip && chip->state == FL_READY) {
797 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100798 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100799 return 0;
800 }
801 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800802 if (chip->controller->active->state == FL_PM_SUSPENDED) {
803 chip->state = FL_PM_SUSPENDED;
804 spin_unlock(lock);
805 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800806 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100807 }
808 set_current_state(TASK_UNINTERRUPTIBLE);
809 add_wait_queue(wq, &wait);
810 spin_unlock(lock);
811 schedule();
812 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 goto retry;
814}
815
816/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200817 * panic_nand_wait - [GENERIC] wait until the command is done
818 * @mtd: MTD device structure
819 * @chip: NAND chip structure
820 * @timeo: Timeout
821 *
822 * Wait for command done. This is a helper function for nand_wait used when
823 * we are in interrupt context. May happen when in panic and trying to write
824 * an oops trough mtdoops.
825 */
826static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
827 unsigned long timeo)
828{
829 int i;
830 for (i = 0; i < timeo; i++) {
831 if (chip->dev_ready) {
832 if (chip->dev_ready(mtd))
833 break;
834 } else {
835 if (chip->read_byte(mtd) & NAND_STATUS_READY)
836 break;
837 }
838 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200839 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200840}
841
842/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * nand_wait - [DEFAULT] wait until the command is done
844 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -0700845 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 *
847 * Wait for command done. This applies to erase and program only
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000848 * Erase can take up to 400ms and program up to 20ms according to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 * general NAND and SmartMedia specs
Randy Dunlap844d3b42006-06-28 21:48:27 -0700850 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200851static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853
David Woodhousee0c7d762006-05-13 18:07:53 +0100854 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200855 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100858 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100860 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Richard Purdie8fe833c2006-03-31 02:31:14 -0800862 led_trigger_event(nand_led_trigger, LED_FULL);
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* Apply this short delay always to ensure that we do wait tWB in
865 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100866 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200868 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
869 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000870 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200871 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200873 if (in_interrupt() || oops_in_progress)
874 panic_nand_wait(mtd, chip, timeo);
875 else {
876 while (time_before(jiffies, timeo)) {
877 if (chip->dev_ready) {
878 if (chip->dev_ready(mtd))
879 break;
880 } else {
881 if (chip->read_byte(mtd) & NAND_STATUS_READY)
882 break;
883 }
884 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800887 led_trigger_event(nand_led_trigger, LED_OFF);
888
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200889 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return status;
891}
892
893/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700894 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530895 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700896 * @mtd: mtd info
897 * @ofs: offset to start unlock from
898 * @len: length to unlock
899 * @invert: when = 0, unlock the range of blocks within the lower and
Vimal Singh7d70f332010-02-08 15:50:49 +0530900 * upper boundary address
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700901 * when = 1, unlock the range of blocks outside the boundaries
Vimal Singh7d70f332010-02-08 15:50:49 +0530902 * of the lower and upper boundary address
903 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700904 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530905 */
906static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
907 uint64_t len, int invert)
908{
909 int ret = 0;
910 int status, page;
911 struct nand_chip *chip = mtd->priv;
912
913 /* Submit address of first page to unlock */
914 page = ofs >> chip->page_shift;
915 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
916
917 /* Submit address of last page to unlock */
918 page = (ofs + len) >> chip->page_shift;
919 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
920 (page | invert) & chip->pagemask);
921
922 /* Call wait ready function */
923 status = chip->waitfunc(mtd, chip);
924 udelay(1000);
925 /* See if device thinks it succeeded */
926 if (status & 0x01) {
927 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
928 __func__, status);
929 ret = -EIO;
930 }
931
932 return ret;
933}
934
935/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700936 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Vimal Singh7d70f332010-02-08 15:50:49 +0530937 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700938 * @mtd: mtd info
939 * @ofs: offset to start unlock from
940 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530941 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700942 * return - unlock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530943 */
944int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
945{
946 int ret = 0;
947 int chipnr;
948 struct nand_chip *chip = mtd->priv;
949
950 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
951 __func__, (unsigned long long)ofs, len);
952
953 if (check_offs_len(mtd, ofs, len))
954 ret = -EINVAL;
955
956 /* Align to last block address if size addresses end of the device */
957 if (ofs + len == mtd->size)
958 len -= mtd->erasesize;
959
960 nand_get_device(chip, mtd, FL_UNLOCKING);
961
962 /* Shift to get chip number */
963 chipnr = ofs >> chip->chip_shift;
964
965 chip->select_chip(mtd, chipnr);
966
967 /* Check, if it is write protected */
968 if (nand_check_wp(mtd)) {
969 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
970 __func__);
971 ret = -EIO;
972 goto out;
973 }
974
975 ret = __nand_unlock(mtd, ofs, len, 0);
976
977out:
978 /* de-select the NAND device */
979 chip->select_chip(mtd, -1);
980
981 nand_release_device(mtd);
982
983 return ret;
984}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200985EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530986
987/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700988 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Vimal Singh7d70f332010-02-08 15:50:49 +0530989 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700990 * @mtd: mtd info
991 * @ofs: offset to start unlock from
992 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530993 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700994 * return - lock status
Vimal Singh7d70f332010-02-08 15:50:49 +0530995 *
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700996 * This feature is not supported in many NAND parts. 'Micron' NAND parts
997 * do have this feature, but it allows only to lock all blocks, not for
Vimal Singh7d70f332010-02-08 15:50:49 +0530998 * specified range for block.
999 *
1000 * Implementing 'lock' feature by making use of 'unlock', for now.
1001 */
1002int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1003{
1004 int ret = 0;
1005 int chipnr, status, page;
1006 struct nand_chip *chip = mtd->priv;
1007
1008 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
1009 __func__, (unsigned long long)ofs, len);
1010
1011 if (check_offs_len(mtd, ofs, len))
1012 ret = -EINVAL;
1013
1014 nand_get_device(chip, mtd, FL_LOCKING);
1015
1016 /* Shift to get chip number */
1017 chipnr = ofs >> chip->chip_shift;
1018
1019 chip->select_chip(mtd, chipnr);
1020
1021 /* Check, if it is write protected */
1022 if (nand_check_wp(mtd)) {
1023 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1024 __func__);
1025 status = MTD_ERASE_FAILED;
1026 ret = -EIO;
1027 goto out;
1028 }
1029
1030 /* Submit address of first page to lock */
1031 page = ofs >> chip->page_shift;
1032 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1033
1034 /* Call wait ready function */
1035 status = chip->waitfunc(mtd, chip);
1036 udelay(1000);
1037 /* See if device thinks it succeeded */
1038 if (status & 0x01) {
1039 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1040 __func__, status);
1041 ret = -EIO;
1042 goto out;
1043 }
1044
1045 ret = __nand_unlock(mtd, ofs, len, 0x1);
1046
1047out:
1048 /* de-select the NAND device */
1049 chip->select_chip(mtd, -1);
1050
1051 nand_release_device(mtd);
1052
1053 return ret;
1054}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001055EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301056
1057/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001058 * nand_read_page_raw - [Intern] read raw page data without ecc
1059 * @mtd: mtd info structure
1060 * @chip: nand chip info structure
1061 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001062 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001063 *
1064 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001065 */
1066static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001067 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001068{
1069 chip->read_buf(mtd, buf, mtd->writesize);
1070 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1071 return 0;
1072}
1073
1074/**
David Brownell52ff49d2009-03-04 12:01:36 -08001075 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
1076 * @mtd: mtd info structure
1077 * @chip: nand chip info structure
1078 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001079 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001080 *
1081 * We need a special oob layout and handling even when OOB isn't used.
1082 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001083static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1084 struct nand_chip *chip,
1085 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001086{
1087 int eccsize = chip->ecc.size;
1088 int eccbytes = chip->ecc.bytes;
1089 uint8_t *oob = chip->oob_poi;
1090 int steps, size;
1091
1092 for (steps = chip->ecc.steps; steps > 0; steps--) {
1093 chip->read_buf(mtd, buf, eccsize);
1094 buf += eccsize;
1095
1096 if (chip->ecc.prepad) {
1097 chip->read_buf(mtd, oob, chip->ecc.prepad);
1098 oob += chip->ecc.prepad;
1099 }
1100
1101 chip->read_buf(mtd, oob, eccbytes);
1102 oob += eccbytes;
1103
1104 if (chip->ecc.postpad) {
1105 chip->read_buf(mtd, oob, chip->ecc.postpad);
1106 oob += chip->ecc.postpad;
1107 }
1108 }
1109
1110 size = mtd->oobsize - (oob - chip->oob_poi);
1111 if (size)
1112 chip->read_buf(mtd, oob, size);
1113
1114 return 0;
1115}
1116
1117/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001118 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001119 * @mtd: mtd info structure
1120 * @chip: nand chip info structure
1121 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001122 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001123 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001124static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001125 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001127 int i, eccsize = chip->ecc.size;
1128 int eccbytes = chip->ecc.bytes;
1129 int eccsteps = chip->ecc.steps;
1130 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001131 uint8_t *ecc_calc = chip->buffers->ecccalc;
1132 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001133 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001134
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001135 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001136
1137 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1138 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1139
1140 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001141 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001142
1143 eccsteps = chip->ecc.steps;
1144 p = buf;
1145
1146 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1147 int stat;
1148
1149 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001150 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001151 mtd->ecc_stats.failed++;
1152 else
1153 mtd->ecc_stats.corrected += stat;
1154 }
1155 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158/**
Alexey Korolev3d459552008-05-15 17:23:18 +01001159 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
1160 * @mtd: mtd info structure
1161 * @chip: nand chip info structure
Alexey Korolev17c1d2b2008-08-20 22:32:08 +01001162 * @data_offs: offset of requested data within the page
1163 * @readlen: data length
1164 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001165 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001166static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1167 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001168{
1169 int start_step, end_step, num_steps;
1170 uint32_t *eccpos = chip->ecc.layout->eccpos;
1171 uint8_t *p;
1172 int data_col_addr, i, gaps = 0;
1173 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1174 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001175 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001176
1177 /* Column address wihin the page aligned to ECC size (256bytes). */
1178 start_step = data_offs / chip->ecc.size;
1179 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1180 num_steps = end_step - start_step + 1;
1181
1182 /* Data size aligned to ECC ecc.size*/
1183 datafrag_len = num_steps * chip->ecc.size;
1184 eccfrag_len = num_steps * chip->ecc.bytes;
1185
1186 data_col_addr = start_step * chip->ecc.size;
1187 /* If we read not a page aligned data */
1188 if (data_col_addr != 0)
1189 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1190
1191 p = bufpoi + data_col_addr;
1192 chip->read_buf(mtd, p, datafrag_len);
1193
1194 /* Calculate ECC */
1195 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1196 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1197
1198 /* The performance is faster if to position offsets
1199 according to ecc.pos. Let make sure here that
1200 there are no gaps in ecc positions */
1201 for (i = 0; i < eccfrag_len - 1; i++) {
1202 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1203 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1204 gaps = 1;
1205 break;
1206 }
1207 }
1208 if (gaps) {
1209 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1210 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1211 } else {
1212 /* send the command to read the particular ecc bytes */
1213 /* take care about buswidth alignment in read_buf */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001214 index = start_step * chip->ecc.bytes;
1215
1216 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001217 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001218 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001219 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001220 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001221 aligned_len++;
1222
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001223 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1224 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001225 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1226 }
1227
1228 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001229 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001230
1231 p = bufpoi + data_col_addr;
1232 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1233 int stat;
1234
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001235 stat = chip->ecc.correct(mtd, p,
1236 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001237 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001238 mtd->ecc_stats.failed++;
1239 else
1240 mtd->ecc_stats.corrected += stat;
1241 }
1242 return 0;
1243}
1244
1245/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001246 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001247 * @mtd: mtd info structure
1248 * @chip: nand chip info structure
1249 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001250 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001251 *
1252 * Not for syndrome calculating ecc controllers which need a special oob layout
1253 */
1254static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001255 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001256{
1257 int i, eccsize = chip->ecc.size;
1258 int eccbytes = chip->ecc.bytes;
1259 int eccsteps = chip->ecc.steps;
1260 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001261 uint8_t *ecc_calc = chip->buffers->ecccalc;
1262 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001263 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001264
1265 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1266 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1267 chip->read_buf(mtd, p, eccsize);
1268 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1269 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001270 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001271
1272 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001273 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001274
1275 eccsteps = chip->ecc.steps;
1276 p = buf;
1277
1278 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1279 int stat;
1280
1281 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001282 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001283 mtd->ecc_stats.failed++;
1284 else
1285 mtd->ecc_stats.corrected += stat;
1286 }
1287 return 0;
1288}
1289
1290/**
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001291 * nand_read_page_hwecc_oob_first - [REPLACABLE] hw ecc, read oob first
1292 * @mtd: mtd info structure
1293 * @chip: nand chip info structure
1294 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001295 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001296 *
1297 * Hardware ECC for large page chips, require OOB to be read first.
1298 * For this ECC mode, the write_page method is re-used from ECC_HW.
1299 * These methods read/write ECC from the OOB area, unlike the
1300 * ECC_HW_SYNDROME support with multiple ECC steps, follows the
1301 * "infix ECC" scheme and reads/writes ECC from the data area, by
1302 * overwriting the NAND manufacturer bad block markings.
1303 */
1304static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1305 struct nand_chip *chip, uint8_t *buf, int page)
1306{
1307 int i, eccsize = chip->ecc.size;
1308 int eccbytes = chip->ecc.bytes;
1309 int eccsteps = chip->ecc.steps;
1310 uint8_t *p = buf;
1311 uint8_t *ecc_code = chip->buffers->ecccode;
1312 uint32_t *eccpos = chip->ecc.layout->eccpos;
1313 uint8_t *ecc_calc = chip->buffers->ecccalc;
1314
1315 /* Read the OOB area first */
1316 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1317 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1318 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1319
1320 for (i = 0; i < chip->ecc.total; i++)
1321 ecc_code[i] = chip->oob_poi[eccpos[i]];
1322
1323 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1324 int stat;
1325
1326 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1327 chip->read_buf(mtd, p, eccsize);
1328 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1329
1330 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1331 if (stat < 0)
1332 mtd->ecc_stats.failed++;
1333 else
1334 mtd->ecc_stats.corrected += stat;
1335 }
1336 return 0;
1337}
1338
1339/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001340 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom based page read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001341 * @mtd: mtd info structure
1342 * @chip: nand chip info structure
1343 * @buf: buffer to store read data
Jaswinder Singh Rajput58475fb2009-09-24 13:04:53 +01001344 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001345 *
1346 * The hw generator calculates the error syndrome automatically. Therefor
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001347 * we need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001348 */
1349static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001350 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001351{
1352 int i, eccsize = chip->ecc.size;
1353 int eccbytes = chip->ecc.bytes;
1354 int eccsteps = chip->ecc.steps;
1355 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001356 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001357
1358 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1359 int stat;
1360
1361 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1362 chip->read_buf(mtd, p, eccsize);
1363
1364 if (chip->ecc.prepad) {
1365 chip->read_buf(mtd, oob, chip->ecc.prepad);
1366 oob += chip->ecc.prepad;
1367 }
1368
1369 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1370 chip->read_buf(mtd, oob, eccbytes);
1371 stat = chip->ecc.correct(mtd, p, oob, NULL);
1372
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001373 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001374 mtd->ecc_stats.failed++;
1375 else
1376 mtd->ecc_stats.corrected += stat;
1377
1378 oob += eccbytes;
1379
1380 if (chip->ecc.postpad) {
1381 chip->read_buf(mtd, oob, chip->ecc.postpad);
1382 oob += chip->ecc.postpad;
1383 }
1384 }
1385
1386 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001387 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001388 if (i)
1389 chip->read_buf(mtd, oob, i);
1390
1391 return 0;
1392}
1393
1394/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001395 * nand_transfer_oob - [Internal] Transfer oob to client buffer
1396 * @chip: nand chip structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07001397 * @oob: oob destination address
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001398 * @ops: oob ops structure
Vitaly Wool70145682006-11-03 18:20:38 +03001399 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001400 */
1401static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001402 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001403{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001404 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001405
1406 case MTD_OOB_PLACE:
1407 case MTD_OOB_RAW:
1408 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1409 return oob + len;
1410
1411 case MTD_OOB_AUTO: {
1412 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001413 uint32_t boffs = 0, roffs = ops->ooboffs;
1414 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001415
Florian Fainellif8ac0412010-09-07 13:23:43 +02001416 for (; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001417 /* Read request not from offset 0 ? */
1418 if (unlikely(roffs)) {
1419 if (roffs >= free->length) {
1420 roffs -= free->length;
1421 continue;
1422 }
1423 boffs = free->offset + roffs;
1424 bytes = min_t(size_t, len,
1425 (free->length - roffs));
1426 roffs = 0;
1427 } else {
1428 bytes = min_t(size_t, len, free->length);
1429 boffs = free->offset;
1430 }
1431 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001432 oob += bytes;
1433 }
1434 return oob;
1435 }
1436 default:
1437 BUG();
1438 }
1439 return NULL;
1440}
1441
1442/**
1443 * nand_do_read_ops - [Internal] Read data with ECC
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001444 *
David A. Marlin068e3c02005-01-24 03:07:46 +00001445 * @mtd: MTD device structure
1446 * @from: offset to read from
Randy Dunlap844d3b42006-06-28 21:48:27 -07001447 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001448 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001449 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001450 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001451static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1452 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001453{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001454 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001455 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001456 struct mtd_ecc_stats stats;
1457 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1458 int sndcmd = 1;
1459 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001460 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001461 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001462 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1463 mtd->oobavail : mtd->oobsize;
1464
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001467 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001469 chipnr = (int)(from >> chip->chip_shift);
1470 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001472 realpage = (int)(from >> chip->page_shift);
1473 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001475 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001477 buf = ops->datbuf;
1478 oob = ops->oobbuf;
1479
Florian Fainellif8ac0412010-09-07 13:23:43 +02001480 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001481 bytes = min(mtd->writesize - col, readlen);
1482 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001483
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001484 /* Is the current page in the buffer ? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001485 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001486 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001488 if (likely(sndcmd)) {
1489 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1490 sndcmd = 0;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001493 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001494 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001495 ret = chip->ecc.read_page_raw(mtd, chip,
1496 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001497 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001498 ret = chip->ecc.read_subpage(mtd, chip,
1499 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001500 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001501 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1502 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001503 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001504 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001505
1506 /* Transfer not aligned data */
1507 if (!aligned) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001508 if (!NAND_SUBPAGE_READ(chip) && !oob)
1509 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001510 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001512
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001513 buf += bytes;
1514
1515 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001516
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001517 int toread = min(oobreadlen, max_oobsize);
1518
1519 if (toread) {
1520 oob = nand_transfer_oob(chip,
1521 oob, ops, toread);
1522 oobreadlen -= toread;
1523 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001524 }
1525
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001526 if (!(chip->options & NAND_NO_READRDY)) {
1527 /*
1528 * Apply delay or wait for ready/busy pin. Do
1529 * this before the AUTOINCR check, so no
1530 * problems arise if a chip which does auto
1531 * increment is marked as NOAUTOINCR by the
1532 * board driver.
1533 */
1534 if (!chip->dev_ready)
1535 udelay(chip->chip_delay);
1536 else
1537 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001539 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001540 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001541 buf += bytes;
1542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001544 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001545
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001546 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001547 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* For subsequent reads align to page boundary. */
1550 col = 0;
1551 /* Increment page address */
1552 realpage++;
1553
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001554 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 /* Check, if we cross a chip boundary */
1556 if (!page) {
1557 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001558 chip->select_chip(mtd, -1);
1559 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001561
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001562 /* Check, if the chip supports auto page increment
1563 * or if we have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001564 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001565 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001566 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001569 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001570 if (oob)
1571 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001573 if (ret)
1574 return ret;
1575
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001576 if (mtd->ecc_stats.failed - stats.failed)
1577 return -EBADMSG;
1578
1579 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001580}
1581
1582/**
1583 * nand_read - [MTD Interface] MTD compability function for nand_do_read_ecc
1584 * @mtd: MTD device structure
1585 * @from: offset to read from
1586 * @len: number of bytes to read
1587 * @retlen: pointer to variable to store the number of read bytes
1588 * @buf: the databuffer to put data
1589 *
1590 * Get hold of the chip and call nand_do_read
1591 */
1592static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1593 size_t *retlen, uint8_t *buf)
1594{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001595 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001596 int ret;
1597
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001598 /* Do not allow reads past end of device */
1599 if ((from + len) > mtd->size)
1600 return -EINVAL;
1601 if (!len)
1602 return 0;
1603
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001604 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001605
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001606 chip->ops.len = len;
1607 chip->ops.datbuf = buf;
1608 chip->ops.oobbuf = NULL;
1609
1610 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001611
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001612 *retlen = chip->ops.retlen;
1613
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001614 nand_release_device(mtd);
1615
1616 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001620 * nand_read_oob_std - [REPLACABLE] the most common OOB data read function
1621 * @mtd: mtd info structure
1622 * @chip: nand chip info structure
1623 * @page: page number to read
1624 * @sndcmd: flag whether to issue read command or not
1625 */
1626static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1627 int page, int sndcmd)
1628{
1629 if (sndcmd) {
1630 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1631 sndcmd = 0;
1632 }
1633 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1634 return sndcmd;
1635}
1636
1637/**
1638 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1639 * with syndromes
1640 * @mtd: mtd info structure
1641 * @chip: nand chip info structure
1642 * @page: page number to read
1643 * @sndcmd: flag whether to issue read command or not
1644 */
1645static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1646 int page, int sndcmd)
1647{
1648 uint8_t *buf = chip->oob_poi;
1649 int length = mtd->oobsize;
1650 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1651 int eccsize = chip->ecc.size;
1652 uint8_t *bufpoi = buf;
1653 int i, toread, sndrnd = 0, pos;
1654
1655 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1656 for (i = 0; i < chip->ecc.steps; i++) {
1657 if (sndrnd) {
1658 pos = eccsize + i * (eccsize + chunk);
1659 if (mtd->writesize > 512)
1660 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1661 else
1662 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1663 } else
1664 sndrnd = 1;
1665 toread = min_t(int, length, chunk);
1666 chip->read_buf(mtd, bufpoi, toread);
1667 bufpoi += toread;
1668 length -= toread;
1669 }
1670 if (length > 0)
1671 chip->read_buf(mtd, bufpoi, length);
1672
1673 return 1;
1674}
1675
1676/**
1677 * nand_write_oob_std - [REPLACABLE] the most common OOB data write function
1678 * @mtd: mtd info structure
1679 * @chip: nand chip info structure
1680 * @page: page number to write
1681 */
1682static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1683 int page)
1684{
1685 int status = 0;
1686 const uint8_t *buf = chip->oob_poi;
1687 int length = mtd->oobsize;
1688
1689 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1690 chip->write_buf(mtd, buf, length);
1691 /* Send command to program the OOB data */
1692 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1693
1694 status = chip->waitfunc(mtd, chip);
1695
Savin Zlobec0d420f92006-06-21 11:51:20 +02001696 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001697}
1698
1699/**
1700 * nand_write_oob_syndrome - [REPLACABLE] OOB data write function for HW ECC
1701 * with syndrome - only for large page flash !
1702 * @mtd: mtd info structure
1703 * @chip: nand chip info structure
1704 * @page: page number to write
1705 */
1706static int nand_write_oob_syndrome(struct mtd_info *mtd,
1707 struct nand_chip *chip, int page)
1708{
1709 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1710 int eccsize = chip->ecc.size, length = mtd->oobsize;
1711 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1712 const uint8_t *bufpoi = chip->oob_poi;
1713
1714 /*
1715 * data-ecc-data-ecc ... ecc-oob
1716 * or
1717 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1718 */
1719 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1720 pos = steps * (eccsize + chunk);
1721 steps = 0;
1722 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001723 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001724
1725 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1726 for (i = 0; i < steps; i++) {
1727 if (sndcmd) {
1728 if (mtd->writesize <= 512) {
1729 uint32_t fill = 0xFFFFFFFF;
1730
1731 len = eccsize;
1732 while (len > 0) {
1733 int num = min_t(int, len, 4);
1734 chip->write_buf(mtd, (uint8_t *)&fill,
1735 num);
1736 len -= num;
1737 }
1738 } else {
1739 pos = eccsize + i * (eccsize + chunk);
1740 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1741 }
1742 } else
1743 sndcmd = 1;
1744 len = min_t(int, length, chunk);
1745 chip->write_buf(mtd, bufpoi, len);
1746 bufpoi += len;
1747 length -= len;
1748 }
1749 if (length > 0)
1750 chip->write_buf(mtd, bufpoi, length);
1751
1752 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1753 status = chip->waitfunc(mtd, chip);
1754
1755 return status & NAND_STATUS_FAIL ? -EIO : 0;
1756}
1757
1758/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001759 * nand_do_read_oob - [Intern] NAND read out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 * @mtd: MTD device structure
1761 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001762 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 *
1764 * NAND read out-of-band data from the spare area
1765 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001766static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1767 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001769 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001770 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001771 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001772 int readlen = ops->ooblen;
1773 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001774 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
vimal singh20d8e242009-07-07 15:49:49 +05301776 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1777 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Adrian Hunter03736152007-01-31 17:58:29 +02001779 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001780 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001781 else
1782 len = mtd->oobsize;
1783
1784 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301785 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1786 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001787 return -EINVAL;
1788 }
1789
1790 /* Do not allow reads past end of device */
1791 if (unlikely(from >= mtd->size ||
1792 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1793 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301794 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1795 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001796 return -EINVAL;
1797 }
Vitaly Wool70145682006-11-03 18:20:38 +03001798
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001799 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001800 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001802 /* Shift to get page */
1803 realpage = (int)(from >> chip->page_shift);
1804 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Florian Fainellif8ac0412010-09-07 13:23:43 +02001806 while (1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001807 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001808
1809 len = min(len, readlen);
1810 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001811
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001812 if (!(chip->options & NAND_NO_READRDY)) {
1813 /*
1814 * Apply delay or wait for ready/busy pin. Do this
1815 * before the AUTOINCR check, so no problems arise if a
1816 * chip which does auto increment is marked as
1817 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001818 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001819 if (!chip->dev_ready)
1820 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001821 else
1822 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001824
Vitaly Wool70145682006-11-03 18:20:38 +03001825 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001826 if (!readlen)
1827 break;
1828
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001829 /* Increment page address */
1830 realpage++;
1831
1832 page = realpage & chip->pagemask;
1833 /* Check, if we cross a chip boundary */
1834 if (!page) {
1835 chipnr++;
1836 chip->select_chip(mtd, -1);
1837 chip->select_chip(mtd, chipnr);
1838 }
1839
1840 /* Check, if the chip supports auto page increment
1841 * or if we have hit a block boundary.
1842 */
1843 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1844 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846
Vitaly Wool70145682006-11-03 18:20:38 +03001847 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return 0;
1849}
1850
1851/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001852 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 * @from: offset to read from
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001855 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001857 * NAND read data and/or out-of-band data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001859static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1860 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001862 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001863 int ret = -ENOTSUPP;
1864
1865 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001868 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301869 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1870 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return -EINVAL;
1872 }
1873
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001874 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Florian Fainellif8ac0412010-09-07 13:23:43 +02001876 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001877 case MTD_OOB_PLACE:
1878 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001879 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001880 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001881
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001882 default:
1883 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001886 if (!ops->datbuf)
1887 ret = nand_do_read_oob(mtd, from, ops);
1888 else
1889 ret = nand_do_read_ops(mtd, from, ops);
1890
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001891out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001893 return ret;
1894}
1895
1896
1897/**
1898 * nand_write_page_raw - [Intern] raw page write function
1899 * @mtd: mtd info structure
1900 * @chip: nand chip info structure
1901 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001902 *
1903 * Not for syndrome calculating ecc controllers, which use a special oob layout
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001904 */
1905static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1906 const uint8_t *buf)
1907{
1908 chip->write_buf(mtd, buf, mtd->writesize);
1909 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001912/**
David Brownell52ff49d2009-03-04 12:01:36 -08001913 * nand_write_page_raw_syndrome - [Intern] raw page write function
1914 * @mtd: mtd info structure
1915 * @chip: nand chip info structure
1916 * @buf: data buffer
1917 *
1918 * We need a special oob layout and handling even when ECC isn't checked.
1919 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001920static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1921 struct nand_chip *chip,
1922 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001923{
1924 int eccsize = chip->ecc.size;
1925 int eccbytes = chip->ecc.bytes;
1926 uint8_t *oob = chip->oob_poi;
1927 int steps, size;
1928
1929 for (steps = chip->ecc.steps; steps > 0; steps--) {
1930 chip->write_buf(mtd, buf, eccsize);
1931 buf += eccsize;
1932
1933 if (chip->ecc.prepad) {
1934 chip->write_buf(mtd, oob, chip->ecc.prepad);
1935 oob += chip->ecc.prepad;
1936 }
1937
1938 chip->read_buf(mtd, oob, eccbytes);
1939 oob += eccbytes;
1940
1941 if (chip->ecc.postpad) {
1942 chip->write_buf(mtd, oob, chip->ecc.postpad);
1943 oob += chip->ecc.postpad;
1944 }
1945 }
1946
1947 size = mtd->oobsize - (oob - chip->oob_poi);
1948 if (size)
1949 chip->write_buf(mtd, oob, size);
1950}
1951/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001952 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001953 * @mtd: mtd info structure
1954 * @chip: nand chip info structure
1955 * @buf: data buffer
1956 */
1957static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1958 const uint8_t *buf)
1959{
1960 int i, eccsize = chip->ecc.size;
1961 int eccbytes = chip->ecc.bytes;
1962 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001963 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001964 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001965 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001966
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001967 /* Software ecc calculation */
1968 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1969 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001970
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001971 for (i = 0; i < chip->ecc.total; i++)
1972 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001973
Thomas Gleixner90424de2007-04-05 11:44:05 +02001974 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001975}
1976
1977/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001978 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001979 * @mtd: mtd info structure
1980 * @chip: nand chip info structure
1981 * @buf: data buffer
1982 */
1983static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1984 const uint8_t *buf)
1985{
1986 int i, eccsize = chip->ecc.size;
1987 int eccbytes = chip->ecc.bytes;
1988 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001989 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001990 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001991 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001992
1993 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1994 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001995 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001996 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1997 }
1998
1999 for (i = 0; i < chip->ecc.total; i++)
2000 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2001
2002 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2003}
2004
2005/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03002006 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002007 * @mtd: mtd info structure
2008 * @chip: nand chip info structure
2009 * @buf: data buffer
2010 *
2011 * The hw generator calculates the error syndrome automatically. Therefor
2012 * we need a special oob layout and handling.
2013 */
2014static void nand_write_page_syndrome(struct mtd_info *mtd,
2015 struct nand_chip *chip, const uint8_t *buf)
2016{
2017 int i, eccsize = chip->ecc.size;
2018 int eccbytes = chip->ecc.bytes;
2019 int eccsteps = chip->ecc.steps;
2020 const uint8_t *p = buf;
2021 uint8_t *oob = chip->oob_poi;
2022
2023 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2024
2025 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2026 chip->write_buf(mtd, p, eccsize);
2027
2028 if (chip->ecc.prepad) {
2029 chip->write_buf(mtd, oob, chip->ecc.prepad);
2030 oob += chip->ecc.prepad;
2031 }
2032
2033 chip->ecc.calculate(mtd, p, oob);
2034 chip->write_buf(mtd, oob, eccbytes);
2035 oob += eccbytes;
2036
2037 if (chip->ecc.postpad) {
2038 chip->write_buf(mtd, oob, chip->ecc.postpad);
2039 oob += chip->ecc.postpad;
2040 }
2041 }
2042
2043 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002044 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002045 if (i)
2046 chip->write_buf(mtd, oob, i);
2047}
2048
2049/**
David Woodhouse956e9442006-09-25 17:12:39 +01002050 * nand_write_page - [REPLACEABLE] write one page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002051 * @mtd: MTD device structure
2052 * @chip: NAND chip descriptor
2053 * @buf: the data to write
2054 * @page: page number to write
2055 * @cached: cached programming
Jesper Juhlefbfe96c2006-10-27 23:24:47 +02002056 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002057 */
2058static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002059 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002060{
2061 int status;
2062
2063 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2064
David Woodhouse956e9442006-09-25 17:12:39 +01002065 if (unlikely(raw))
2066 chip->ecc.write_page_raw(mtd, chip, buf);
2067 else
2068 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002069
2070 /*
2071 * Cached progamming disabled for now, Not sure if its worth the
2072 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s)
2073 */
2074 cached = 0;
2075
2076 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2077
2078 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002079 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002080 /*
2081 * See if operation failed and additional status checks are
2082 * available
2083 */
2084 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2085 status = chip->errstat(mtd, chip, FL_WRITING, status,
2086 page);
2087
2088 if (status & NAND_STATUS_FAIL)
2089 return -EIO;
2090 } else {
2091 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002092 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002093 }
2094
2095#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2096 /* Send command to read back the data */
2097 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2098
2099 if (chip->verify_buf(mtd, buf, mtd->writesize))
2100 return -EIO;
2101#endif
2102 return 0;
2103}
2104
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002105/**
2106 * nand_fill_oob - [Internal] Transfer client buffer to oob
2107 * @chip: nand chip structure
2108 * @oob: oob data buffer
Randy Dunlapb6d676d2010-08-10 18:02:50 -07002109 * @len: oob data write length
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002110 * @ops: oob ops structure
2111 */
Maxim Levitsky782ce792010-02-22 20:39:36 +02002112static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,
2113 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002114{
Florian Fainellif8ac0412010-09-07 13:23:43 +02002115 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002116
2117 case MTD_OOB_PLACE:
2118 case MTD_OOB_RAW:
2119 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2120 return oob + len;
2121
2122 case MTD_OOB_AUTO: {
2123 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002124 uint32_t boffs = 0, woffs = ops->ooboffs;
2125 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002126
Florian Fainellif8ac0412010-09-07 13:23:43 +02002127 for (; free->length && len; free++, len -= bytes) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002128 /* Write request not from offset 0 ? */
2129 if (unlikely(woffs)) {
2130 if (woffs >= free->length) {
2131 woffs -= free->length;
2132 continue;
2133 }
2134 boffs = free->offset + woffs;
2135 bytes = min_t(size_t, len,
2136 (free->length - woffs));
2137 woffs = 0;
2138 } else {
2139 bytes = min_t(size_t, len, free->length);
2140 boffs = free->offset;
2141 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002142 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002143 oob += bytes;
2144 }
2145 return oob;
2146 }
2147 default:
2148 BUG();
2149 }
2150 return NULL;
2151}
2152
Florian Fainellif8ac0412010-09-07 13:23:43 +02002153#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002154
2155/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002156 * nand_do_write_ops - [Internal] NAND write with ECC
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002157 * @mtd: MTD device structure
2158 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002159 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002160 *
2161 * NAND write with ECC
2162 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002163static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2164 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002165{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002166 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002167 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002168 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002169
2170 uint32_t oobwritelen = ops->ooblen;
2171 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2172 mtd->oobavail : mtd->oobsize;
2173
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002174 uint8_t *oob = ops->oobbuf;
2175 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002176 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002177
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002178 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002179 if (!writelen)
2180 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002181
2182 /* reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002183 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302184 printk(KERN_NOTICE "%s: Attempt to write not "
2185 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002186 return -EINVAL;
2187 }
2188
Thomas Gleixner29072b92006-09-28 15:38:36 +02002189 column = to & (mtd->writesize - 1);
2190 subpage = column || (writelen & (mtd->writesize - 1));
2191
2192 if (subpage && oob)
2193 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002194
Thomas Gleixner6a930962006-06-28 00:11:45 +02002195 chipnr = (int)(to >> chip->chip_shift);
2196 chip->select_chip(mtd, chipnr);
2197
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002198 /* Check, if it is write protected */
2199 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002200 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002201
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002202 realpage = (int)(to >> chip->page_shift);
2203 page = realpage & chip->pagemask;
2204 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2205
2206 /* Invalidate the page cache, when we write to the cached page */
2207 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002208 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002209 chip->pagebuf = -1;
2210
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01002211 /* If we're not given explicit OOB data, let it be 0xFF */
2212 if (likely(!oob))
2213 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002214
Maxim Levitsky782ce792010-02-22 20:39:36 +02002215 /* Don't allow multipage oob writes with offset */
2216 if (ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
2217 return -EINVAL;
2218
Florian Fainellif8ac0412010-09-07 13:23:43 +02002219 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002220 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002221 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002222 uint8_t *wbuf = buf;
2223
2224 /* Partial page write ? */
2225 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2226 cached = 0;
2227 bytes = min_t(int, bytes - column, (int) writelen);
2228 chip->pagebuf = -1;
2229 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2230 memcpy(&chip->buffers->databuf[column], buf, bytes);
2231 wbuf = chip->buffers->databuf;
2232 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002233
Maxim Levitsky782ce792010-02-22 20:39:36 +02002234 if (unlikely(oob)) {
2235 size_t len = min(oobwritelen, oobmaxlen);
2236 oob = nand_fill_oob(chip, oob, len, ops);
2237 oobwritelen -= len;
2238 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002239
Thomas Gleixner29072b92006-09-28 15:38:36 +02002240 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002241 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002242 if (ret)
2243 break;
2244
2245 writelen -= bytes;
2246 if (!writelen)
2247 break;
2248
Thomas Gleixner29072b92006-09-28 15:38:36 +02002249 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002250 buf += bytes;
2251 realpage++;
2252
2253 page = realpage & chip->pagemask;
2254 /* Check, if we cross a chip boundary */
2255 if (!page) {
2256 chipnr++;
2257 chip->select_chip(mtd, -1);
2258 chip->select_chip(mtd, chipnr);
2259 }
2260 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002261
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002262 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002263 if (unlikely(oob))
2264 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002265 return ret;
2266}
2267
2268/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002269 * panic_nand_write - [MTD Interface] NAND write with ECC
2270 * @mtd: MTD device structure
2271 * @to: offset to write to
2272 * @len: number of bytes to write
2273 * @retlen: pointer to variable to store the number of written bytes
2274 * @buf: the data to write
2275 *
2276 * NAND write with ECC. Used when performing writes in interrupt context, this
2277 * may for example be called by mtdoops when writing an oops while in panic.
2278 */
2279static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2280 size_t *retlen, const uint8_t *buf)
2281{
2282 struct nand_chip *chip = mtd->priv;
2283 int ret;
2284
2285 /* Do not allow reads past end of device */
2286 if ((to + len) > mtd->size)
2287 return -EINVAL;
2288 if (!len)
2289 return 0;
2290
2291 /* Wait for the device to get ready. */
2292 panic_nand_wait(mtd, chip, 400);
2293
2294 /* Grab the device. */
2295 panic_nand_get_device(chip, mtd, FL_WRITING);
2296
2297 chip->ops.len = len;
2298 chip->ops.datbuf = (uint8_t *)buf;
2299 chip->ops.oobbuf = NULL;
2300
2301 ret = nand_do_write_ops(mtd, to, &chip->ops);
2302
2303 *retlen = chip->ops.retlen;
2304 return ret;
2305}
2306
2307/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002308 * nand_write - [MTD Interface] NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 * @mtd: MTD device structure
2310 * @to: offset to write to
2311 * @len: number of bytes to write
2312 * @retlen: pointer to variable to store the number of written bytes
2313 * @buf: the data to write
2314 *
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002315 * NAND write with ECC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002317static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002318 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002320 struct nand_chip *chip = mtd->priv;
2321 int ret;
2322
2323 /* Do not allow reads past end of device */
2324 if ((to + len) > mtd->size)
2325 return -EINVAL;
2326 if (!len)
2327 return 0;
2328
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002329 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002330
2331 chip->ops.len = len;
2332 chip->ops.datbuf = (uint8_t *)buf;
2333 chip->ops.oobbuf = NULL;
2334
2335 ret = nand_do_write_ops(mtd, to, &chip->ops);
2336
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002337 *retlen = chip->ops.retlen;
2338
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002339 nand_release_device(mtd);
2340
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002341 return ret;
2342}
2343
2344/**
2345 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
2346 * @mtd: MTD device structure
2347 * @to: offset to write to
2348 * @ops: oob operation description structure
2349 *
2350 * NAND write out-of-band
2351 */
2352static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2353 struct mtd_oob_ops *ops)
2354{
Adrian Hunter03736152007-01-31 17:58:29 +02002355 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002356 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
vimal singh20d8e242009-07-07 15:49:49 +05302358 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2359 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Adrian Hunter03736152007-01-31 17:58:29 +02002361 if (ops->mode == MTD_OOB_AUTO)
2362 len = chip->ecc.layout->oobavail;
2363 else
2364 len = mtd->oobsize;
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002367 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302368 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2369 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 return -EINVAL;
2371 }
2372
Adrian Hunter03736152007-01-31 17:58:29 +02002373 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302374 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2375 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002376 return -EINVAL;
2377 }
2378
2379 /* Do not allow reads past end of device */
2380 if (unlikely(to >= mtd->size ||
2381 ops->ooboffs + ops->ooblen >
2382 ((mtd->size >> chip->page_shift) -
2383 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302384 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2385 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002386 return -EINVAL;
2387 }
2388
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002389 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002390 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002392 /* Shift to get page */
2393 page = (int)(to >> chip->page_shift);
2394
2395 /*
2396 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2397 * of my DiskOnChip 2000 test units) will clear the whole data page too
2398 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2399 * it in the doc2000 driver in August 1999. dwmw2.
2400 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002401 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 /* Check, if it is write protected */
2404 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002405 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002408 if (page == chip->pagebuf)
2409 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002411 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002412 nand_fill_oob(chip, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002413 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
2414 memset(chip->oob_poi, 0xff, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002415
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002416 if (status)
2417 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Vitaly Wool70145682006-11-03 18:20:38 +03002419 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002421 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002422}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002424/**
2425 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
2426 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002427 * @to: offset to write to
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002428 * @ops: oob operation description structure
2429 */
2430static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2431 struct mtd_oob_ops *ops)
2432{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002433 struct nand_chip *chip = mtd->priv;
2434 int ret = -ENOTSUPP;
2435
2436 ops->retlen = 0;
2437
2438 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002439 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302440 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2441 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002442 return -EINVAL;
2443 }
2444
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002445 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002446
Florian Fainellif8ac0412010-09-07 13:23:43 +02002447 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002448 case MTD_OOB_PLACE:
2449 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002450 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002451 break;
2452
2453 default:
2454 goto out;
2455 }
2456
2457 if (!ops->datbuf)
2458 ret = nand_do_write_oob(mtd, to, ops);
2459 else
2460 ret = nand_do_write_ops(mtd, to, ops);
2461
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002462out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002463 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return ret;
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 * single_erease_cmd - [GENERIC] NAND standard block erase command function
2469 * @mtd: MTD device structure
2470 * @page: the page address of the block which will be erased
2471 *
2472 * Standard erase command for NAND chips
2473 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002474static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002476 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002478 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2479 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
2482/**
2483 * multi_erease_cmd - [GENERIC] AND specific block erase command function
2484 * @mtd: MTD device structure
2485 * @page: the page address of the block which will be erased
2486 *
2487 * AND multi block erase command function
2488 * Erase 4 consecutive blocks
2489 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002490static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002492 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002494 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2495 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2496 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2497 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2498 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
2500
2501/**
2502 * nand_erase - [MTD Interface] erase block(s)
2503 * @mtd: MTD device structure
2504 * @instr: erase instruction
2505 *
2506 * Erase one ore more blocks
2507 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002508static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
David Woodhousee0c7d762006-05-13 18:07:53 +01002510 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002512
David A. Marlin30f464b2005-01-17 18:35:25 +00002513#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002515 * nand_erase_nand - [Internal] erase block(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * @mtd: MTD device structure
2517 * @instr: erase instruction
2518 * @allowbbt: allow erasing the bbt area
2519 *
2520 * Erase one ore more blocks
2521 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002522int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2523 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Adrian Hunter69423d92008-12-10 13:37:21 +00002525 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002526 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002527 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002528 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002529 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
vimal singh20d8e242009-07-07 15:49:49 +05302531 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2532 __func__, (unsigned long long)instr->addr,
2533 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302535 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002538 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002541 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002544 page = (int)(instr->addr >> chip->page_shift);
2545 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002548 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002551 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 /* Check, if it is write protected */
2554 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302555 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2556 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 instr->state = MTD_ERASE_FAILED;
2558 goto erase_exit;
2559 }
2560
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002561 /*
2562 * If BBT requires refresh, set the BBT page mask to see if the BBT
2563 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2564 * can not be matched. This is also done when the bbt is actually
2565 * erased to avoid recusrsive updates
2566 */
2567 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2568 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 /* Loop through the pages */
2571 len = instr->len;
2572
2573 instr->state = MTD_ERASING;
2574
2575 while (len) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002576 /*
2577 * heck if we have a bad block, we do not erase bad blocks !
2578 */
2579 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2580 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302581 printk(KERN_WARNING "%s: attempt to erase a bad block "
2582 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 instr->state = MTD_ERASE_FAILED;
2584 goto erase_exit;
2585 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002586
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002587 /*
2588 * Invalidate the page cache, if we erase the block which
2589 * contains the current cached page
2590 */
2591 if (page <= chip->pagebuf && chip->pagebuf <
2592 (page + pages_per_block))
2593 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002595 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002596
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002597 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002599 /*
2600 * See if operation failed and additional status checks are
2601 * available
2602 */
2603 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2604 status = chip->errstat(mtd, chip, FL_ERASING,
2605 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002608 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302609 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2610 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002612 instr->fail_addr =
2613 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 goto erase_exit;
2615 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002616
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002617 /*
2618 * If BBT requires refresh, set the BBT rewrite flag to the
2619 * page being erased
2620 */
2621 if (bbt_masked_page != 0xffffffff &&
2622 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002623 rewrite_bbt[chipnr] =
2624 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002627 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 page += pages_per_block;
2629
2630 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002631 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002633 chip->select_chip(mtd, -1);
2634 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002635
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002636 /*
2637 * If BBT requires refresh and BBT-PERCHIP, set the BBT
2638 * page mask to see if this BBT should be rewritten
2639 */
2640 if (bbt_masked_page != 0xffffffff &&
2641 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2642 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2643 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 }
2645 }
2646 instr->state = MTD_ERASE_DONE;
2647
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002648erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 /* Deselect and wake up anyone waiting on the device */
2653 nand_release_device(mtd);
2654
David Woodhouse49defc02007-10-06 15:01:59 -04002655 /* Do call back function */
2656 if (!ret)
2657 mtd_erase_callback(instr);
2658
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002659 /*
2660 * If BBT requires refresh and erase was successful, rewrite any
2661 * selected bad block tables
2662 */
2663 if (bbt_masked_page == 0xffffffff || ret)
2664 return ret;
2665
2666 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2667 if (!rewrite_bbt[chipnr])
2668 continue;
2669 /* update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302670 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2671 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2672 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002673 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002674 }
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /* Return more or less happy */
2677 return ret;
2678}
2679
2680/**
2681 * nand_sync - [MTD Interface] sync
2682 * @mtd: MTD device structure
2683 *
2684 * Sync is actually a wait for chip ready function
2685 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002686static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002688 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
vimal singh20d8e242009-07-07 15:49:49 +05302690 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
2692 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002693 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002695 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002699 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 * @mtd: MTD device structure
Randy Dunlap844d3b42006-06-28 21:48:27 -07002701 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002703static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002706 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002708
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002709 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
2712/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002713 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * @mtd: MTD device structure
2715 * @ofs: offset relative to mtd start
2716 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002717static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002719 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 int ret;
2721
Florian Fainellif8ac0412010-09-07 13:23:43 +02002722 ret = nand_block_isbad(mtd, ofs);
2723 if (ret) {
David Woodhousee0c7d762006-05-13 18:07:53 +01002724 /* If it was bad already, return success and do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 if (ret > 0)
2726 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002727 return ret;
2728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002730 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
2733/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002734 * nand_suspend - [MTD Interface] Suspend the NAND flash
2735 * @mtd: MTD device structure
2736 */
2737static int nand_suspend(struct mtd_info *mtd)
2738{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002739 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002740
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002741 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002742}
2743
2744/**
2745 * nand_resume - [MTD Interface] Resume the NAND flash
2746 * @mtd: MTD device structure
2747 */
2748static void nand_resume(struct mtd_info *mtd)
2749{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002750 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002751
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002753 nand_release_device(mtd);
2754 else
vimal singh20d8e242009-07-07 15:49:49 +05302755 printk(KERN_ERR "%s called for a chip which is not "
2756 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002757}
2758
Thomas Gleixnera36ed292006-05-23 11:37:03 +02002759/*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002760 * Set default functions
2761 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002762static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002763{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002765 if (!chip->chip_delay)
2766 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002769 if (chip->cmdfunc == NULL)
2770 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002773 if (chip->waitfunc == NULL)
2774 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002776 if (!chip->select_chip)
2777 chip->select_chip = nand_select_chip;
2778 if (!chip->read_byte)
2779 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2780 if (!chip->read_word)
2781 chip->read_word = nand_read_word;
2782 if (!chip->block_bad)
2783 chip->block_bad = nand_block_bad;
2784 if (!chip->block_markbad)
2785 chip->block_markbad = nand_default_block_markbad;
2786 if (!chip->write_buf)
2787 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2788 if (!chip->read_buf)
2789 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2790 if (!chip->verify_buf)
2791 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2792 if (!chip->scan_bbt)
2793 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002794
2795 if (!chip->controller) {
2796 chip->controller = &chip->hwcontrol;
2797 spin_lock_init(&chip->controller->lock);
2798 init_waitqueue_head(&chip->controller->wq);
2799 }
2800
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002801}
2802
2803/*
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002804 * sanitize ONFI strings so we can safely print them
2805 */
2806static void sanitize_string(uint8_t *s, size_t len)
2807{
2808 ssize_t i;
2809
2810 /* null terminate */
2811 s[len - 1] = 0;
2812
2813 /* remove non printable chars */
2814 for (i = 0; i < len - 1; i++) {
2815 if (s[i] < ' ' || s[i] > 127)
2816 s[i] = '?';
2817 }
2818
2819 /* remove trailing spaces */
2820 strim(s);
2821}
2822
2823static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2824{
2825 int i;
2826 while (len--) {
2827 crc ^= *p++ << 8;
2828 for (i = 0; i < 8; i++)
2829 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2830 }
2831
2832 return crc;
2833}
2834
2835/*
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002836 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise
2837 */
2838static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2839 int busw)
2840{
2841 struct nand_onfi_params *p = &chip->onfi_params;
2842 int i;
2843 int val;
2844
2845 /* try ONFI for unknow chip or LP */
2846 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2847 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2848 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2849 return 0;
2850
2851 printk(KERN_INFO "ONFI flash detected\n");
2852 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2853 for (i = 0; i < 3; i++) {
2854 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2855 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2856 le16_to_cpu(p->crc)) {
2857 printk(KERN_INFO "ONFI param page %d valid\n", i);
2858 break;
2859 }
2860 }
2861
2862 if (i == 3)
2863 return 0;
2864
2865 /* check version */
2866 val = le16_to_cpu(p->revision);
2867 if (val == 1 || val > (1 << 4)) {
2868 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2869 __func__, val);
2870 return 0;
2871 }
2872
2873 if (val & (1 << 4))
2874 chip->onfi_version = 22;
2875 else if (val & (1 << 3))
2876 chip->onfi_version = 21;
2877 else if (val & (1 << 2))
2878 chip->onfi_version = 20;
2879 else
2880 chip->onfi_version = 10;
2881
2882 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2883 sanitize_string(p->model, sizeof(p->model));
2884 if (!mtd->name)
2885 mtd->name = p->model;
2886 mtd->writesize = le32_to_cpu(p->byte_per_page);
2887 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2888 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
2889 chip->chipsize = le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
2890 busw = 0;
2891 if (le16_to_cpu(p->features) & 1)
2892 busw = NAND_BUSWIDTH_16;
2893
2894 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2895 chip->options |= (NAND_NO_READRDY |
2896 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2897
2898 return 1;
2899}
2900
2901/*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002902 * Get the flash and manufacturer id and lookup if the type is supported
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002903 */
2904static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002905 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002906 int busw,
2907 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002908 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002909{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002910 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002911 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002912 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002915 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Karl Beldanef89a882008-09-15 14:37:29 +02002917 /*
2918 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
2919 * after power-up
2920 */
2921 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002924 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002927 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002928 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Ben Dooksed8165c2008-04-14 14:58:58 +01002930 /* Try again to make sure, as some systems the bus-hold or other
2931 * interface concerns can cause random data which looks like a
2932 * possibly credible NAND flash to appear. If the two results do
2933 * not match, ignore the device completely.
2934 */
2935
2936 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2937
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002938 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002939 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002940
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002941 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ben Dooksed8165c2008-04-14 14:58:58 +01002942 printk(KERN_INFO "%s: second ID read did not match "
2943 "%02x,%02x against %02x,%02x\n", __func__,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002944 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002945 return ERR_PTR(-ENODEV);
2946 }
2947
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002948 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002949 type = nand_flash_ids;
2950
2951 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002952 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002953 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002954
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002955 chip->onfi_version = 0;
2956 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002957 /* Check is chip is ONFI compliant */
2958 ret = nand_flash_detect_onfi(mtd, chip, busw);
2959 if (ret)
2960 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002961 }
2962
2963 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2964
2965 /* Read entire ID string */
2966
2967 for (i = 0; i < 8; i++)
2968 id_data[i] = chip->read_byte(mtd);
2969
David Woodhouse5e81e882010-02-26 18:32:56 +00002970 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002971 return ERR_PTR(-ENODEV);
2972
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002973 if (!mtd->name)
2974 mtd->name = type->name;
2975
Adrian Hunter69423d92008-12-10 13:37:21 +00002976 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002977
2978 /* Newer devices have all the information in additional id bytes */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002979 if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002980 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002981 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002982 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002983 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002984 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002985
Kevin Cernekee426c4572010-05-04 20:58:03 -07002986 /*
2987 * Field definitions are in the following datasheets:
2988 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002989 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002990 *
2991 * Check for wraparound + Samsung ID + nonzero 6th byte
2992 * to decide what to do.
2993 */
2994 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2995 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002996 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002997 id_data[5] != 0x00) {
2998 /* Calc pagesize */
2999 mtd->writesize = 2048 << (extid & 0x03);
3000 extid >>= 2;
3001 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07003002 switch (extid & 0x03) {
3003 case 1:
3004 mtd->oobsize = 128;
3005 break;
3006 case 2:
3007 mtd->oobsize = 218;
3008 break;
3009 case 3:
3010 mtd->oobsize = 400;
3011 break;
3012 default:
3013 mtd->oobsize = 436;
3014 break;
3015 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003016 extid >>= 2;
3017 /* Calc blocksize */
3018 mtd->erasesize = (128 * 1024) <<
3019 (((extid >> 1) & 0x04) | (extid & 0x03));
3020 busw = 0;
3021 } else {
3022 /* Calc pagesize */
3023 mtd->writesize = 1024 << (extid & 0x03);
3024 extid >>= 2;
3025 /* Calc oobsize */
3026 mtd->oobsize = (8 << (extid & 0x01)) *
3027 (mtd->writesize >> 9);
3028 extid >>= 2;
3029 /* Calc blocksize. Blocksize is multiples of 64KiB */
3030 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3031 extid >>= 2;
3032 /* Get buswidth information */
3033 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3034 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003035 } else {
3036 /*
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003037 * Old devices have chip data hardcoded in the device id table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003038 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003039 mtd->erasesize = type->erasesize;
3040 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003041 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003042 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003043
3044 /*
3045 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3046 * some Spansion chips have erasesize that conflicts with size
3047 * listed in nand_ids table
3048 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3049 */
3050 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3051 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3052 id_data[7] == 0x00 && mtd->writesize == 512) {
3053 mtd->erasesize = 128 * 1024;
3054 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3055 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003056 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003057 /* Get chip options, preserve non chip based options */
3058 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3059 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3060
3061 /* Check if chip is a not a samsung device. Do not clear the
3062 * options for chips which are not having an extended id.
3063 */
3064 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3065 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3066ident_done:
3067
3068 /*
3069 * Set chip as a default. Board drivers can override it, if necessary
3070 */
3071 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003072
3073 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003074 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003075 if (nand_manuf_ids[maf_idx].id == *maf_id)
3076 break;
3077 }
3078
3079 /*
3080 * Check, if buswidth is correct. Hardware drivers should set
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003081 * chip correct !
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003082 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003083 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003084 printk(KERN_INFO "NAND device: Manufacturer ID:"
3085 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003086 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003087 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003088 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003089 busw ? 16 : 8);
3090 return ERR_PTR(-EINVAL);
3091 }
3092
3093 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003094 chip->page_shift = ffs(mtd->writesize) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003095 /* Convert chipsize to number of pages per chip -1. */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003096 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003097
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003098 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003099 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003100 if (chip->chipsize & 0xffffffff)
3101 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003102 else {
3103 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3104 chip->chip_shift += 32 - 1;
3105 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003106
3107 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003108 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003109 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003110 else
3111 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003112
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003113 /*
3114 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003115 * on Samsung and Hynix MLC devices; stored in first two pages
3116 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003117 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3118 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003119 */
3120 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3121 (*maf_id == NAND_MFR_SAMSUNG ||
3122 *maf_id == NAND_MFR_HYNIX))
Brian Norris30fe8112010-06-23 13:36:02 -07003123 chip->options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003124 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3125 (*maf_id == NAND_MFR_SAMSUNG ||
3126 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003127 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003128 *maf_id == NAND_MFR_AMD)) ||
3129 (mtd->writesize == 2048 &&
3130 *maf_id == NAND_MFR_MICRON))
3131 chip->options |= NAND_BBT_SCAN2NDPAGE;
3132
Brian Norris58373ff2010-07-15 12:15:44 -07003133 /*
3134 * Numonyx/ST 2K pages, x8 bus use BOTH byte 1 and 6
3135 */
3136 if (!(busw & NAND_BUSWIDTH_16) &&
3137 *maf_id == NAND_MFR_STMICRO &&
3138 mtd->writesize == 2048) {
3139 chip->options |= NAND_BBT_SCANBYTE1AND6;
3140 chip->badblockpos = 0;
3141 }
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003142
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003143 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003144 if (chip->options & NAND_4PAGE_ARRAY)
3145 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003146 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003147 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003148
3149 /* Do not replace user supplied command function ! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003150 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3151 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003152
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003153 /* TODO onfi flash name */
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003154 printk(KERN_INFO "NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003155 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3156 nand_manuf_ids[maf_idx].name,
Florian Fainellif8ac0412010-09-07 13:23:43 +02003157 chip->onfi_version ? type->name : chip->onfi_params.model);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003158
3159 return type;
3160}
3161
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003162/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003163 * nand_scan_ident - [NAND Interface] Scan for the NAND device
3164 * @mtd: MTD device structure
3165 * @maxchips: Number of chips to scan for
David Woodhouse5e81e882010-02-26 18:32:56 +00003166 * @table: Alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003167 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003168 * This is the first phase of the normal nand_scan() function. It
3169 * reads the flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003170 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003171 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003172 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003173int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3174 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003175{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003176 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003177 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003178 struct nand_flash_dev *type;
3179
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003180 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003181 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003182 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003183 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003184
3185 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003186 type = nand_get_flash_type(mtd, chip, busw,
3187 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003188
3189 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003190 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3191 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003192 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003193 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 }
3195
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003196 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003197 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003198 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003199 /* See comment in nand_get_flash_type for reset */
3200 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003202 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003204 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003205 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 break;
3207 }
3208 if (i > 1)
3209 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003212 chip->numchips = i;
3213 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
David Woodhouse3b85c322006-09-25 17:06:53 +01003215 return 0;
3216}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003217EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003218
3219
3220/**
3221 * nand_scan_tail - [NAND Interface] Scan for the NAND device
3222 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003223 *
3224 * This is the second phase of the normal nand_scan() function. It
3225 * fills out all the uninitialized function pointers with the defaults
3226 * and scans for a bad block table if appropriate.
3227 */
3228int nand_scan_tail(struct mtd_info *mtd)
3229{
3230 int i;
3231 struct nand_chip *chip = mtd->priv;
3232
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003233 if (!(chip->options & NAND_OWN_BUFFERS))
3234 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3235 if (!chip->buffers)
3236 return -ENOMEM;
3237
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003238 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003239 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003240
3241 /*
3242 * If no default placement scheme is given, select an appropriate one
3243 */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003244 if (!chip->ecc.layout) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003245 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003247 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 break;
3249 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003250 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 break;
3252 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003253 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003255 case 128:
3256 chip->ecc.layout = &nand_oob_128;
3257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003259 printk(KERN_WARNING "No oob scheme defined for "
3260 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 BUG();
3262 }
3263 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003264
David Woodhouse956e9442006-09-25 17:12:39 +01003265 if (!chip->write_page)
3266 chip->write_page = nand_write_page;
3267
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003268 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003269 * check ECC mode, default to software if 3byte/512byte hardware ECC is
3270 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003271 */
David Woodhouse956e9442006-09-25 17:12:39 +01003272
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003273 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003274 case NAND_ECC_HW_OOB_FIRST:
3275 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3276 if (!chip->ecc.calculate || !chip->ecc.correct ||
3277 !chip->ecc.hwctl) {
3278 printk(KERN_WARNING "No ECC functions supplied; "
3279 "Hardware ECC not possible\n");
3280 BUG();
3281 }
3282 if (!chip->ecc.read_page)
3283 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3284
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003285 case NAND_ECC_HW:
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003286 /* Use standard hwecc read page function ? */
3287 if (!chip->ecc.read_page)
3288 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003289 if (!chip->ecc.write_page)
3290 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003291 if (!chip->ecc.read_page_raw)
3292 chip->ecc.read_page_raw = nand_read_page_raw;
3293 if (!chip->ecc.write_page_raw)
3294 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003295 if (!chip->ecc.read_oob)
3296 chip->ecc.read_oob = nand_read_oob_std;
3297 if (!chip->ecc.write_oob)
3298 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003299
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003300 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003301 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3302 !chip->ecc.hwctl) &&
3303 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003304 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003305 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003306 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003307 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003308 "Hardware ECC not possible\n");
3309 BUG();
3310 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003311 /* Use standard syndrome read/write page function ? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003312 if (!chip->ecc.read_page)
3313 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003314 if (!chip->ecc.write_page)
3315 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003316 if (!chip->ecc.read_page_raw)
3317 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3318 if (!chip->ecc.write_page_raw)
3319 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003320 if (!chip->ecc.read_oob)
3321 chip->ecc.read_oob = nand_read_oob_syndrome;
3322 if (!chip->ecc.write_oob)
3323 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003324
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003325 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003326 break;
3327 printk(KERN_WARNING "%d byte HW ECC not possible on "
3328 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003329 chip->ecc.size, mtd->writesize);
3330 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003332 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003333 chip->ecc.calculate = nand_calculate_ecc;
3334 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003335 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003336 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003337 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003338 chip->ecc.read_page_raw = nand_read_page_raw;
3339 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003340 chip->ecc.read_oob = nand_read_oob_std;
3341 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003342 if (!chip->ecc.size)
3343 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003344 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003346
3347 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003348 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3349 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003350 chip->ecc.read_page = nand_read_page_raw;
3351 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003352 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003353 chip->ecc.read_page_raw = nand_read_page_raw;
3354 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003355 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003356 chip->ecc.size = mtd->writesize;
3357 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003361 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003362 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003363 BUG();
3364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003366 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003367 * The number of bytes available for a client to place data into
3368 * the out of band area
3369 */
3370 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003371 for (i = 0; chip->ecc.layout->oobfree[i].length
3372 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003373 chip->ecc.layout->oobavail +=
3374 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003375 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003376
3377 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003378 * Set the number of read / write steps for one page depending on ECC
3379 * mode
3380 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003381 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003382 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003383 printk(KERN_WARNING "Invalid ecc parameters\n");
3384 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003386 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003387
Thomas Gleixner29072b92006-09-28 15:38:36 +02003388 /*
3389 * Allow subpage writes up to ecc.steps. Not possible for MLC
3390 * FLASH.
3391 */
3392 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3393 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003394 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003395 case 2:
3396 mtd->subpage_sft = 1;
3397 break;
3398 case 4:
3399 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003400 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003401 mtd->subpage_sft = 2;
3402 break;
3403 }
3404 }
3405 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3406
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003407 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003408 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
3410 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003411 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
3413 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003414 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416 /* Fill in remaining MTD driver data */
3417 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003418 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3419 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 mtd->erase = nand_erase;
3421 mtd->point = NULL;
3422 mtd->unpoint = NULL;
3423 mtd->read = nand_read;
3424 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003425 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 mtd->read_oob = nand_read_oob;
3427 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 mtd->sync = nand_sync;
3429 mtd->lock = NULL;
3430 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003431 mtd->suspend = nand_suspend;
3432 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 mtd->block_isbad = nand_block_isbad;
3434 mtd->block_markbad = nand_block_markbad;
3435
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003436 /* propagate ecc.layout to mtd_info */
3437 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003439 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003440 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003444 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003446EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Rusty Russella6e6abd2009-03-31 13:05:31 -06003448/* is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003449 * test if this is a module _anyway_ -- they'd have to try _really_ hard
3450 * to call us from in-kernel code if the core NAND support is modular. */
David Woodhouse3b85c322006-09-25 17:06:53 +01003451#ifdef MODULE
3452#define caller_is_module() (1)
3453#else
3454#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003455 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003456#endif
3457
3458/**
3459 * nand_scan - [NAND Interface] Scan for the NAND device
3460 * @mtd: MTD device structure
3461 * @maxchips: Number of chips to scan for
3462 *
3463 * This fills out all the uninitialized function pointers
3464 * with the defaults.
3465 * The flash ID is read and the mtd/chip structures are
3466 * filled with the appropriate values.
3467 * The mtd->owner field must be set to the module of the caller
3468 *
3469 */
3470int nand_scan(struct mtd_info *mtd, int maxchips)
3471{
3472 int ret;
3473
3474 /* Many callers got this wrong, so check for it for a while... */
3475 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303476 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3477 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003478 BUG();
3479 }
3480
David Woodhouse5e81e882010-02-26 18:32:56 +00003481 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003482 if (!ret)
3483 ret = nand_scan_tail(mtd);
3484 return ret;
3485}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003486EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003489 * nand_release - [NAND Interface] Free resources held by the NAND device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 * @mtd: MTD device structure
3491*/
David Woodhousee0c7d762006-05-13 18:07:53 +01003492void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003494 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
3496#ifdef CONFIG_MTD_PARTITIONS
3497 /* Deregister partitions */
David Woodhousee0c7d762006-05-13 18:07:53 +01003498 del_mtd_partitions(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499#endif
3500 /* Deregister the device */
David Woodhousee0c7d762006-05-13 18:07:53 +01003501 del_mtd_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
Jesper Juhlfa671642005-11-07 01:01:27 -08003503 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003504 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003505 if (!(chip->options & NAND_OWN_BUFFERS))
3506 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003507
3508 /* Free bad block descriptor memory */
3509 if (chip->badblock_pattern && chip->badblock_pattern->options
3510 & NAND_BBT_DYNAMICSTRUCT)
3511 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512}
David Woodhousee0c7d762006-05-13 18:07:53 +01003513EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003514
3515static int __init nand_base_init(void)
3516{
3517 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3518 return 0;
3519}
3520
3521static void __exit nand_base_exit(void)
3522{
3523 led_trigger_unregister_simple(nand_led_trigger);
3524}
3525
3526module_init(nand_base_init);
3527module_exit(nand_base_exit);
3528
David Woodhousee0c7d762006-05-13 18:07:53 +01003529MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003530MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3531MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003532MODULE_DESCRIPTION("Generic NAND flash driver code");