blob: 237d7daa189c64de451a743caee827bca67ef544 [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
Brian Norris7854d3f2011-06-23 14:12:08 -070024 * if we have HW ECC support.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * 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>
Ivan Djelic193bd402011-03-11 11:05:33 +010045#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/interrupt.h>
47#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080048#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020049#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mtd/partitions.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020053static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .eccbytes = 3,
55 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020056 .oobfree = {
57 {.offset = 3,
58 .length = 2},
59 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020060 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020063static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .eccbytes = 6,
65 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020066 .oobfree = {
67 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020068 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020071static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .eccbytes = 24,
73 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010074 40, 41, 42, 43, 44, 45, 46, 47,
75 48, 49, 50, 51, 52, 53, 54, 55,
76 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020077 .oobfree = {
78 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020079 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Thomas Gleixner81ec5362007-12-12 17:27:03 +010082static struct nand_ecclayout nand_oob_128 = {
83 .eccbytes = 48,
84 .eccpos = {
85 80, 81, 82, 83, 84, 85, 86, 87,
86 88, 89, 90, 91, 92, 93, 94, 95,
87 96, 97, 98, 99, 100, 101, 102, 103,
88 104, 105, 106, 107, 108, 109, 110, 111,
89 112, 113, 114, 115, 116, 117, 118, 119,
90 120, 121, 122, 123, 124, 125, 126, 127},
91 .oobfree = {
92 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020093 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010094};
95
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020096static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020097 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020099static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
100 struct mtd_oob_ops *ops);
101
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200102/*
Joe Perches8e87d782008-02-03 17:22:34 +0200103 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104 * compiled away when LED support is disabled.
105 */
106DEFINE_LED_TRIGGER(nand_led_trigger);
107
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530108static int check_offs_len(struct mtd_info *mtd,
109 loff_t ofs, uint64_t len)
110{
111 struct nand_chip *chip = mtd->priv;
112 int ret = 0;
113
114 /* Start address must align on block boundary */
115 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
116 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
117 ret = -EINVAL;
118 }
119
120 /* Length must align on block boundary */
121 if (len & ((1 << chip->phys_erase_shift) - 1)) {
122 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
123 __func__);
124 ret = -EINVAL;
125 }
126
127 /* Do not allow past end of device */
128 if (ofs + len > mtd->size) {
129 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
130 __func__);
131 ret = -EINVAL;
132 }
133
134 return ret;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/**
138 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700139 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000140 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700141 * Deselect, release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100143static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200145 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200148 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100149
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200150 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200151 spin_lock(&chip->controller->lock);
152 chip->controller->active = NULL;
153 chip->state = FL_READY;
154 wake_up(&chip->controller->wq);
155 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/**
159 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700160 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700162 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200164static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200166 struct nand_chip *chip = mtd->priv;
167 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
Brian Norris7854d3f2011-06-23 14:12:08 -0700172 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700173 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700175 * Default read function for 16bit buswidth with endianness conversion.
176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200178static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200180 struct nand_chip *chip = mtd->priv;
181 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700186 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700188 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190static u16 nand_read_word(struct mtd_info *mtd)
191{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200192 struct nand_chip *chip = mtd->priv;
193 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700198 * @mtd: MTD device structure
199 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * Default select function for 1 chip devices.
202 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200203static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200205 struct nand_chip *chip = mtd->priv;
206
207 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200209 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213
214 default:
215 BUG();
216 }
217}
218
219/**
220 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700221 * @mtd: MTD device structure
222 * @buf: data buffer
223 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700225 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200227static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200230 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
David Woodhousee0c7d762006-05-13 18:07:53 +0100232 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200233 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000237 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700238 * @mtd: MTD device structure
239 * @buf: buffer to store date
240 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700242 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200244static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200247 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
David Woodhousee0c7d762006-05-13 18:07:53 +0100249 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200250 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000254 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700255 * @mtd: MTD device structure
256 * @buf: buffer containing the data to compare
257 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700259 * Default verify function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200261static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200264 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
David Woodhousee0c7d762006-05-13 18:07:53 +0100266 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200267 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 0;
270}
271
272/**
273 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700274 * @mtd: MTD device structure
275 * @buf: data buffer
276 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700278 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200280static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200283 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 *p = (u16 *) buf;
285 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000286
David Woodhousee0c7d762006-05-13 18:07:53 +0100287 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200288 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000293 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700294 * @mtd: MTD device structure
295 * @buf: buffer to store date
296 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700298 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200300static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200303 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 u16 *p = (u16 *) buf;
305 len >>= 1;
306
David Woodhousee0c7d762006-05-13 18:07:53 +0100307 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200308 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000312 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700313 * @mtd: MTD device structure
314 * @buf: buffer containing the data to compare
315 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700317 * Default verify function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200319static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200322 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 u16 *p = (u16 *) buf;
324 len >>= 1;
325
David Woodhousee0c7d762006-05-13 18:07:53 +0100326 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200327 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -EFAULT;
329
330 return 0;
331}
332
333/**
334 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700335 * @mtd: MTD device structure
336 * @ofs: offset from device start
337 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000339 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
341static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
342{
343 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200344 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 u16 bad;
346
Brian Norris5fb15492011-05-31 16:31:21 -0700347 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700348 ofs += mtd->erasesize - mtd->writesize;
349
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100350 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200353 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200358 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200361 if (chip->options & NAND_BUSWIDTH_16) {
362 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100363 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200364 bad = cpu_to_le16(chip->read_word(mtd));
365 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000366 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200367 else
368 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100370 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200371 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000373
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200374 if (likely(chip->badblockbits == 8))
375 res = bad != 0xFF;
376 else
377 res = hweight8(bad) < chip->badblockbits;
378
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200379 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return res;
383}
384
385/**
386 * nand_default_block_markbad - [DEFAULT] mark a block bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700387 * @mtd: MTD device structure
388 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700390 * This is the default implementation, which can be overridden by a hardware
391 * specific driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392*/
393static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
394{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200395 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200396 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700397 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000398
Brian Norris5fb15492011-05-31 16:31:21 -0700399 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700400 ofs += mtd->erasesize - mtd->writesize;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400403 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200404 if (chip->bbt)
405 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Brian Norris8b6e50c2011-05-25 14:59:01 -0700407 /* Do we have a flash based bad block table? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700408 if (chip->bbt_options & NAND_BBT_USE_FLASH)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200409 ret = nand_update_bbt(mtd, ofs);
410 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412
Brian Norrisa0dc5522011-05-31 16:31:20 -0700413 /*
414 * Write to first two pages if necessary. If we write to more
415 * than one location, the first error encountered quits the
416 * procedure. We write two bytes per location, so we dont have
417 * to mess with 16 bit access.
Brian Norris02ed70b2010-07-21 16:53:47 -0700418 */
419 do {
420 chip->ops.len = chip->ops.ooblen = 2;
421 chip->ops.datbuf = NULL;
422 chip->ops.oobbuf = buf;
423 chip->ops.ooboffs = chip->badblockpos & ~0x01;
424
425 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
426
Brian Norris02ed70b2010-07-21 16:53:47 -0700427 i++;
428 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700429 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700430 i < 2);
431
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300432 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200433 }
434 if (!ret)
435 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300436
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700442 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700444 * Check, if the device is write protected. The function expects, that the
445 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100447static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200449 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200450
Brian Norris8b6e50c2011-05-25 14:59:01 -0700451 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200452 if (chip->options & NAND_BROKEN_XD)
453 return 0;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200456 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
457 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/**
461 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700462 * @mtd: MTD device structure
463 * @ofs: offset from device start
464 * @getchip: 0, if the chip is already selected
465 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
467 * Check, if the block is bad. Either by reading the bad block table or
468 * calling of the scan function.
469 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200470static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
471 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000474
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200475 if (!chip->bbt)
476 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100479 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200482/**
483 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700484 * @mtd: MTD device structure
485 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200486 *
487 * Helper function for nand_wait_ready used when needing to wait in interrupt
488 * context.
489 */
490static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
491{
492 struct nand_chip *chip = mtd->priv;
493 int i;
494
495 /* Wait for the device to get ready */
496 for (i = 0; i < timeo; i++) {
497 if (chip->dev_ready(mtd))
498 break;
499 touch_softlockup_watchdog();
500 mdelay(1);
501 }
502}
503
Brian Norris7854d3f2011-06-23 14:12:08 -0700504/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100505void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000506{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200507 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100508 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000509
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200510 /* 400ms timeout */
511 if (in_interrupt() || oops_in_progress)
512 return panic_nand_wait_ready(mtd, 400);
513
Richard Purdie8fe833c2006-03-31 02:31:14 -0800514 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700515 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000516 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200517 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800518 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700519 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000520 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800521 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000522}
David Woodhouse4b648b02006-09-25 17:05:24 +0100523EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/**
526 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700527 * @mtd: MTD device structure
528 * @command: the command to be sent
529 * @column: the column address for this command, -1 if none
530 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700532 * Send command to NAND device. This function is used for small page devices
533 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200535static void nand_command(struct mtd_info *mtd, unsigned int command,
536 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200538 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200539 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Brian Norris8b6e50c2011-05-25 14:59:01 -0700541 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (command == NAND_CMD_SEQIN) {
543 int readcmd;
544
Joern Engel28318772006-05-22 23:18:05 +0200545 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200547 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 readcmd = NAND_CMD_READOOB;
549 } else if (column < 256) {
550 /* First 256 bytes --> READ0 */
551 readcmd = NAND_CMD_READ0;
552 } else {
553 column -= 256;
554 readcmd = NAND_CMD_READ1;
555 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200556 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200557 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200559 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Brian Norris8b6e50c2011-05-25 14:59:01 -0700561 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200562 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
563 /* Serially input address */
564 if (column != -1) {
565 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200567 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200568 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200569 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200571 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200572 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200573 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200574 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200575 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200576 if (chip->chipsize > (32 << 20))
577 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200578 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000580
581 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700582 * Program and erase have their own busy handlers status and sequential
583 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 case NAND_CMD_PAGEPROG:
588 case NAND_CMD_ERASE1:
589 case NAND_CMD_ERASE2:
590 case NAND_CMD_SEQIN:
591 case NAND_CMD_STATUS:
592 return;
593
594 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200595 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200597 udelay(chip->chip_delay);
598 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200599 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200600 chip->cmd_ctrl(mtd,
601 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200602 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
603 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return;
605
David Woodhousee0c7d762006-05-13 18:07:53 +0100606 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * If we don't have access to the busy pin, we apply the given
610 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100611 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200612 if (!chip->dev_ready) {
613 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700617 /*
618 * Apply this short delay always to ensure that we do wait tWB in
619 * any case on any machine.
620 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100621 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000622
623 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/**
627 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700628 * @mtd: MTD device structure
629 * @command: the command to be sent
630 * @column: the column address for this command, -1 if none
631 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200633 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700634 * devices. We don't have the separate regions as we have in the small page
635 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200637static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
638 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200640 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* Emulate NAND_CMD_READOOB */
643 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200644 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 command = NAND_CMD_READ0;
646 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000647
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200649 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200650 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200653 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Serially input address */
656 if (column != -1) {
657 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200658 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200661 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200662 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200665 chip->cmd_ctrl(mtd, page_addr, ctrl);
666 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200667 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200669 if (chip->chipsize > (128 << 20))
670 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200671 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200674 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000675
676 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700677 * Program and erase have their own busy handlers status, sequential
678 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 case NAND_CMD_CACHEDPROG:
683 case NAND_CMD_PAGEPROG:
684 case NAND_CMD_ERASE1:
685 case NAND_CMD_ERASE2:
686 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200687 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000689 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return;
691
David A. Marlin30f464b2005-01-17 18:35:25 +0000692 case NAND_CMD_STATUS_ERROR:
693 case NAND_CMD_STATUS_ERROR0:
694 case NAND_CMD_STATUS_ERROR1:
695 case NAND_CMD_STATUS_ERROR2:
696 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700697 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200698 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000699 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200704 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200705 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
706 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
707 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
708 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200709 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
710 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return;
712
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200713 case NAND_CMD_RNDOUT:
714 /* No ready / busy check necessary */
715 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
716 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
717 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
718 NAND_NCE | NAND_CTRL_CHANGE);
719 return;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200722 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
723 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
724 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
725 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000726
David Woodhousee0c7d762006-05-13 18:07:53 +0100727 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000729 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700731 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100732 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200733 if (!chip->dev_ready) {
734 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000738
Brian Norris8b6e50c2011-05-25 14:59:01 -0700739 /*
740 * Apply this short delay always to ensure that we do wait tWB in
741 * any case on any machine.
742 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100743 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000744
745 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200749 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700750 * @chip: the nand chip descriptor
751 * @mtd: MTD device structure
752 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200753 *
754 * Used when in panic, no locks are taken.
755 */
756static void panic_nand_get_device(struct nand_chip *chip,
757 struct mtd_info *mtd, int new_state)
758{
Brian Norris7854d3f2011-06-23 14:12:08 -0700759 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200760 chip->controller->active = chip;
761 chip->state = new_state;
762}
763
764/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700766 * @chip: the nand chip descriptor
767 * @mtd: MTD device structure
768 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * Get the device and lock it for exclusive access
771 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200772static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200773nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200775 spinlock_t *lock = &chip->controller->lock;
776 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100777 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200778retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100779 spin_lock(lock);
780
vimal singhb8b3ee92009-07-09 20:41:22 +0530781 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200782 if (!chip->controller->active)
783 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200784
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200785 if (chip->controller->active == chip && chip->state == FL_READY) {
786 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100787 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100788 return 0;
789 }
790 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800791 if (chip->controller->active->state == FL_PM_SUSPENDED) {
792 chip->state = FL_PM_SUSPENDED;
793 spin_unlock(lock);
794 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800795 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100796 }
797 set_current_state(TASK_UNINTERRUPTIBLE);
798 add_wait_queue(wq, &wait);
799 spin_unlock(lock);
800 schedule();
801 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto retry;
803}
804
805/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700806 * panic_nand_wait - [GENERIC] wait until the command is done
807 * @mtd: MTD device structure
808 * @chip: NAND chip structure
809 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200810 *
811 * Wait for command done. This is a helper function for nand_wait used when
812 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400813 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200814 */
815static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
816 unsigned long timeo)
817{
818 int i;
819 for (i = 0; i < timeo; i++) {
820 if (chip->dev_ready) {
821 if (chip->dev_ready(mtd))
822 break;
823 } else {
824 if (chip->read_byte(mtd) & NAND_STATUS_READY)
825 break;
826 }
827 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200828 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200829}
830
831/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700832 * nand_wait - [DEFAULT] wait until the command is done
833 * @mtd: MTD device structure
834 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700836 * Wait for command done. This applies to erase and program only. Erase can
837 * take up to 400ms and program up to 20ms according to general NAND and
838 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700839 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200840static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842
David Woodhousee0c7d762006-05-13 18:07:53 +0100843 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200844 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100849 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Richard Purdie8fe833c2006-03-31 02:31:14 -0800851 led_trigger_event(nand_led_trigger, LED_FULL);
852
Brian Norris8b6e50c2011-05-25 14:59:01 -0700853 /*
854 * Apply this short delay always to ensure that we do wait tWB in any
855 * case on any machine.
856 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100857 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200859 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
860 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000861 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200862 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200864 if (in_interrupt() || oops_in_progress)
865 panic_nand_wait(mtd, chip, timeo);
866 else {
867 while (time_before(jiffies, timeo)) {
868 if (chip->dev_ready) {
869 if (chip->dev_ready(mtd))
870 break;
871 } else {
872 if (chip->read_byte(mtd) & NAND_STATUS_READY)
873 break;
874 }
875 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800878 led_trigger_event(nand_led_trigger, LED_OFF);
879
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200880 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return status;
882}
883
884/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700885 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700886 * @mtd: mtd info
887 * @ofs: offset to start unlock from
888 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700889 * @invert: when = 0, unlock the range of blocks within the lower and
890 * upper boundary address
891 * when = 1, unlock the range of blocks outside the boundaries
892 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530893 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700894 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530895 */
896static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
897 uint64_t len, int invert)
898{
899 int ret = 0;
900 int status, page;
901 struct nand_chip *chip = mtd->priv;
902
903 /* Submit address of first page to unlock */
904 page = ofs >> chip->page_shift;
905 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
906
907 /* Submit address of last page to unlock */
908 page = (ofs + len) >> chip->page_shift;
909 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
910 (page | invert) & chip->pagemask);
911
912 /* Call wait ready function */
913 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530914 /* See if device thinks it succeeded */
915 if (status & 0x01) {
916 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
917 __func__, status);
918 ret = -EIO;
919 }
920
921 return ret;
922}
923
924/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700925 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700926 * @mtd: mtd info
927 * @ofs: offset to start unlock from
928 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530929 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700930 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530931 */
932int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
933{
934 int ret = 0;
935 int chipnr;
936 struct nand_chip *chip = mtd->priv;
937
938 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
939 __func__, (unsigned long long)ofs, len);
940
941 if (check_offs_len(mtd, ofs, len))
942 ret = -EINVAL;
943
944 /* Align to last block address if size addresses end of the device */
945 if (ofs + len == mtd->size)
946 len -= mtd->erasesize;
947
948 nand_get_device(chip, mtd, FL_UNLOCKING);
949
950 /* Shift to get chip number */
951 chipnr = ofs >> chip->chip_shift;
952
953 chip->select_chip(mtd, chipnr);
954
955 /* Check, if it is write protected */
956 if (nand_check_wp(mtd)) {
957 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
958 __func__);
959 ret = -EIO;
960 goto out;
961 }
962
963 ret = __nand_unlock(mtd, ofs, len, 0);
964
965out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530966 nand_release_device(mtd);
967
968 return ret;
969}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200970EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530971
972/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700973 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700974 * @mtd: mtd info
975 * @ofs: offset to start unlock from
976 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530977 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700978 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
979 * have this feature, but it allows only to lock all blocks, not for specified
980 * range for block. Implementing 'lock' feature by making use of 'unlock', for
981 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530982 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700983 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530984 */
985int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
986{
987 int ret = 0;
988 int chipnr, status, page;
989 struct nand_chip *chip = mtd->priv;
990
991 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
992 __func__, (unsigned long long)ofs, len);
993
994 if (check_offs_len(mtd, ofs, len))
995 ret = -EINVAL;
996
997 nand_get_device(chip, mtd, FL_LOCKING);
998
999 /* Shift to get chip number */
1000 chipnr = ofs >> chip->chip_shift;
1001
1002 chip->select_chip(mtd, chipnr);
1003
1004 /* Check, if it is write protected */
1005 if (nand_check_wp(mtd)) {
1006 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1007 __func__);
1008 status = MTD_ERASE_FAILED;
1009 ret = -EIO;
1010 goto out;
1011 }
1012
1013 /* Submit address of first page to lock */
1014 page = ofs >> chip->page_shift;
1015 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1016
1017 /* Call wait ready function */
1018 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301019 /* See if device thinks it succeeded */
1020 if (status & 0x01) {
1021 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1022 __func__, status);
1023 ret = -EIO;
1024 goto out;
1025 }
1026
1027 ret = __nand_unlock(mtd, ofs, len, 0x1);
1028
1029out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301030 nand_release_device(mtd);
1031
1032 return ret;
1033}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001034EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301035
1036/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001037 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001038 * @mtd: mtd info structure
1039 * @chip: nand chip info structure
1040 * @buf: buffer to store read data
1041 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001042 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001043 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001044 */
1045static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001046 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001047{
1048 chip->read_buf(mtd, buf, mtd->writesize);
1049 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1050 return 0;
1051}
1052
1053/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001054 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001055 * @mtd: mtd info structure
1056 * @chip: nand chip info structure
1057 * @buf: buffer to store read data
1058 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001059 *
1060 * We need a special oob layout and handling even when OOB isn't used.
1061 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001062static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1063 struct nand_chip *chip,
1064 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001065{
1066 int eccsize = chip->ecc.size;
1067 int eccbytes = chip->ecc.bytes;
1068 uint8_t *oob = chip->oob_poi;
1069 int steps, size;
1070
1071 for (steps = chip->ecc.steps; steps > 0; steps--) {
1072 chip->read_buf(mtd, buf, eccsize);
1073 buf += eccsize;
1074
1075 if (chip->ecc.prepad) {
1076 chip->read_buf(mtd, oob, chip->ecc.prepad);
1077 oob += chip->ecc.prepad;
1078 }
1079
1080 chip->read_buf(mtd, oob, eccbytes);
1081 oob += eccbytes;
1082
1083 if (chip->ecc.postpad) {
1084 chip->read_buf(mtd, oob, chip->ecc.postpad);
1085 oob += chip->ecc.postpad;
1086 }
1087 }
1088
1089 size = mtd->oobsize - (oob - chip->oob_poi);
1090 if (size)
1091 chip->read_buf(mtd, oob, size);
1092
1093 return 0;
1094}
1095
1096/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001097 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001098 * @mtd: mtd info structure
1099 * @chip: nand chip info structure
1100 * @buf: buffer to store read data
1101 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001102 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001103static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001104 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001106 int i, eccsize = chip->ecc.size;
1107 int eccbytes = chip->ecc.bytes;
1108 int eccsteps = chip->ecc.steps;
1109 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001110 uint8_t *ecc_calc = chip->buffers->ecccalc;
1111 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001112 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001113
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001114 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001115
1116 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1117 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1118
1119 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001120 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001121
1122 eccsteps = chip->ecc.steps;
1123 p = buf;
1124
1125 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1126 int stat;
1127
1128 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001129 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001130 mtd->ecc_stats.failed++;
1131 else
1132 mtd->ecc_stats.corrected += stat;
1133 }
1134 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001135}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001138 * nand_read_subpage - [REPLACEABLE] software ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001139 * @mtd: mtd info structure
1140 * @chip: nand chip info structure
1141 * @data_offs: offset of requested data within the page
1142 * @readlen: data length
1143 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001144 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001145static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1146 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001147{
1148 int start_step, end_step, num_steps;
1149 uint32_t *eccpos = chip->ecc.layout->eccpos;
1150 uint8_t *p;
1151 int data_col_addr, i, gaps = 0;
1152 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1153 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001154 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001155
Brian Norris7854d3f2011-06-23 14:12:08 -07001156 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001157 start_step = data_offs / chip->ecc.size;
1158 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1159 num_steps = end_step - start_step + 1;
1160
Brian Norris8b6e50c2011-05-25 14:59:01 -07001161 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001162 datafrag_len = num_steps * chip->ecc.size;
1163 eccfrag_len = num_steps * chip->ecc.bytes;
1164
1165 data_col_addr = start_step * chip->ecc.size;
1166 /* If we read not a page aligned data */
1167 if (data_col_addr != 0)
1168 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1169
1170 p = bufpoi + data_col_addr;
1171 chip->read_buf(mtd, p, datafrag_len);
1172
Brian Norris8b6e50c2011-05-25 14:59:01 -07001173 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001174 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1175 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1176
Brian Norris8b6e50c2011-05-25 14:59:01 -07001177 /*
1178 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001179 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001181 for (i = 0; i < eccfrag_len - 1; i++) {
1182 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1183 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1184 gaps = 1;
1185 break;
1186 }
1187 }
1188 if (gaps) {
1189 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1190 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1191 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001192 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001193 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001194 * about buswidth alignment in read_buf.
1195 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001196 index = start_step * chip->ecc.bytes;
1197
1198 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001199 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001200 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001201 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001202 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001203 aligned_len++;
1204
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001205 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1206 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001207 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1208 }
1209
1210 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001211 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001212
1213 p = bufpoi + data_col_addr;
1214 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1215 int stat;
1216
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001217 stat = chip->ecc.correct(mtd, p,
1218 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001219 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001220 mtd->ecc_stats.failed++;
1221 else
1222 mtd->ecc_stats.corrected += stat;
1223 }
1224 return 0;
1225}
1226
1227/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001228 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001229 * @mtd: mtd info structure
1230 * @chip: nand chip info structure
1231 * @buf: buffer to store read data
1232 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001233 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001234 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001235 */
1236static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001237 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001238{
1239 int i, eccsize = chip->ecc.size;
1240 int eccbytes = chip->ecc.bytes;
1241 int eccsteps = chip->ecc.steps;
1242 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001243 uint8_t *ecc_calc = chip->buffers->ecccalc;
1244 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001245 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001246
1247 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1248 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1249 chip->read_buf(mtd, p, eccsize);
1250 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1251 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001252 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001253
1254 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001255 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001256
1257 eccsteps = chip->ecc.steps;
1258 p = buf;
1259
1260 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1261 int stat;
1262
1263 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001264 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001265 mtd->ecc_stats.failed++;
1266 else
1267 mtd->ecc_stats.corrected += stat;
1268 }
1269 return 0;
1270}
1271
1272/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001273 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001274 * @mtd: mtd info structure
1275 * @chip: nand chip info structure
1276 * @buf: buffer to store read data
1277 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001278 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001279 * Hardware ECC for large page chips, require OOB to be read first. For this
1280 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1281 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1282 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1283 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001284 */
1285static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1286 struct nand_chip *chip, uint8_t *buf, int page)
1287{
1288 int i, eccsize = chip->ecc.size;
1289 int eccbytes = chip->ecc.bytes;
1290 int eccsteps = chip->ecc.steps;
1291 uint8_t *p = buf;
1292 uint8_t *ecc_code = chip->buffers->ecccode;
1293 uint32_t *eccpos = chip->ecc.layout->eccpos;
1294 uint8_t *ecc_calc = chip->buffers->ecccalc;
1295
1296 /* Read the OOB area first */
1297 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1298 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1299 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1300
1301 for (i = 0; i < chip->ecc.total; i++)
1302 ecc_code[i] = chip->oob_poi[eccpos[i]];
1303
1304 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1305 int stat;
1306
1307 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1308 chip->read_buf(mtd, p, eccsize);
1309 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1310
1311 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1312 if (stat < 0)
1313 mtd->ecc_stats.failed++;
1314 else
1315 mtd->ecc_stats.corrected += stat;
1316 }
1317 return 0;
1318}
1319
1320/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001321 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001322 * @mtd: mtd info structure
1323 * @chip: nand chip info structure
1324 * @buf: buffer to store read data
1325 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001326 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001327 * The hw generator calculates the error syndrome automatically. Therefore we
1328 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001329 */
1330static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001331 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332{
1333 int i, eccsize = chip->ecc.size;
1334 int eccbytes = chip->ecc.bytes;
1335 int eccsteps = chip->ecc.steps;
1336 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001337 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001338
1339 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1340 int stat;
1341
1342 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1343 chip->read_buf(mtd, p, eccsize);
1344
1345 if (chip->ecc.prepad) {
1346 chip->read_buf(mtd, oob, chip->ecc.prepad);
1347 oob += chip->ecc.prepad;
1348 }
1349
1350 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1351 chip->read_buf(mtd, oob, eccbytes);
1352 stat = chip->ecc.correct(mtd, p, oob, NULL);
1353
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001354 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001355 mtd->ecc_stats.failed++;
1356 else
1357 mtd->ecc_stats.corrected += stat;
1358
1359 oob += eccbytes;
1360
1361 if (chip->ecc.postpad) {
1362 chip->read_buf(mtd, oob, chip->ecc.postpad);
1363 oob += chip->ecc.postpad;
1364 }
1365 }
1366
1367 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001368 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001369 if (i)
1370 chip->read_buf(mtd, oob, i);
1371
1372 return 0;
1373}
1374
1375/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001376 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001377 * @chip: nand chip structure
1378 * @oob: oob destination address
1379 * @ops: oob ops structure
1380 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001381 */
1382static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001383 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001384{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001385 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001386
1387 case MTD_OOB_PLACE:
1388 case MTD_OOB_RAW:
1389 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1390 return oob + len;
1391
1392 case MTD_OOB_AUTO: {
1393 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001394 uint32_t boffs = 0, roffs = ops->ooboffs;
1395 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001396
Florian Fainellif8ac0412010-09-07 13:23:43 +02001397 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001398 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001399 if (unlikely(roffs)) {
1400 if (roffs >= free->length) {
1401 roffs -= free->length;
1402 continue;
1403 }
1404 boffs = free->offset + roffs;
1405 bytes = min_t(size_t, len,
1406 (free->length - roffs));
1407 roffs = 0;
1408 } else {
1409 bytes = min_t(size_t, len, free->length);
1410 boffs = free->offset;
1411 }
1412 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001413 oob += bytes;
1414 }
1415 return oob;
1416 }
1417 default:
1418 BUG();
1419 }
1420 return NULL;
1421}
1422
1423/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001424 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001425 * @mtd: MTD device structure
1426 * @from: offset to read from
1427 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001428 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001429 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001430 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001431static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1432 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001433{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001434 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001435 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001436 struct mtd_ecc_stats stats;
1437 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1438 int sndcmd = 1;
1439 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001441 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001442 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1443 mtd->oobavail : mtd->oobsize;
1444
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001445 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001447 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001449 chipnr = (int)(from >> chip->chip_shift);
1450 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001452 realpage = (int)(from >> chip->page_shift);
1453 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001455 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001457 buf = ops->datbuf;
1458 oob = ops->oobbuf;
1459
Florian Fainellif8ac0412010-09-07 13:23:43 +02001460 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001461 bytes = min(mtd->writesize - col, readlen);
1462 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001463
Brian Norris8b6e50c2011-05-25 14:59:01 -07001464 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001466 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001468 if (likely(sndcmd)) {
1469 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1470 sndcmd = 0;
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001473 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001474 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001475 ret = chip->ecc.read_page_raw(mtd, chip,
1476 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001477 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001478 ret = chip->ecc.read_subpage(mtd, chip,
1479 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001480 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001481 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1482 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001483 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001484 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001485
1486 /* Transfer not aligned data */
1487 if (!aligned) {
Artem Bityutskiyc1194c72010-09-03 22:01:16 +03001488 if (!NAND_SUBPAGE_READ(chip) && !oob &&
1489 !(mtd->ecc_stats.failed - stats.failed))
Alexey Korolev3d459552008-05-15 17:23:18 +01001490 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001491 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001493
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001494 buf += bytes;
1495
1496 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001497
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001498 int toread = min(oobreadlen, max_oobsize);
1499
1500 if (toread) {
1501 oob = nand_transfer_oob(chip,
1502 oob, ops, toread);
1503 oobreadlen -= toread;
1504 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001505 }
1506
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001507 if (!(chip->options & NAND_NO_READRDY)) {
1508 /*
1509 * Apply delay or wait for ready/busy pin. Do
1510 * this before the AUTOINCR check, so no
1511 * problems arise if a chip which does auto
1512 * increment is marked as NOAUTOINCR by the
1513 * board driver.
1514 */
1515 if (!chip->dev_ready)
1516 udelay(chip->chip_delay);
1517 else
1518 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001520 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001521 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001522 buf += bytes;
1523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001525 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001526
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001527 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Brian Norris8b6e50c2011-05-25 14:59:01 -07001530 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 col = 0;
1532 /* Increment page address */
1533 realpage++;
1534
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001535 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 /* Check, if we cross a chip boundary */
1537 if (!page) {
1538 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001539 chip->select_chip(mtd, -1);
1540 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001542
Brian Norris8b6e50c2011-05-25 14:59:01 -07001543 /*
1544 * Check, if the chip supports auto page increment or if we
1545 * have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001546 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001547 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001548 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001551 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001552 if (oob)
1553 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001555 if (ret)
1556 return ret;
1557
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001558 if (mtd->ecc_stats.failed - stats.failed)
1559 return -EBADMSG;
1560
1561 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001562}
1563
1564/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001565 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001566 * @mtd: MTD device structure
1567 * @from: offset to read from
1568 * @len: number of bytes to read
1569 * @retlen: pointer to variable to store the number of read bytes
1570 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001571 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001572 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001573 */
1574static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1575 size_t *retlen, uint8_t *buf)
1576{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001577 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001578 int ret;
1579
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001580 /* Do not allow reads past end of device */
1581 if ((from + len) > mtd->size)
1582 return -EINVAL;
1583 if (!len)
1584 return 0;
1585
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001586 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001587
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001588 chip->ops.len = len;
1589 chip->ops.datbuf = buf;
1590 chip->ops.oobbuf = NULL;
1591
1592 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001593
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001594 *retlen = chip->ops.retlen;
1595
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001596 nand_release_device(mtd);
1597
1598 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
1601/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001602 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001603 * @mtd: mtd info structure
1604 * @chip: nand chip info structure
1605 * @page: page number to read
1606 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001607 */
1608static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1609 int page, int sndcmd)
1610{
1611 if (sndcmd) {
1612 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1613 sndcmd = 0;
1614 }
1615 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1616 return sndcmd;
1617}
1618
1619/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001620 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001621 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001622 * @mtd: mtd info structure
1623 * @chip: nand chip info structure
1624 * @page: page number to read
1625 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001626 */
1627static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1628 int page, int sndcmd)
1629{
1630 uint8_t *buf = chip->oob_poi;
1631 int length = mtd->oobsize;
1632 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1633 int eccsize = chip->ecc.size;
1634 uint8_t *bufpoi = buf;
1635 int i, toread, sndrnd = 0, pos;
1636
1637 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1638 for (i = 0; i < chip->ecc.steps; i++) {
1639 if (sndrnd) {
1640 pos = eccsize + i * (eccsize + chunk);
1641 if (mtd->writesize > 512)
1642 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1643 else
1644 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1645 } else
1646 sndrnd = 1;
1647 toread = min_t(int, length, chunk);
1648 chip->read_buf(mtd, bufpoi, toread);
1649 bufpoi += toread;
1650 length -= toread;
1651 }
1652 if (length > 0)
1653 chip->read_buf(mtd, bufpoi, length);
1654
1655 return 1;
1656}
1657
1658/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001659 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001660 * @mtd: mtd info structure
1661 * @chip: nand chip info structure
1662 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001663 */
1664static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1665 int page)
1666{
1667 int status = 0;
1668 const uint8_t *buf = chip->oob_poi;
1669 int length = mtd->oobsize;
1670
1671 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1672 chip->write_buf(mtd, buf, length);
1673 /* Send command to program the OOB data */
1674 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1675
1676 status = chip->waitfunc(mtd, chip);
1677
Savin Zlobec0d420f92006-06-21 11:51:20 +02001678 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001679}
1680
1681/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001682 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001683 * with syndrome - only for large page flash
1684 * @mtd: mtd info structure
1685 * @chip: nand chip info structure
1686 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001687 */
1688static int nand_write_oob_syndrome(struct mtd_info *mtd,
1689 struct nand_chip *chip, int page)
1690{
1691 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1692 int eccsize = chip->ecc.size, length = mtd->oobsize;
1693 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1694 const uint8_t *bufpoi = chip->oob_poi;
1695
1696 /*
1697 * data-ecc-data-ecc ... ecc-oob
1698 * or
1699 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1700 */
1701 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1702 pos = steps * (eccsize + chunk);
1703 steps = 0;
1704 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001705 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001706
1707 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1708 for (i = 0; i < steps; i++) {
1709 if (sndcmd) {
1710 if (mtd->writesize <= 512) {
1711 uint32_t fill = 0xFFFFFFFF;
1712
1713 len = eccsize;
1714 while (len > 0) {
1715 int num = min_t(int, len, 4);
1716 chip->write_buf(mtd, (uint8_t *)&fill,
1717 num);
1718 len -= num;
1719 }
1720 } else {
1721 pos = eccsize + i * (eccsize + chunk);
1722 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1723 }
1724 } else
1725 sndcmd = 1;
1726 len = min_t(int, length, chunk);
1727 chip->write_buf(mtd, bufpoi, len);
1728 bufpoi += len;
1729 length -= len;
1730 }
1731 if (length > 0)
1732 chip->write_buf(mtd, bufpoi, length);
1733
1734 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1735 status = chip->waitfunc(mtd, chip);
1736
1737 return status & NAND_STATUS_FAIL ? -EIO : 0;
1738}
1739
1740/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001741 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001742 * @mtd: MTD device structure
1743 * @from: offset to read from
1744 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001746 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001748static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1749 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001751 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001752 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001753 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001754 int readlen = ops->ooblen;
1755 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001756 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
vimal singh20d8e242009-07-07 15:49:49 +05301758 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1759 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Adrian Hunter03736152007-01-31 17:58:29 +02001761 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001762 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001763 else
1764 len = mtd->oobsize;
1765
1766 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301767 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1768 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001769 return -EINVAL;
1770 }
1771
1772 /* Do not allow reads past end of device */
1773 if (unlikely(from >= mtd->size ||
1774 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1775 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301776 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1777 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001778 return -EINVAL;
1779 }
Vitaly Wool70145682006-11-03 18:20:38 +03001780
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001781 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001782 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001784 /* Shift to get page */
1785 realpage = (int)(from >> chip->page_shift);
1786 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Florian Fainellif8ac0412010-09-07 13:23:43 +02001788 while (1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001789 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001790
1791 len = min(len, readlen);
1792 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001793
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001794 if (!(chip->options & NAND_NO_READRDY)) {
1795 /*
1796 * Apply delay or wait for ready/busy pin. Do this
1797 * before the AUTOINCR check, so no problems arise if a
1798 * chip which does auto increment is marked as
1799 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001800 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001801 if (!chip->dev_ready)
1802 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001803 else
1804 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001806
Vitaly Wool70145682006-11-03 18:20:38 +03001807 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001808 if (!readlen)
1809 break;
1810
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001811 /* Increment page address */
1812 realpage++;
1813
1814 page = realpage & chip->pagemask;
1815 /* Check, if we cross a chip boundary */
1816 if (!page) {
1817 chipnr++;
1818 chip->select_chip(mtd, -1);
1819 chip->select_chip(mtd, chipnr);
1820 }
1821
Brian Norris8b6e50c2011-05-25 14:59:01 -07001822 /*
1823 * Check, if the chip supports auto page increment or if we
1824 * have hit a block boundary.
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001825 */
1826 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1827 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829
Vitaly Wool70145682006-11-03 18:20:38 +03001830 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
1832}
1833
1834/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001835 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001836 * @mtd: MTD device structure
1837 * @from: offset to read from
1838 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001840 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001842static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1843 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001845 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001846 int ret = -ENOTSUPP;
1847
1848 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001851 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301852 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1853 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 return -EINVAL;
1855 }
1856
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001857 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Florian Fainellif8ac0412010-09-07 13:23:43 +02001859 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001860 case MTD_OOB_PLACE:
1861 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001862 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001863 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001864
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001865 default:
1866 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001869 if (!ops->datbuf)
1870 ret = nand_do_read_oob(mtd, from, ops);
1871 else
1872 ret = nand_do_read_ops(mtd, from, ops);
1873
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001874out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001876 return ret;
1877}
1878
1879
1880/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001881 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001882 * @mtd: mtd info structure
1883 * @chip: nand chip info structure
1884 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001885 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001886 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001887 */
1888static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1889 const uint8_t *buf)
1890{
1891 chip->write_buf(mtd, buf, mtd->writesize);
1892 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001895/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001896 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001897 * @mtd: mtd info structure
1898 * @chip: nand chip info structure
1899 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001900 *
1901 * We need a special oob layout and handling even when ECC isn't checked.
1902 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001903static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1904 struct nand_chip *chip,
1905 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001906{
1907 int eccsize = chip->ecc.size;
1908 int eccbytes = chip->ecc.bytes;
1909 uint8_t *oob = chip->oob_poi;
1910 int steps, size;
1911
1912 for (steps = chip->ecc.steps; steps > 0; steps--) {
1913 chip->write_buf(mtd, buf, eccsize);
1914 buf += eccsize;
1915
1916 if (chip->ecc.prepad) {
1917 chip->write_buf(mtd, oob, chip->ecc.prepad);
1918 oob += chip->ecc.prepad;
1919 }
1920
1921 chip->read_buf(mtd, oob, eccbytes);
1922 oob += eccbytes;
1923
1924 if (chip->ecc.postpad) {
1925 chip->write_buf(mtd, oob, chip->ecc.postpad);
1926 oob += chip->ecc.postpad;
1927 }
1928 }
1929
1930 size = mtd->oobsize - (oob - chip->oob_poi);
1931 if (size)
1932 chip->write_buf(mtd, oob, size);
1933}
1934/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001935 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001936 * @mtd: mtd info structure
1937 * @chip: nand chip info structure
1938 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001939 */
1940static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1941 const uint8_t *buf)
1942{
1943 int i, eccsize = chip->ecc.size;
1944 int eccbytes = chip->ecc.bytes;
1945 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001946 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001947 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001948 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001949
Brian Norris7854d3f2011-06-23 14:12:08 -07001950 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001951 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1952 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001953
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001954 for (i = 0; i < chip->ecc.total; i++)
1955 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001956
Thomas Gleixner90424de2007-04-05 11:44:05 +02001957 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001958}
1959
1960/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001961 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001962 * @mtd: mtd info structure
1963 * @chip: nand chip info structure
1964 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001965 */
1966static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1967 const uint8_t *buf)
1968{
1969 int i, eccsize = chip->ecc.size;
1970 int eccbytes = chip->ecc.bytes;
1971 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001972 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001973 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001974 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001975
1976 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1977 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001978 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001979 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1980 }
1981
1982 for (i = 0; i < chip->ecc.total; i++)
1983 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1984
1985 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1986}
1987
1988/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001989 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07001990 * @mtd: mtd info structure
1991 * @chip: nand chip info structure
1992 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001993 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001994 * The hw generator calculates the error syndrome automatically. Therefore we
1995 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001996 */
1997static void nand_write_page_syndrome(struct mtd_info *mtd,
1998 struct nand_chip *chip, const uint8_t *buf)
1999{
2000 int i, eccsize = chip->ecc.size;
2001 int eccbytes = chip->ecc.bytes;
2002 int eccsteps = chip->ecc.steps;
2003 const uint8_t *p = buf;
2004 uint8_t *oob = chip->oob_poi;
2005
2006 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2007
2008 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2009 chip->write_buf(mtd, p, eccsize);
2010
2011 if (chip->ecc.prepad) {
2012 chip->write_buf(mtd, oob, chip->ecc.prepad);
2013 oob += chip->ecc.prepad;
2014 }
2015
2016 chip->ecc.calculate(mtd, p, oob);
2017 chip->write_buf(mtd, oob, eccbytes);
2018 oob += eccbytes;
2019
2020 if (chip->ecc.postpad) {
2021 chip->write_buf(mtd, oob, chip->ecc.postpad);
2022 oob += chip->ecc.postpad;
2023 }
2024 }
2025
2026 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002027 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002028 if (i)
2029 chip->write_buf(mtd, oob, i);
2030}
2031
2032/**
David Woodhouse956e9442006-09-25 17:12:39 +01002033 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002034 * @mtd: MTD device structure
2035 * @chip: NAND chip descriptor
2036 * @buf: the data to write
2037 * @page: page number to write
2038 * @cached: cached programming
2039 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002040 */
2041static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002042 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002043{
2044 int status;
2045
2046 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2047
David Woodhouse956e9442006-09-25 17:12:39 +01002048 if (unlikely(raw))
2049 chip->ecc.write_page_raw(mtd, chip, buf);
2050 else
2051 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002052
2053 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002054 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002055 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002056 */
2057 cached = 0;
2058
2059 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2060
2061 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002062 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002063 /*
2064 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002065 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002066 */
2067 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2068 status = chip->errstat(mtd, chip, FL_WRITING, status,
2069 page);
2070
2071 if (status & NAND_STATUS_FAIL)
2072 return -EIO;
2073 } else {
2074 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002075 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002076 }
2077
2078#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2079 /* Send command to read back the data */
2080 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2081
2082 if (chip->verify_buf(mtd, buf, mtd->writesize))
2083 return -EIO;
2084#endif
2085 return 0;
2086}
2087
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002088/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002089 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002090 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002091 * @oob: oob data buffer
2092 * @len: oob data write length
2093 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002094 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002095static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2096 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002097{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002098 struct nand_chip *chip = mtd->priv;
2099
2100 /*
2101 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2102 * data from a previous OOB read.
2103 */
2104 memset(chip->oob_poi, 0xff, mtd->oobsize);
2105
Florian Fainellif8ac0412010-09-07 13:23:43 +02002106 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002107
2108 case MTD_OOB_PLACE:
2109 case MTD_OOB_RAW:
2110 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2111 return oob + len;
2112
2113 case MTD_OOB_AUTO: {
2114 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002115 uint32_t boffs = 0, woffs = ops->ooboffs;
2116 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002117
Florian Fainellif8ac0412010-09-07 13:23:43 +02002118 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002119 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002120 if (unlikely(woffs)) {
2121 if (woffs >= free->length) {
2122 woffs -= free->length;
2123 continue;
2124 }
2125 boffs = free->offset + woffs;
2126 bytes = min_t(size_t, len,
2127 (free->length - woffs));
2128 woffs = 0;
2129 } else {
2130 bytes = min_t(size_t, len, free->length);
2131 boffs = free->offset;
2132 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002133 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002134 oob += bytes;
2135 }
2136 return oob;
2137 }
2138 default:
2139 BUG();
2140 }
2141 return NULL;
2142}
2143
Florian Fainellif8ac0412010-09-07 13:23:43 +02002144#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002145
2146/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002147 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002148 * @mtd: MTD device structure
2149 * @to: offset to write to
2150 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002151 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002152 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002153 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002154static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2155 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002156{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002157 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002158 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002159 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002160
2161 uint32_t oobwritelen = ops->ooblen;
2162 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2163 mtd->oobavail : mtd->oobsize;
2164
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002165 uint8_t *oob = ops->oobbuf;
2166 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002167 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002168
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002169 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002170 if (!writelen)
2171 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002172
Brian Norris8b6e50c2011-05-25 14:59:01 -07002173 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002174 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302175 printk(KERN_NOTICE "%s: Attempt to write not "
2176 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002177 return -EINVAL;
2178 }
2179
Thomas Gleixner29072b92006-09-28 15:38:36 +02002180 column = to & (mtd->writesize - 1);
2181 subpage = column || (writelen & (mtd->writesize - 1));
2182
2183 if (subpage && oob)
2184 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002185
Thomas Gleixner6a930962006-06-28 00:11:45 +02002186 chipnr = (int)(to >> chip->chip_shift);
2187 chip->select_chip(mtd, chipnr);
2188
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002189 /* Check, if it is write protected */
2190 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002191 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002192
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002193 realpage = (int)(to >> chip->page_shift);
2194 page = realpage & chip->pagemask;
2195 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2196
2197 /* Invalidate the page cache, when we write to the cached page */
2198 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002199 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002200 chip->pagebuf = -1;
2201
Maxim Levitsky782ce792010-02-22 20:39:36 +02002202 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002203 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002204 return -EINVAL;
2205
Florian Fainellif8ac0412010-09-07 13:23:43 +02002206 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002207 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002208 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002209 uint8_t *wbuf = buf;
2210
Brian Norris8b6e50c2011-05-25 14:59:01 -07002211 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002212 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2213 cached = 0;
2214 bytes = min_t(int, bytes - column, (int) writelen);
2215 chip->pagebuf = -1;
2216 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2217 memcpy(&chip->buffers->databuf[column], buf, bytes);
2218 wbuf = chip->buffers->databuf;
2219 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002220
Maxim Levitsky782ce792010-02-22 20:39:36 +02002221 if (unlikely(oob)) {
2222 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002223 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002224 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002225 } else {
2226 /* We still need to erase leftover OOB data */
2227 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002228 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002229
Thomas Gleixner29072b92006-09-28 15:38:36 +02002230 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002231 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002232 if (ret)
2233 break;
2234
2235 writelen -= bytes;
2236 if (!writelen)
2237 break;
2238
Thomas Gleixner29072b92006-09-28 15:38:36 +02002239 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002240 buf += bytes;
2241 realpage++;
2242
2243 page = realpage & chip->pagemask;
2244 /* Check, if we cross a chip boundary */
2245 if (!page) {
2246 chipnr++;
2247 chip->select_chip(mtd, -1);
2248 chip->select_chip(mtd, chipnr);
2249 }
2250 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002251
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002252 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002253 if (unlikely(oob))
2254 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002255 return ret;
2256}
2257
2258/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002259 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002260 * @mtd: MTD device structure
2261 * @to: offset to write to
2262 * @len: number of bytes to write
2263 * @retlen: pointer to variable to store the number of written bytes
2264 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002265 *
2266 * NAND write with ECC. Used when performing writes in interrupt context, this
2267 * may for example be called by mtdoops when writing an oops while in panic.
2268 */
2269static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2270 size_t *retlen, const uint8_t *buf)
2271{
2272 struct nand_chip *chip = mtd->priv;
2273 int ret;
2274
2275 /* Do not allow reads past end of device */
2276 if ((to + len) > mtd->size)
2277 return -EINVAL;
2278 if (!len)
2279 return 0;
2280
Brian Norris8b6e50c2011-05-25 14:59:01 -07002281 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002282 panic_nand_wait(mtd, chip, 400);
2283
Brian Norris8b6e50c2011-05-25 14:59:01 -07002284 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002285 panic_nand_get_device(chip, mtd, FL_WRITING);
2286
2287 chip->ops.len = len;
2288 chip->ops.datbuf = (uint8_t *)buf;
2289 chip->ops.oobbuf = NULL;
2290
2291 ret = nand_do_write_ops(mtd, to, &chip->ops);
2292
2293 *retlen = chip->ops.retlen;
2294 return ret;
2295}
2296
2297/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002298 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002299 * @mtd: MTD device structure
2300 * @to: offset to write to
2301 * @len: number of bytes to write
2302 * @retlen: pointer to variable to store the number of written bytes
2303 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002305 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002307static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002308 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002310 struct nand_chip *chip = mtd->priv;
2311 int ret;
2312
2313 /* Do not allow reads past end of device */
2314 if ((to + len) > mtd->size)
2315 return -EINVAL;
2316 if (!len)
2317 return 0;
2318
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002319 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002320
2321 chip->ops.len = len;
2322 chip->ops.datbuf = (uint8_t *)buf;
2323 chip->ops.oobbuf = NULL;
2324
2325 ret = nand_do_write_ops(mtd, to, &chip->ops);
2326
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002327 *retlen = chip->ops.retlen;
2328
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002329 nand_release_device(mtd);
2330
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002331 return ret;
2332}
2333
2334/**
2335 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002336 * @mtd: MTD device structure
2337 * @to: offset to write to
2338 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002339 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002340 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002341 */
2342static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2343 struct mtd_oob_ops *ops)
2344{
Adrian Hunter03736152007-01-31 17:58:29 +02002345 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002346 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
vimal singh20d8e242009-07-07 15:49:49 +05302348 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2349 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Adrian Hunter03736152007-01-31 17:58:29 +02002351 if (ops->mode == MTD_OOB_AUTO)
2352 len = chip->ecc.layout->oobavail;
2353 else
2354 len = mtd->oobsize;
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002357 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302358 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2359 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return -EINVAL;
2361 }
2362
Adrian Hunter03736152007-01-31 17:58:29 +02002363 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302364 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2365 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002366 return -EINVAL;
2367 }
2368
Jason Liu775adc32011-02-25 13:06:18 +08002369 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002370 if (unlikely(to >= mtd->size ||
2371 ops->ooboffs + ops->ooblen >
2372 ((mtd->size >> chip->page_shift) -
2373 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302374 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2375 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002376 return -EINVAL;
2377 }
2378
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002379 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002380 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002382 /* Shift to get page */
2383 page = (int)(to >> chip->page_shift);
2384
2385 /*
2386 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2387 * of my DiskOnChip 2000 test units) will clear the whole data page too
2388 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2389 * it in the doc2000 driver in August 1999. dwmw2.
2390 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002391 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393 /* Check, if it is write protected */
2394 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002395 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002398 if (page == chip->pagebuf)
2399 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002401 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002402 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002403
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002404 if (status)
2405 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Vitaly Wool70145682006-11-03 18:20:38 +03002407 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002409 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002410}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002412/**
2413 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002414 * @mtd: MTD device structure
2415 * @to: offset to write to
2416 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002417 */
2418static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2419 struct mtd_oob_ops *ops)
2420{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002421 struct nand_chip *chip = mtd->priv;
2422 int ret = -ENOTSUPP;
2423
2424 ops->retlen = 0;
2425
2426 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002427 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302428 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2429 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002430 return -EINVAL;
2431 }
2432
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002433 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002434
Florian Fainellif8ac0412010-09-07 13:23:43 +02002435 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002436 case MTD_OOB_PLACE:
2437 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002438 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002439 break;
2440
2441 default:
2442 goto out;
2443 }
2444
2445 if (!ops->datbuf)
2446 ret = nand_do_write_oob(mtd, to, ops);
2447 else
2448 ret = nand_do_write_ops(mtd, to, ops);
2449
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002450out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002451 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return ret;
2453}
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002456 * single_erase_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002457 * @mtd: MTD device structure
2458 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002460 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002462static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002464 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002466 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2467 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
2470/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002471 * multi_erase_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002472 * @mtd: MTD device structure
2473 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002475 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002477static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002479 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002481 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2482 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2483 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2484 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2485 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
2488/**
2489 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002490 * @mtd: MTD device structure
2491 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002493 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002495static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
David Woodhousee0c7d762006-05-13 18:07:53 +01002497 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002499
David A. Marlin30f464b2005-01-17 18:35:25 +00002500#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002502 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002503 * @mtd: MTD device structure
2504 * @instr: erase instruction
2505 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002507 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002509int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2510 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Adrian Hunter69423d92008-12-10 13:37:21 +00002512 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002513 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002514 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002515 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002516 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
vimal singh20d8e242009-07-07 15:49:49 +05302518 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2519 __func__, (unsigned long long)instr->addr,
2520 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302522 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002525 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002528 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002531 page = (int)(instr->addr >> chip->page_shift);
2532 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002535 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002538 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 /* Check, if it is write protected */
2541 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302542 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2543 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 instr->state = MTD_ERASE_FAILED;
2545 goto erase_exit;
2546 }
2547
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002548 /*
2549 * If BBT requires refresh, set the BBT page mask to see if the BBT
2550 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2551 * can not be matched. This is also done when the bbt is actually
Brian Norris7854d3f2011-06-23 14:12:08 -07002552 * erased to avoid recursive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002553 */
2554 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2555 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /* Loop through the pages */
2558 len = instr->len;
2559
2560 instr->state = MTD_ERASING;
2561
2562 while (len) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002563 /* Heck if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002564 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2565 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302566 printk(KERN_WARNING "%s: attempt to erase a bad block "
2567 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 instr->state = MTD_ERASE_FAILED;
2569 goto erase_exit;
2570 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002571
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002572 /*
2573 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002574 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002575 */
2576 if (page <= chip->pagebuf && chip->pagebuf <
2577 (page + pages_per_block))
2578 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002580 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002581
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002582 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002584 /*
2585 * See if operation failed and additional status checks are
2586 * available
2587 */
2588 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2589 status = chip->errstat(mtd, chip, FL_ERASING,
2590 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002593 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302594 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2595 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002597 instr->fail_addr =
2598 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 goto erase_exit;
2600 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002601
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002602 /*
2603 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002604 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002605 */
2606 if (bbt_masked_page != 0xffffffff &&
2607 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002608 rewrite_bbt[chipnr] =
2609 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002612 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 page += pages_per_block;
2614
2615 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002616 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002618 chip->select_chip(mtd, -1);
2619 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002620
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002621 /*
2622 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002623 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002624 */
2625 if (bbt_masked_page != 0xffffffff &&
2626 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2627 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2628 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630 }
2631 instr->state = MTD_ERASE_DONE;
2632
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002633erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 /* Deselect and wake up anyone waiting on the device */
2638 nand_release_device(mtd);
2639
David Woodhouse49defc02007-10-06 15:01:59 -04002640 /* Do call back function */
2641 if (!ret)
2642 mtd_erase_callback(instr);
2643
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002644 /*
2645 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002646 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002647 */
2648 if (bbt_masked_page == 0xffffffff || ret)
2649 return ret;
2650
2651 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2652 if (!rewrite_bbt[chipnr])
2653 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002654 /* Update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302655 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2656 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2657 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002658 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002659 }
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /* Return more or less happy */
2662 return ret;
2663}
2664
2665/**
2666 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002667 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002669 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002671static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002673 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
vimal singh20d8e242009-07-07 15:49:49 +05302675 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002678 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002680 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681}
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002684 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002685 * @mtd: MTD device structure
2686 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002688static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
2690 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002691 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002693
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002694 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
2696
2697/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002698 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002699 * @mtd: MTD device structure
2700 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002702static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002704 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 int ret;
2706
Florian Fainellif8ac0412010-09-07 13:23:43 +02002707 ret = nand_block_isbad(mtd, ofs);
2708 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002709 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 if (ret > 0)
2711 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002712 return ret;
2713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002715 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
2717
2718/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002719 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002720 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002721 */
2722static int nand_suspend(struct mtd_info *mtd)
2723{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002724 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002725
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002726 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002727}
2728
2729/**
2730 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002731 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002732 */
2733static void nand_resume(struct mtd_info *mtd)
2734{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002735 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002736
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002737 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002738 nand_release_device(mtd);
2739 else
vimal singh20d8e242009-07-07 15:49:49 +05302740 printk(KERN_ERR "%s called for a chip which is not "
2741 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002742}
2743
Brian Norris8b6e50c2011-05-25 14:59:01 -07002744/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002745static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002746{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002748 if (!chip->chip_delay)
2749 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752 if (chip->cmdfunc == NULL)
2753 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
2755 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002756 if (chip->waitfunc == NULL)
2757 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002759 if (!chip->select_chip)
2760 chip->select_chip = nand_select_chip;
2761 if (!chip->read_byte)
2762 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2763 if (!chip->read_word)
2764 chip->read_word = nand_read_word;
2765 if (!chip->block_bad)
2766 chip->block_bad = nand_block_bad;
2767 if (!chip->block_markbad)
2768 chip->block_markbad = nand_default_block_markbad;
2769 if (!chip->write_buf)
2770 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2771 if (!chip->read_buf)
2772 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2773 if (!chip->verify_buf)
2774 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2775 if (!chip->scan_bbt)
2776 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002777
2778 if (!chip->controller) {
2779 chip->controller = &chip->hwcontrol;
2780 spin_lock_init(&chip->controller->lock);
2781 init_waitqueue_head(&chip->controller->wq);
2782 }
2783
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002784}
2785
Brian Norris8b6e50c2011-05-25 14:59:01 -07002786/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002787static void sanitize_string(uint8_t *s, size_t len)
2788{
2789 ssize_t i;
2790
Brian Norris8b6e50c2011-05-25 14:59:01 -07002791 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002792 s[len - 1] = 0;
2793
Brian Norris8b6e50c2011-05-25 14:59:01 -07002794 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002795 for (i = 0; i < len - 1; i++) {
2796 if (s[i] < ' ' || s[i] > 127)
2797 s[i] = '?';
2798 }
2799
Brian Norris8b6e50c2011-05-25 14:59:01 -07002800 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002801 strim(s);
2802}
2803
2804static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2805{
2806 int i;
2807 while (len--) {
2808 crc ^= *p++ << 8;
2809 for (i = 0; i < 8; i++)
2810 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2811 }
2812
2813 return crc;
2814}
2815
2816/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002817 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002818 */
2819static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2820 int busw)
2821{
2822 struct nand_onfi_params *p = &chip->onfi_params;
2823 int i;
2824 int val;
2825
Brian Norris7854d3f2011-06-23 14:12:08 -07002826 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002827 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2828 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2829 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2830 return 0;
2831
2832 printk(KERN_INFO "ONFI flash detected\n");
2833 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2834 for (i = 0; i < 3; i++) {
2835 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2836 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2837 le16_to_cpu(p->crc)) {
2838 printk(KERN_INFO "ONFI param page %d valid\n", i);
2839 break;
2840 }
2841 }
2842
2843 if (i == 3)
2844 return 0;
2845
Brian Norris8b6e50c2011-05-25 14:59:01 -07002846 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002847 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002848 if (val & (1 << 5))
2849 chip->onfi_version = 23;
2850 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002851 chip->onfi_version = 22;
2852 else if (val & (1 << 3))
2853 chip->onfi_version = 21;
2854 else if (val & (1 << 2))
2855 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002856 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002857 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002858 else
2859 chip->onfi_version = 0;
2860
2861 if (!chip->onfi_version) {
2862 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2863 __func__, val);
2864 return 0;
2865 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002866
2867 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2868 sanitize_string(p->model, sizeof(p->model));
2869 if (!mtd->name)
2870 mtd->name = p->model;
2871 mtd->writesize = le32_to_cpu(p->byte_per_page);
2872 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2873 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002874 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002875 busw = 0;
2876 if (le16_to_cpu(p->features) & 1)
2877 busw = NAND_BUSWIDTH_16;
2878
2879 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2880 chip->options |= (NAND_NO_READRDY |
2881 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2882
2883 return 1;
2884}
2885
2886/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002887 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002888 */
2889static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002890 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002891 int busw,
2892 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002893 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002894{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002895 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002896 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002897 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002900 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Karl Beldanef89a882008-09-15 14:37:29 +02002902 /*
2903 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002904 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002905 */
2906 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002909 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002912 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002913 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Brian Norris8b6e50c2011-05-25 14:59:01 -07002915 /*
2916 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002917 * interface concerns can cause random data which looks like a
2918 * possibly credible NAND flash to appear. If the two results do
2919 * not match, ignore the device completely.
2920 */
2921
2922 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2923
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002924 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002925 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002926
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002927 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ben Dooksed8165c2008-04-14 14:58:58 +01002928 printk(KERN_INFO "%s: second ID read did not match "
2929 "%02x,%02x against %02x,%02x\n", __func__,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002930 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002931 return ERR_PTR(-ENODEV);
2932 }
2933
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002934 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002935 type = nand_flash_ids;
2936
2937 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002938 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002939 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002940
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002941 chip->onfi_version = 0;
2942 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002943 /* Check is chip is ONFI compliant */
2944 ret = nand_flash_detect_onfi(mtd, chip, busw);
2945 if (ret)
2946 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002947 }
2948
2949 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2950
2951 /* Read entire ID string */
2952
2953 for (i = 0; i < 8; i++)
2954 id_data[i] = chip->read_byte(mtd);
2955
David Woodhouse5e81e882010-02-26 18:32:56 +00002956 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002957 return ERR_PTR(-ENODEV);
2958
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002959 if (!mtd->name)
2960 mtd->name = type->name;
2961
Adrian Hunter69423d92008-12-10 13:37:21 +00002962 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002963
Huang Shijie12a40a52010-09-27 10:43:53 +08002964 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002965 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002966 busw = chip->init_size(mtd, chip, id_data);
2967 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002968 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002969 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002970 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002971 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002972 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002973
Kevin Cernekee426c4572010-05-04 20:58:03 -07002974 /*
2975 * Field definitions are in the following datasheets:
2976 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002977 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002978 *
2979 * Check for wraparound + Samsung ID + nonzero 6th byte
2980 * to decide what to do.
2981 */
2982 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2983 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002984 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002985 id_data[5] != 0x00) {
2986 /* Calc pagesize */
2987 mtd->writesize = 2048 << (extid & 0x03);
2988 extid >>= 2;
2989 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07002990 switch (extid & 0x03) {
2991 case 1:
2992 mtd->oobsize = 128;
2993 break;
2994 case 2:
2995 mtd->oobsize = 218;
2996 break;
2997 case 3:
2998 mtd->oobsize = 400;
2999 break;
3000 default:
3001 mtd->oobsize = 436;
3002 break;
3003 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003004 extid >>= 2;
3005 /* Calc blocksize */
3006 mtd->erasesize = (128 * 1024) <<
3007 (((extid >> 1) & 0x04) | (extid & 0x03));
3008 busw = 0;
3009 } else {
3010 /* Calc pagesize */
3011 mtd->writesize = 1024 << (extid & 0x03);
3012 extid >>= 2;
3013 /* Calc oobsize */
3014 mtd->oobsize = (8 << (extid & 0x01)) *
3015 (mtd->writesize >> 9);
3016 extid >>= 2;
3017 /* Calc blocksize. Blocksize is multiples of 64KiB */
3018 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3019 extid >>= 2;
3020 /* Get buswidth information */
3021 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3022 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003023 } else {
3024 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003025 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003026 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003027 mtd->erasesize = type->erasesize;
3028 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003029 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003030 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003031
3032 /*
3033 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3034 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003035 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003036 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3037 */
3038 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3039 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3040 id_data[7] == 0x00 && mtd->writesize == 512) {
3041 mtd->erasesize = 128 * 1024;
3042 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3043 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003044 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003045 /* Get chip options, preserve non chip based options */
3046 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3047 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3048
Brian Norris8b6e50c2011-05-25 14:59:01 -07003049 /*
3050 * Check if chip is not a Samsung device. Do not clear the
3051 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003052 */
3053 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3054 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3055ident_done:
3056
3057 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003058 * Set chip as a default. Board drivers can override it, if necessary.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003059 */
3060 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003061
3062 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003063 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003064 if (nand_manuf_ids[maf_idx].id == *maf_id)
3065 break;
3066 }
3067
3068 /*
3069 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003070 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003071 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003072 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003073 printk(KERN_INFO "NAND device: Manufacturer ID:"
3074 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003075 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003076 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003077 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003078 busw ? 16 : 8);
3079 return ERR_PTR(-EINVAL);
3080 }
3081
3082 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003083 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003084 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003085 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003086
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003087 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003088 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003089 if (chip->chipsize & 0xffffffff)
3090 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003091 else {
3092 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3093 chip->chip_shift += 32 - 1;
3094 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003095
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003096 chip->badblockbits = 8;
3097
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003098 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003099 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003100 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003101 else
3102 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003103
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003104 /*
3105 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003106 * on Samsung and Hynix MLC devices; stored in first two pages
3107 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003108 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3109 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003110 */
3111 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3112 (*maf_id == NAND_MFR_SAMSUNG ||
3113 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003114 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003115 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3116 (*maf_id == NAND_MFR_SAMSUNG ||
3117 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003118 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003119 *maf_id == NAND_MFR_AMD)) ||
3120 (mtd->writesize == 2048 &&
3121 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003122 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003123
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003124 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003125 if (chip->options & NAND_4PAGE_ARRAY)
3126 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003127 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003128 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003129
Brian Norris8b6e50c2011-05-25 14:59:01 -07003130 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003131 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3132 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003133
3134 printk(KERN_INFO "NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003135 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3136 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003137 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003138
3139 return type;
3140}
3141
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003142/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003143 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003144 * @mtd: MTD device structure
3145 * @maxchips: number of chips to scan for
3146 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003147 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003148 * This is the first phase of the normal nand_scan() function. It reads the
3149 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003150 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003151 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003152 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003153int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3154 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003155{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003156 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003157 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003158 struct nand_flash_dev *type;
3159
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003160 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003161 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003162 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003163 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003164
3165 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003166 type = nand_get_flash_type(mtd, chip, busw,
3167 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003168
3169 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003170 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3171 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003172 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003173 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
3175
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003176 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003177 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003178 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003179 /* See comment in nand_get_flash_type for reset */
3180 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003182 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003184 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003185 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 break;
3187 }
3188 if (i > 1)
3189 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003192 chip->numchips = i;
3193 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
David Woodhouse3b85c322006-09-25 17:06:53 +01003195 return 0;
3196}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003197EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003198
3199
3200/**
3201 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003202 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003203 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003204 * This is the second phase of the normal nand_scan() function. It fills out
3205 * all the uninitialized function pointers with the defaults and scans for a
3206 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003207 */
3208int nand_scan_tail(struct mtd_info *mtd)
3209{
3210 int i;
3211 struct nand_chip *chip = mtd->priv;
3212
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003213 if (!(chip->options & NAND_OWN_BUFFERS))
3214 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3215 if (!chip->buffers)
3216 return -ENOMEM;
3217
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003218 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003219 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003220
3221 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003222 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003223 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003224 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003225 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003227 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 break;
3229 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003230 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 break;
3232 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003233 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003235 case 128:
3236 chip->ecc.layout = &nand_oob_128;
3237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003239 printk(KERN_WARNING "No oob scheme defined for "
3240 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 BUG();
3242 }
3243 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003244
David Woodhouse956e9442006-09-25 17:12:39 +01003245 if (!chip->write_page)
3246 chip->write_page = nand_write_page;
3247
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003248 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003249 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003250 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003251 */
David Woodhouse956e9442006-09-25 17:12:39 +01003252
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003253 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003254 case NAND_ECC_HW_OOB_FIRST:
3255 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3256 if (!chip->ecc.calculate || !chip->ecc.correct ||
3257 !chip->ecc.hwctl) {
3258 printk(KERN_WARNING "No ECC functions supplied; "
3259 "Hardware ECC not possible\n");
3260 BUG();
3261 }
3262 if (!chip->ecc.read_page)
3263 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3264
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003265 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003266 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003267 if (!chip->ecc.read_page)
3268 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003269 if (!chip->ecc.write_page)
3270 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003271 if (!chip->ecc.read_page_raw)
3272 chip->ecc.read_page_raw = nand_read_page_raw;
3273 if (!chip->ecc.write_page_raw)
3274 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003275 if (!chip->ecc.read_oob)
3276 chip->ecc.read_oob = nand_read_oob_std;
3277 if (!chip->ecc.write_oob)
3278 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003279
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003280 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003281 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3282 !chip->ecc.hwctl) &&
3283 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003284 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003285 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003286 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003287 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003288 "Hardware ECC not possible\n");
3289 BUG();
3290 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003291 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003292 if (!chip->ecc.read_page)
3293 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003294 if (!chip->ecc.write_page)
3295 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003296 if (!chip->ecc.read_page_raw)
3297 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3298 if (!chip->ecc.write_page_raw)
3299 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003300 if (!chip->ecc.read_oob)
3301 chip->ecc.read_oob = nand_read_oob_syndrome;
3302 if (!chip->ecc.write_oob)
3303 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003304
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003305 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003306 break;
3307 printk(KERN_WARNING "%d byte HW ECC not possible on "
3308 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003309 chip->ecc.size, mtd->writesize);
3310 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003312 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003313 chip->ecc.calculate = nand_calculate_ecc;
3314 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003315 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003316 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003317 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003318 chip->ecc.read_page_raw = nand_read_page_raw;
3319 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003320 chip->ecc.read_oob = nand_read_oob_std;
3321 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003322 if (!chip->ecc.size)
3323 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003324 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003326
Ivan Djelic193bd402011-03-11 11:05:33 +01003327 case NAND_ECC_SOFT_BCH:
3328 if (!mtd_nand_has_bch()) {
3329 printk(KERN_WARNING "CONFIG_MTD_ECC_BCH not enabled\n");
3330 BUG();
3331 }
3332 chip->ecc.calculate = nand_bch_calculate_ecc;
3333 chip->ecc.correct = nand_bch_correct_data;
3334 chip->ecc.read_page = nand_read_page_swecc;
3335 chip->ecc.read_subpage = nand_read_subpage;
3336 chip->ecc.write_page = nand_write_page_swecc;
3337 chip->ecc.read_page_raw = nand_read_page_raw;
3338 chip->ecc.write_page_raw = nand_write_page_raw;
3339 chip->ecc.read_oob = nand_read_oob_std;
3340 chip->ecc.write_oob = nand_write_oob_std;
3341 /*
3342 * Board driver should supply ecc.size and ecc.bytes values to
3343 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003344 * for details. Otherwise, default to 4 bits for large page
3345 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003346 */
3347 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3348 chip->ecc.size = 512;
3349 chip->ecc.bytes = 7;
3350 }
3351 chip->ecc.priv = nand_bch_init(mtd,
3352 chip->ecc.size,
3353 chip->ecc.bytes,
3354 &chip->ecc.layout);
3355 if (!chip->ecc.priv) {
3356 printk(KERN_WARNING "BCH ECC initialization failed!\n");
3357 BUG();
3358 }
3359 break;
3360
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003361 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003362 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3363 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003364 chip->ecc.read_page = nand_read_page_raw;
3365 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003366 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003367 chip->ecc.read_page_raw = nand_read_page_raw;
3368 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003369 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003370 chip->ecc.size = mtd->writesize;
3371 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003375 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003376 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003377 BUG();
3378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003380 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003381 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003382 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003383 */
3384 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003385 for (i = 0; chip->ecc.layout->oobfree[i].length
3386 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003387 chip->ecc.layout->oobavail +=
3388 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003389 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003390
3391 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003392 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003393 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003394 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003395 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003396 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Brian Norris7854d3f2011-06-23 14:12:08 -07003397 printk(KERN_WARNING "Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003398 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003400 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003401
Brian Norris8b6e50c2011-05-25 14:59:01 -07003402 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003403 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3404 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003405 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003406 case 2:
3407 mtd->subpage_sft = 1;
3408 break;
3409 case 4:
3410 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003411 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003412 mtd->subpage_sft = 2;
3413 break;
3414 }
3415 }
3416 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3417
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003418 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003419 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
3421 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003422 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
3424 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003425 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
3427 /* Fill in remaining MTD driver data */
3428 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003429 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3430 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 mtd->erase = nand_erase;
3432 mtd->point = NULL;
3433 mtd->unpoint = NULL;
3434 mtd->read = nand_read;
3435 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003436 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 mtd->read_oob = nand_read_oob;
3438 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 mtd->sync = nand_sync;
3440 mtd->lock = NULL;
3441 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003442 mtd->suspend = nand_suspend;
3443 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 mtd->block_isbad = nand_block_isbad;
3445 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003446 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003448 /* propagate ecc.layout to mtd_info */
3449 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003451 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003452 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003453 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
3455 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003456 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003458EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Brian Norris8b6e50c2011-05-25 14:59:01 -07003460/*
3461 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003462 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003463 * to call us from in-kernel code if the core NAND support is modular.
3464 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003465#ifdef MODULE
3466#define caller_is_module() (1)
3467#else
3468#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003469 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003470#endif
3471
3472/**
3473 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003474 * @mtd: MTD device structure
3475 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003476 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003477 * This fills out all the uninitialized function pointers with the defaults.
3478 * The flash ID is read and the mtd/chip structures are filled with the
3479 * appropriate values. The mtd->owner field must be set to the module of the
3480 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003481 */
3482int nand_scan(struct mtd_info *mtd, int maxchips)
3483{
3484 int ret;
3485
3486 /* Many callers got this wrong, so check for it for a while... */
3487 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303488 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3489 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003490 BUG();
3491 }
3492
David Woodhouse5e81e882010-02-26 18:32:56 +00003493 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003494 if (!ret)
3495 ret = nand_scan_tail(mtd);
3496 return ret;
3497}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003498EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003501 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003502 * @mtd: MTD device structure
3503 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003504void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003506 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Ivan Djelic193bd402011-03-11 11:05:33 +01003508 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3509 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3510
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003511 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Jesper Juhlfa671642005-11-07 01:01:27 -08003513 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003514 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003515 if (!(chip->options & NAND_OWN_BUFFERS))
3516 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003517
3518 /* Free bad block descriptor memory */
3519 if (chip->badblock_pattern && chip->badblock_pattern->options
3520 & NAND_BBT_DYNAMICSTRUCT)
3521 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522}
David Woodhousee0c7d762006-05-13 18:07:53 +01003523EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003524
3525static int __init nand_base_init(void)
3526{
3527 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3528 return 0;
3529}
3530
3531static void __exit nand_base_exit(void)
3532{
3533 led_trigger_unregister_simple(nand_led_trigger);
3534}
3535
3536module_init(nand_base_init);
3537module_exit(nand_base_exit);
3538
David Woodhousee0c7d762006-05-13 18:07:53 +01003539MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003540MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3541MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003542MODULE_DESCRIPTION("Generic NAND flash driver code");