blob: 408e1d0abfd1dbe9cdaf8c22dc27bbbfb7b9d829 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
7 * Basic support for AG-AND chips is provided.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +020010 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020015 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 * David Woodhouse for adding multichip support
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020021 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Enable cached programming for 2k page size chips
23 * Check, if mtd->ecctype should be set to MTD_ECC_HW
24 * if we have HW ecc support.
25 * The AG-AND chips have nice features for speed improvement,
26 * which are not supported yet. Read / program 4 pages in one go.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030027 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License version 2 as
31 * published by the Free Software Foundation.
32 *
33 */
34
David Woodhouse552d9202006-05-14 01:20:46 +010035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
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 Norris8b6e50c2011-05-25 14:59:01 -0700162 * Default read function for 8bit buswith.
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 Norris8b6e50c2011-05-25 14:59:01 -0700172 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700174 * Default read function for 16bit buswith with endianess conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200176static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200178 struct nand_chip *chip = mtd->priv;
179 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700184 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700186 * Default read function for 16bit buswith without endianess conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
188static u16 nand_read_word(struct mtd_info *mtd)
189{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200190 struct nand_chip *chip = mtd->priv;
191 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700196 * @mtd: MTD device structure
197 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *
199 * Default select function for 1 chip devices.
200 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200201static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200203 struct nand_chip *chip = mtd->priv;
204
205 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200207 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
209 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211
212 default:
213 BUG();
214 }
215}
216
217/**
218 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700219 * @mtd: MTD device structure
220 * @buf: data buffer
221 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700223 * Default write function for 8bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200225static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200228 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
David Woodhousee0c7d762006-05-13 18:07:53 +0100230 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200231 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000235 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700236 * @mtd: MTD device structure
237 * @buf: buffer to store date
238 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700240 * Default read function for 8bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200242static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200245 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
David Woodhousee0c7d762006-05-13 18:07:53 +0100247 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200248 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000252 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700253 * @mtd: MTD device structure
254 * @buf: buffer containing the data to compare
255 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700257 * Default verify function for 8bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200259static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200262 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
David Woodhousee0c7d762006-05-13 18:07:53 +0100264 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200265 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268}
269
270/**
271 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700272 * @mtd: MTD device structure
273 * @buf: data buffer
274 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700276 * Default write function for 16bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200278static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200281 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 u16 *p = (u16 *) buf;
283 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000284
David Woodhousee0c7d762006-05-13 18:07:53 +0100285 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200286 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000291 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700292 * @mtd: MTD device structure
293 * @buf: buffer to store date
294 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700296 * Default read function for 16bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200298static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200301 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 u16 *p = (u16 *) buf;
303 len >>= 1;
304
David Woodhousee0c7d762006-05-13 18:07:53 +0100305 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200306 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000310 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700311 * @mtd: MTD device structure
312 * @buf: buffer containing the data to compare
313 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700315 * Default verify function for 16bit buswith.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200317static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200320 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 u16 *p = (u16 *) buf;
322 len >>= 1;
323
David Woodhousee0c7d762006-05-13 18:07:53 +0100324 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200325 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EFAULT;
327
328 return 0;
329}
330
331/**
332 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700333 * @mtd: MTD device structure
334 * @ofs: offset from device start
335 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000337 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
339static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
340{
341 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200342 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 u16 bad;
344
Brian Norris5fb15492011-05-31 16:31:21 -0700345 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700346 ofs += mtd->erasesize - mtd->writesize;
347
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100348 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200351 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200353 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200356 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200359 if (chip->options & NAND_BUSWIDTH_16) {
360 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100361 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200362 bad = cpu_to_le16(chip->read_word(mtd));
363 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000364 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200365 else
366 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100368 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200369 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000371
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200372 if (likely(chip->badblockbits == 8))
373 res = bad != 0xFF;
374 else
375 res = hweight8(bad) < chip->badblockbits;
376
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200377 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return res;
381}
382
383/**
384 * nand_default_block_markbad - [DEFAULT] mark a block bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700385 * @mtd: MTD device structure
386 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700388 * This is the default implementation, which can be overridden by a hardware
389 * specific driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390*/
391static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
392{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200393 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200394 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700395 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000396
Brian Norris5fb15492011-05-31 16:31:21 -0700397 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700398 ofs += mtd->erasesize - mtd->writesize;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400401 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200402 if (chip->bbt)
403 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Brian Norris8b6e50c2011-05-25 14:59:01 -0700405 /* Do we have a flash based bad block table? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700406 if (chip->bbt_options & NAND_BBT_USE_FLASH)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200407 ret = nand_update_bbt(mtd, ofs);
408 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300409 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000410
Brian Norrisa0dc5522011-05-31 16:31:20 -0700411 /*
412 * Write to first two pages if necessary. If we write to more
413 * than one location, the first error encountered quits the
414 * procedure. We write two bytes per location, so we dont have
415 * to mess with 16 bit access.
Brian Norris02ed70b2010-07-21 16:53:47 -0700416 */
417 do {
418 chip->ops.len = chip->ops.ooblen = 2;
419 chip->ops.datbuf = NULL;
420 chip->ops.oobbuf = buf;
421 chip->ops.ooboffs = chip->badblockpos & ~0x01;
422
423 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
424
Brian Norris02ed70b2010-07-21 16:53:47 -0700425 i++;
426 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700427 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700428 i < 2);
429
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300430 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200431 }
432 if (!ret)
433 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300434
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200435 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000438/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700440 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700442 * Check, if the device is write protected. The function expects, that the
443 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100445static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200447 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200448
Brian Norris8b6e50c2011-05-25 14:59:01 -0700449 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200450 if (chip->options & NAND_BROKEN_XD)
451 return 0;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200454 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
455 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458/**
459 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700460 * @mtd: MTD device structure
461 * @ofs: offset from device start
462 * @getchip: 0, if the chip is already selected
463 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *
465 * Check, if the block is bad. Either by reading the bad block table or
466 * calling of the scan function.
467 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200468static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
469 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200471 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000472
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 if (!chip->bbt)
474 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100477 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200480/**
481 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700482 * @mtd: MTD device structure
483 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200484 *
485 * Helper function for nand_wait_ready used when needing to wait in interrupt
486 * context.
487 */
488static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
489{
490 struct nand_chip *chip = mtd->priv;
491 int i;
492
493 /* Wait for the device to get ready */
494 for (i = 0; i < timeo; i++) {
495 if (chip->dev_ready(mtd))
496 break;
497 touch_softlockup_watchdog();
498 mdelay(1);
499 }
500}
501
Brian Norris8b6e50c2011-05-25 14:59:01 -0700502/* Wait for the ready pin, after a command. The timeout is catched later */
David Woodhouse4b648b02006-09-25 17:05:24 +0100503void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000504{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200505 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100506 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000507
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200508 /* 400ms timeout */
509 if (in_interrupt() || oops_in_progress)
510 return panic_nand_wait_ready(mtd, 400);
511
Richard Purdie8fe833c2006-03-31 02:31:14 -0800512 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700513 /* Wait until command is processed or timeout occures */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000514 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200515 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800516 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700517 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000518 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800519 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000520}
David Woodhouse4b648b02006-09-25 17:05:24 +0100521EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/**
524 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700525 * @mtd: MTD device structure
526 * @command: the command to be sent
527 * @column: the column address for this command, -1 if none
528 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700530 * Send command to NAND device. This function is used for small page devices
531 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200533static void nand_command(struct mtd_info *mtd, unsigned int command,
534 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200536 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200537 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Brian Norris8b6e50c2011-05-25 14:59:01 -0700539 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (command == NAND_CMD_SEQIN) {
541 int readcmd;
542
Joern Engel28318772006-05-22 23:18:05 +0200543 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200545 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 readcmd = NAND_CMD_READOOB;
547 } else if (column < 256) {
548 /* First 256 bytes --> READ0 */
549 readcmd = NAND_CMD_READ0;
550 } else {
551 column -= 256;
552 readcmd = NAND_CMD_READ1;
553 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200554 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200555 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200557 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Brian Norris8b6e50c2011-05-25 14:59:01 -0700559 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200560 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
561 /* Serially input address */
562 if (column != -1) {
563 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200564 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200565 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200567 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200569 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200570 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200571 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200572 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200573 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200574 if (chip->chipsize > (32 << 20))
575 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200576 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200577 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000578
579 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700580 * Program and erase have their own busy handlers status and sequential
581 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100582 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 case NAND_CMD_PAGEPROG:
586 case NAND_CMD_ERASE1:
587 case NAND_CMD_ERASE2:
588 case NAND_CMD_SEQIN:
589 case NAND_CMD_STATUS:
590 return;
591
592 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200593 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200595 udelay(chip->chip_delay);
596 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200597 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200598 chip->cmd_ctrl(mtd,
599 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200600 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
601 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return;
603
David Woodhousee0c7d762006-05-13 18:07:53 +0100604 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000606 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * If we don't have access to the busy pin, we apply the given
608 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100609 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200610 if (!chip->dev_ready) {
611 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700615 /*
616 * Apply this short delay always to ensure that we do wait tWB in
617 * any case on any machine.
618 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100619 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000620
621 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/**
625 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700626 * @mtd: MTD device structure
627 * @command: the command to be sent
628 * @column: the column address for this command, -1 if none
629 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200631 * Send command to NAND device. This is the version for the new large page
632 * devices We dont have the separate regions as we have in the small page
633 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200635static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
636 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200638 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 /* Emulate NAND_CMD_READOOB */
641 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200642 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 command = NAND_CMD_READ0;
644 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000645
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200646 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200647 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200651 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Serially input address */
654 if (column != -1) {
655 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200656 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200658 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200659 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200663 chip->cmd_ctrl(mtd, page_addr, ctrl);
664 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200665 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200667 if (chip->chipsize > (128 << 20))
668 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200669 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200672 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000673
674 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700675 * Program and erase have their own busy handlers status, sequential
676 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 case NAND_CMD_CACHEDPROG:
681 case NAND_CMD_PAGEPROG:
682 case NAND_CMD_ERASE1:
683 case NAND_CMD_ERASE2:
684 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200685 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000687 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return;
689
David A. Marlin30f464b2005-01-17 18:35:25 +0000690 case NAND_CMD_STATUS_ERROR:
691 case NAND_CMD_STATUS_ERROR0:
692 case NAND_CMD_STATUS_ERROR1:
693 case NAND_CMD_STATUS_ERROR2:
694 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700695 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200696 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000697 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200700 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200703 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
704 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
705 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
706 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200707 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
708 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return;
710
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200711 case NAND_CMD_RNDOUT:
712 /* No ready / busy check necessary */
713 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
714 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
715 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
716 NAND_NCE | NAND_CTRL_CHANGE);
717 return;
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200720 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
721 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
722 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
723 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000724
David Woodhousee0c7d762006-05-13 18:07:53 +0100725 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000727 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700729 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100730 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200731 if (!chip->dev_ready) {
732 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000736
Brian Norris8b6e50c2011-05-25 14:59:01 -0700737 /*
738 * Apply this short delay always to ensure that we do wait tWB in
739 * any case on any machine.
740 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100741 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000742
743 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200747 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700748 * @chip: the nand chip descriptor
749 * @mtd: MTD device structure
750 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200751 *
752 * Used when in panic, no locks are taken.
753 */
754static void panic_nand_get_device(struct nand_chip *chip,
755 struct mtd_info *mtd, int new_state)
756{
757 /* Hardware controller shared among independend devices */
758 chip->controller->active = chip;
759 chip->state = new_state;
760}
761
762/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700764 * @chip: the nand chip descriptor
765 * @mtd: MTD device structure
766 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 *
768 * Get the device and lock it for exclusive access
769 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200770static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200771nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200773 spinlock_t *lock = &chip->controller->lock;
774 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100775 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200776retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100777 spin_lock(lock);
778
vimal singhb8b3ee92009-07-09 20:41:22 +0530779 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200780 if (!chip->controller->active)
781 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200782
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200783 if (chip->controller->active == chip && chip->state == FL_READY) {
784 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100785 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100786 return 0;
787 }
788 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800789 if (chip->controller->active->state == FL_PM_SUSPENDED) {
790 chip->state = FL_PM_SUSPENDED;
791 spin_unlock(lock);
792 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800793 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100794 }
795 set_current_state(TASK_UNINTERRUPTIBLE);
796 add_wait_queue(wq, &wait);
797 spin_unlock(lock);
798 schedule();
799 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 goto retry;
801}
802
803/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700804 * panic_nand_wait - [GENERIC] wait until the command is done
805 * @mtd: MTD device structure
806 * @chip: NAND chip structure
807 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200808 *
809 * Wait for command done. This is a helper function for nand_wait used when
810 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400811 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200812 */
813static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
814 unsigned long timeo)
815{
816 int i;
817 for (i = 0; i < timeo; i++) {
818 if (chip->dev_ready) {
819 if (chip->dev_ready(mtd))
820 break;
821 } else {
822 if (chip->read_byte(mtd) & NAND_STATUS_READY)
823 break;
824 }
825 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200826 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200827}
828
829/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700830 * nand_wait - [DEFAULT] wait until the command is done
831 * @mtd: MTD device structure
832 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700834 * Wait for command done. This applies to erase and program only. Erase can
835 * take up to 400ms and program up to 20ms according to general NAND and
836 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700837 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200838static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840
David Woodhousee0c7d762006-05-13 18:07:53 +0100841 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200842 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100845 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Richard Purdie8fe833c2006-03-31 02:31:14 -0800849 led_trigger_event(nand_led_trigger, LED_FULL);
850
Brian Norris8b6e50c2011-05-25 14:59:01 -0700851 /*
852 * Apply this short delay always to ensure that we do wait tWB in any
853 * case on any machine.
854 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100855 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200857 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
858 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000859 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200860 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200862 if (in_interrupt() || oops_in_progress)
863 panic_nand_wait(mtd, chip, timeo);
864 else {
865 while (time_before(jiffies, timeo)) {
866 if (chip->dev_ready) {
867 if (chip->dev_ready(mtd))
868 break;
869 } else {
870 if (chip->read_byte(mtd) & NAND_STATUS_READY)
871 break;
872 }
873 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800876 led_trigger_event(nand_led_trigger, LED_OFF);
877
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200878 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return status;
880}
881
882/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700883 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700884 * @mtd: mtd info
885 * @ofs: offset to start unlock from
886 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700887 * @invert: when = 0, unlock the range of blocks within the lower and
888 * upper boundary address
889 * when = 1, unlock the range of blocks outside the boundaries
890 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530891 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700892 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530893 */
894static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
895 uint64_t len, int invert)
896{
897 int ret = 0;
898 int status, page;
899 struct nand_chip *chip = mtd->priv;
900
901 /* Submit address of first page to unlock */
902 page = ofs >> chip->page_shift;
903 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
904
905 /* Submit address of last page to unlock */
906 page = (ofs + len) >> chip->page_shift;
907 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
908 (page | invert) & chip->pagemask);
909
910 /* Call wait ready function */
911 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530912 /* See if device thinks it succeeded */
913 if (status & 0x01) {
914 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
915 __func__, status);
916 ret = -EIO;
917 }
918
919 return ret;
920}
921
922/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700923 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700924 * @mtd: mtd info
925 * @ofs: offset to start unlock from
926 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530927 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700928 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530929 */
930int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
931{
932 int ret = 0;
933 int chipnr;
934 struct nand_chip *chip = mtd->priv;
935
936 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
937 __func__, (unsigned long long)ofs, len);
938
939 if (check_offs_len(mtd, ofs, len))
940 ret = -EINVAL;
941
942 /* Align to last block address if size addresses end of the device */
943 if (ofs + len == mtd->size)
944 len -= mtd->erasesize;
945
946 nand_get_device(chip, mtd, FL_UNLOCKING);
947
948 /* Shift to get chip number */
949 chipnr = ofs >> chip->chip_shift;
950
951 chip->select_chip(mtd, chipnr);
952
953 /* Check, if it is write protected */
954 if (nand_check_wp(mtd)) {
955 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
956 __func__);
957 ret = -EIO;
958 goto out;
959 }
960
961 ret = __nand_unlock(mtd, ofs, len, 0);
962
963out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530964 nand_release_device(mtd);
965
966 return ret;
967}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200968EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530969
970/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700971 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700972 * @mtd: mtd info
973 * @ofs: offset to start unlock from
974 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530975 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700976 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
977 * have this feature, but it allows only to lock all blocks, not for specified
978 * range for block. Implementing 'lock' feature by making use of 'unlock', for
979 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530980 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700981 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530982 */
983int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
984{
985 int ret = 0;
986 int chipnr, status, page;
987 struct nand_chip *chip = mtd->priv;
988
989 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
990 __func__, (unsigned long long)ofs, len);
991
992 if (check_offs_len(mtd, ofs, len))
993 ret = -EINVAL;
994
995 nand_get_device(chip, mtd, FL_LOCKING);
996
997 /* Shift to get chip number */
998 chipnr = ofs >> chip->chip_shift;
999
1000 chip->select_chip(mtd, chipnr);
1001
1002 /* Check, if it is write protected */
1003 if (nand_check_wp(mtd)) {
1004 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1005 __func__);
1006 status = MTD_ERASE_FAILED;
1007 ret = -EIO;
1008 goto out;
1009 }
1010
1011 /* Submit address of first page to lock */
1012 page = ofs >> chip->page_shift;
1013 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1014
1015 /* Call wait ready function */
1016 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301017 /* See if device thinks it succeeded */
1018 if (status & 0x01) {
1019 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1020 __func__, status);
1021 ret = -EIO;
1022 goto out;
1023 }
1024
1025 ret = __nand_unlock(mtd, ofs, len, 0x1);
1026
1027out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301028 nand_release_device(mtd);
1029
1030 return ret;
1031}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001032EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301033
1034/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001035 * nand_read_page_raw - [Intern] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001036 * @mtd: mtd info structure
1037 * @chip: nand chip info structure
1038 * @buf: buffer to store read data
1039 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001040 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001041 * Not for syndrome calculating ecc controllers, which use a special oob
1042 * layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001043 */
1044static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001045 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001046{
1047 chip->read_buf(mtd, buf, mtd->writesize);
1048 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1049 return 0;
1050}
1051
1052/**
David Brownell52ff49d2009-03-04 12:01:36 -08001053 * nand_read_page_raw_syndrome - [Intern] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001054 * @mtd: mtd info structure
1055 * @chip: nand chip info structure
1056 * @buf: buffer to store read data
1057 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001058 *
1059 * We need a special oob layout and handling even when OOB isn't used.
1060 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001061static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1062 struct nand_chip *chip,
1063 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001064{
1065 int eccsize = chip->ecc.size;
1066 int eccbytes = chip->ecc.bytes;
1067 uint8_t *oob = chip->oob_poi;
1068 int steps, size;
1069
1070 for (steps = chip->ecc.steps; steps > 0; steps--) {
1071 chip->read_buf(mtd, buf, eccsize);
1072 buf += eccsize;
1073
1074 if (chip->ecc.prepad) {
1075 chip->read_buf(mtd, oob, chip->ecc.prepad);
1076 oob += chip->ecc.prepad;
1077 }
1078
1079 chip->read_buf(mtd, oob, eccbytes);
1080 oob += eccbytes;
1081
1082 if (chip->ecc.postpad) {
1083 chip->read_buf(mtd, oob, chip->ecc.postpad);
1084 oob += chip->ecc.postpad;
1085 }
1086 }
1087
1088 size = mtd->oobsize - (oob - chip->oob_poi);
1089 if (size)
1090 chip->read_buf(mtd, oob, size);
1091
1092 return 0;
1093}
1094
1095/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001096 * nand_read_page_swecc - [REPLACABLE] software ecc based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001097 * @mtd: mtd info structure
1098 * @chip: nand chip info structure
1099 * @buf: buffer to store read data
1100 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001101 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001102static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001103 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001105 int i, eccsize = chip->ecc.size;
1106 int eccbytes = chip->ecc.bytes;
1107 int eccsteps = chip->ecc.steps;
1108 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001109 uint8_t *ecc_calc = chip->buffers->ecccalc;
1110 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001111 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001112
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001113 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001114
1115 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1116 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1117
1118 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001119 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001120
1121 eccsteps = chip->ecc.steps;
1122 p = buf;
1123
1124 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1125 int stat;
1126
1127 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001128 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001129 mtd->ecc_stats.failed++;
1130 else
1131 mtd->ecc_stats.corrected += stat;
1132 }
1133 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/**
Alexey Korolev3d459552008-05-15 17:23:18 +01001137 * nand_read_subpage - [REPLACABLE] software ecc based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001138 * @mtd: mtd info structure
1139 * @chip: nand chip info structure
1140 * @data_offs: offset of requested data within the page
1141 * @readlen: data length
1142 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001143 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001144static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1145 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001146{
1147 int start_step, end_step, num_steps;
1148 uint32_t *eccpos = chip->ecc.layout->eccpos;
1149 uint8_t *p;
1150 int data_col_addr, i, gaps = 0;
1151 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1152 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001153 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001154
Brian Norris8b6e50c2011-05-25 14:59:01 -07001155 /* Column address wihin the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001156 start_step = data_offs / chip->ecc.size;
1157 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1158 num_steps = end_step - start_step + 1;
1159
Brian Norris8b6e50c2011-05-25 14:59:01 -07001160 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001161 datafrag_len = num_steps * chip->ecc.size;
1162 eccfrag_len = num_steps * chip->ecc.bytes;
1163
1164 data_col_addr = start_step * chip->ecc.size;
1165 /* If we read not a page aligned data */
1166 if (data_col_addr != 0)
1167 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1168
1169 p = bufpoi + data_col_addr;
1170 chip->read_buf(mtd, p, datafrag_len);
1171
Brian Norris8b6e50c2011-05-25 14:59:01 -07001172 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001173 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1174 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1175
Brian Norris8b6e50c2011-05-25 14:59:01 -07001176 /*
1177 * The performance is faster if we position offsets according to
1178 * ecc.pos. Let's make sure that there are no gaps in ecc positions.
1179 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001180 for (i = 0; i < eccfrag_len - 1; i++) {
1181 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1182 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1183 gaps = 1;
1184 break;
1185 }
1186 }
1187 if (gaps) {
1188 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1189 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1190 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001191 /*
1192 * Send the command to read the particular ecc bytes take care
1193 * about buswidth alignment in read_buf.
1194 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001195 index = start_step * chip->ecc.bytes;
1196
1197 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001198 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001199 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001200 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001201 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001202 aligned_len++;
1203
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001204 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1205 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001206 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1207 }
1208
1209 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001210 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001211
1212 p = bufpoi + data_col_addr;
1213 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1214 int stat;
1215
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001216 stat = chip->ecc.correct(mtd, p,
1217 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001218 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001219 mtd->ecc_stats.failed++;
1220 else
1221 mtd->ecc_stats.corrected += stat;
1222 }
1223 return 0;
1224}
1225
1226/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001227 * nand_read_page_hwecc - [REPLACABLE] hardware ecc based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001228 * @mtd: mtd info structure
1229 * @chip: nand chip info structure
1230 * @buf: buffer to store read data
1231 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001232 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001233 * Not for syndrome calculating ecc controllers which need a special oob
1234 * 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/**
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001273 * nand_read_page_hwecc_oob_first - [REPLACABLE] 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/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001321 * nand_read_page_syndrome - [REPLACABLE] hardware ecc syndrom 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/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001376 * nand_transfer_oob - [Internal] 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/**
1424 * nand_do_read_ops - [Internal] 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/**
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001602 * nand_read_oob_std - [REPLACABLE] 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/**
1620 * nand_read_oob_syndrome - [REPLACABLE] OOB data read function for HW ECC
1621 * 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/**
1659 * nand_write_oob_std - [REPLACABLE] 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/**
1682 * nand_write_oob_syndrome - [REPLACABLE] 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/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001741 * 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/**
1881 * 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 Norris8b6e50c2011-05-25 14:59:01 -07001886 * Not for syndrome calculating ecc controllers, which use a special oob
1887 * layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001888 */
1889static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1890 const uint8_t *buf)
1891{
1892 chip->write_buf(mtd, buf, mtd->writesize);
1893 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001896/**
David Brownell52ff49d2009-03-04 12:01:36 -08001897 * nand_write_page_raw_syndrome - [Intern] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001898 * @mtd: mtd info structure
1899 * @chip: nand chip info structure
1900 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001901 *
1902 * We need a special oob layout and handling even when ECC isn't checked.
1903 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001904static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1905 struct nand_chip *chip,
1906 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001907{
1908 int eccsize = chip->ecc.size;
1909 int eccbytes = chip->ecc.bytes;
1910 uint8_t *oob = chip->oob_poi;
1911 int steps, size;
1912
1913 for (steps = chip->ecc.steps; steps > 0; steps--) {
1914 chip->write_buf(mtd, buf, eccsize);
1915 buf += eccsize;
1916
1917 if (chip->ecc.prepad) {
1918 chip->write_buf(mtd, oob, chip->ecc.prepad);
1919 oob += chip->ecc.prepad;
1920 }
1921
1922 chip->read_buf(mtd, oob, eccbytes);
1923 oob += eccbytes;
1924
1925 if (chip->ecc.postpad) {
1926 chip->write_buf(mtd, oob, chip->ecc.postpad);
1927 oob += chip->ecc.postpad;
1928 }
1929 }
1930
1931 size = mtd->oobsize - (oob - chip->oob_poi);
1932 if (size)
1933 chip->write_buf(mtd, oob, size);
1934}
1935/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001936 * nand_write_page_swecc - [REPLACABLE] software ecc based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001937 * @mtd: mtd info structure
1938 * @chip: nand chip info structure
1939 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001940 */
1941static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1942 const uint8_t *buf)
1943{
1944 int i, eccsize = chip->ecc.size;
1945 int eccbytes = chip->ecc.bytes;
1946 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001947 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001948 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001949 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001950
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001951 /* Software ecc calculation */
1952 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1953 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001954
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001955 for (i = 0; i < chip->ecc.total; i++)
1956 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001957
Thomas Gleixner90424de2007-04-05 11:44:05 +02001958 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001959}
1960
1961/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001962 * nand_write_page_hwecc - [REPLACABLE] hardware ecc based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001963 * @mtd: mtd info structure
1964 * @chip: nand chip info structure
1965 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001966 */
1967static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1968 const uint8_t *buf)
1969{
1970 int i, eccsize = chip->ecc.size;
1971 int eccbytes = chip->ecc.bytes;
1972 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001973 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001974 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001975 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001976
1977 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1978 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001979 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001980 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1981 }
1982
1983 for (i = 0; i < chip->ecc.total; i++)
1984 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1985
1986 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1987}
1988
1989/**
Artem Bityutskiyd29ebdb2006-10-19 16:04:02 +03001990 * nand_write_page_syndrome - [REPLACABLE] hardware ecc syndrom based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07001991 * @mtd: mtd info structure
1992 * @chip: nand chip info structure
1993 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001994 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001995 * The hw generator calculates the error syndrome automatically. Therefore we
1996 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001997 */
1998static void nand_write_page_syndrome(struct mtd_info *mtd,
1999 struct nand_chip *chip, const uint8_t *buf)
2000{
2001 int i, eccsize = chip->ecc.size;
2002 int eccbytes = chip->ecc.bytes;
2003 int eccsteps = chip->ecc.steps;
2004 const uint8_t *p = buf;
2005 uint8_t *oob = chip->oob_poi;
2006
2007 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2008
2009 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2010 chip->write_buf(mtd, p, eccsize);
2011
2012 if (chip->ecc.prepad) {
2013 chip->write_buf(mtd, oob, chip->ecc.prepad);
2014 oob += chip->ecc.prepad;
2015 }
2016
2017 chip->ecc.calculate(mtd, p, oob);
2018 chip->write_buf(mtd, oob, eccbytes);
2019 oob += eccbytes;
2020
2021 if (chip->ecc.postpad) {
2022 chip->write_buf(mtd, oob, chip->ecc.postpad);
2023 oob += chip->ecc.postpad;
2024 }
2025 }
2026
2027 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002028 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002029 if (i)
2030 chip->write_buf(mtd, oob, i);
2031}
2032
2033/**
David Woodhouse956e9442006-09-25 17:12:39 +01002034 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002035 * @mtd: MTD device structure
2036 * @chip: NAND chip descriptor
2037 * @buf: the data to write
2038 * @page: page number to write
2039 * @cached: cached programming
2040 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002041 */
2042static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002043 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002044{
2045 int status;
2046
2047 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2048
David Woodhouse956e9442006-09-25 17:12:39 +01002049 if (unlikely(raw))
2050 chip->ecc.write_page_raw(mtd, chip, buf);
2051 else
2052 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002053
2054 /*
2055 * Cached progamming disabled for now, Not sure if its worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002056 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002057 */
2058 cached = 0;
2059
2060 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2061
2062 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002063 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002064 /*
2065 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002066 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002067 */
2068 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2069 status = chip->errstat(mtd, chip, FL_WRITING, status,
2070 page);
2071
2072 if (status & NAND_STATUS_FAIL)
2073 return -EIO;
2074 } else {
2075 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002076 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002077 }
2078
2079#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2080 /* Send command to read back the data */
2081 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2082
2083 if (chip->verify_buf(mtd, buf, mtd->writesize))
2084 return -EIO;
2085#endif
2086 return 0;
2087}
2088
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002089/**
2090 * nand_fill_oob - [Internal] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002091 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002092 * @oob: oob data buffer
2093 * @len: oob data write length
2094 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002095 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002096static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2097 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002098{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002099 struct nand_chip *chip = mtd->priv;
2100
2101 /*
2102 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2103 * data from a previous OOB read.
2104 */
2105 memset(chip->oob_poi, 0xff, mtd->oobsize);
2106
Florian Fainellif8ac0412010-09-07 13:23:43 +02002107 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002108
2109 case MTD_OOB_PLACE:
2110 case MTD_OOB_RAW:
2111 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2112 return oob + len;
2113
2114 case MTD_OOB_AUTO: {
2115 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002116 uint32_t boffs = 0, woffs = ops->ooboffs;
2117 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002118
Florian Fainellif8ac0412010-09-07 13:23:43 +02002119 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002120 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002121 if (unlikely(woffs)) {
2122 if (woffs >= free->length) {
2123 woffs -= free->length;
2124 continue;
2125 }
2126 boffs = free->offset + woffs;
2127 bytes = min_t(size_t, len,
2128 (free->length - woffs));
2129 woffs = 0;
2130 } else {
2131 bytes = min_t(size_t, len, free->length);
2132 boffs = free->offset;
2133 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002134 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002135 oob += bytes;
2136 }
2137 return oob;
2138 }
2139 default:
2140 BUG();
2141 }
2142 return NULL;
2143}
2144
Florian Fainellif8ac0412010-09-07 13:23:43 +02002145#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002146
2147/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002148 * nand_do_write_ops - [Internal] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002149 * @mtd: MTD device structure
2150 * @to: offset to write to
2151 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002152 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002153 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002154 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002155static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2156 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002157{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002158 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002159 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002160 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002161
2162 uint32_t oobwritelen = ops->ooblen;
2163 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2164 mtd->oobavail : mtd->oobsize;
2165
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002166 uint8_t *oob = ops->oobbuf;
2167 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002168 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002169
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002170 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002171 if (!writelen)
2172 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002173
Brian Norris8b6e50c2011-05-25 14:59:01 -07002174 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002175 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302176 printk(KERN_NOTICE "%s: Attempt to write not "
2177 "page aligned data\n", __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002178 return -EINVAL;
2179 }
2180
Thomas Gleixner29072b92006-09-28 15:38:36 +02002181 column = to & (mtd->writesize - 1);
2182 subpage = column || (writelen & (mtd->writesize - 1));
2183
2184 if (subpage && oob)
2185 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002186
Thomas Gleixner6a930962006-06-28 00:11:45 +02002187 chipnr = (int)(to >> chip->chip_shift);
2188 chip->select_chip(mtd, chipnr);
2189
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002190 /* Check, if it is write protected */
2191 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002192 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002193
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002194 realpage = (int)(to >> chip->page_shift);
2195 page = realpage & chip->pagemask;
2196 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2197
2198 /* Invalidate the page cache, when we write to the cached page */
2199 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002200 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002201 chip->pagebuf = -1;
2202
Maxim Levitsky782ce792010-02-22 20:39:36 +02002203 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002204 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002205 return -EINVAL;
2206
Florian Fainellif8ac0412010-09-07 13:23:43 +02002207 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002208 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002209 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002210 uint8_t *wbuf = buf;
2211
Brian Norris8b6e50c2011-05-25 14:59:01 -07002212 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002213 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2214 cached = 0;
2215 bytes = min_t(int, bytes - column, (int) writelen);
2216 chip->pagebuf = -1;
2217 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2218 memcpy(&chip->buffers->databuf[column], buf, bytes);
2219 wbuf = chip->buffers->databuf;
2220 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002221
Maxim Levitsky782ce792010-02-22 20:39:36 +02002222 if (unlikely(oob)) {
2223 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002224 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002225 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002226 } else {
2227 /* We still need to erase leftover OOB data */
2228 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002229 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002230
Thomas Gleixner29072b92006-09-28 15:38:36 +02002231 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002232 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002233 if (ret)
2234 break;
2235
2236 writelen -= bytes;
2237 if (!writelen)
2238 break;
2239
Thomas Gleixner29072b92006-09-28 15:38:36 +02002240 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002241 buf += bytes;
2242 realpage++;
2243
2244 page = realpage & chip->pagemask;
2245 /* Check, if we cross a chip boundary */
2246 if (!page) {
2247 chipnr++;
2248 chip->select_chip(mtd, -1);
2249 chip->select_chip(mtd, chipnr);
2250 }
2251 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002252
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002253 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002254 if (unlikely(oob))
2255 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002256 return ret;
2257}
2258
2259/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002260 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002261 * @mtd: MTD device structure
2262 * @to: offset to write to
2263 * @len: number of bytes to write
2264 * @retlen: pointer to variable to store the number of written bytes
2265 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002266 *
2267 * NAND write with ECC. Used when performing writes in interrupt context, this
2268 * may for example be called by mtdoops when writing an oops while in panic.
2269 */
2270static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2271 size_t *retlen, const uint8_t *buf)
2272{
2273 struct nand_chip *chip = mtd->priv;
2274 int ret;
2275
2276 /* Do not allow reads past end of device */
2277 if ((to + len) > mtd->size)
2278 return -EINVAL;
2279 if (!len)
2280 return 0;
2281
Brian Norris8b6e50c2011-05-25 14:59:01 -07002282 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002283 panic_nand_wait(mtd, chip, 400);
2284
Brian Norris8b6e50c2011-05-25 14:59:01 -07002285 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002286 panic_nand_get_device(chip, mtd, FL_WRITING);
2287
2288 chip->ops.len = len;
2289 chip->ops.datbuf = (uint8_t *)buf;
2290 chip->ops.oobbuf = NULL;
2291
2292 ret = nand_do_write_ops(mtd, to, &chip->ops);
2293
2294 *retlen = chip->ops.retlen;
2295 return ret;
2296}
2297
2298/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002299 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002300 * @mtd: MTD device structure
2301 * @to: offset to write to
2302 * @len: number of bytes to write
2303 * @retlen: pointer to variable to store the number of written bytes
2304 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002306 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002308static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002309 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002311 struct nand_chip *chip = mtd->priv;
2312 int ret;
2313
2314 /* Do not allow reads past end of device */
2315 if ((to + len) > mtd->size)
2316 return -EINVAL;
2317 if (!len)
2318 return 0;
2319
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002320 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002321
2322 chip->ops.len = len;
2323 chip->ops.datbuf = (uint8_t *)buf;
2324 chip->ops.oobbuf = NULL;
2325
2326 ret = nand_do_write_ops(mtd, to, &chip->ops);
2327
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002328 *retlen = chip->ops.retlen;
2329
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002330 nand_release_device(mtd);
2331
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002332 return ret;
2333}
2334
2335/**
2336 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002337 * @mtd: MTD device structure
2338 * @to: offset to write to
2339 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002340 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002341 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002342 */
2343static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2344 struct mtd_oob_ops *ops)
2345{
Adrian Hunter03736152007-01-31 17:58:29 +02002346 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002347 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
vimal singh20d8e242009-07-07 15:49:49 +05302349 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2350 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Adrian Hunter03736152007-01-31 17:58:29 +02002352 if (ops->mode == MTD_OOB_AUTO)
2353 len = chip->ecc.layout->oobavail;
2354 else
2355 len = mtd->oobsize;
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002358 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302359 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2360 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return -EINVAL;
2362 }
2363
Adrian Hunter03736152007-01-31 17:58:29 +02002364 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302365 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2366 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002367 return -EINVAL;
2368 }
2369
Jason Liu775adc32011-02-25 13:06:18 +08002370 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002371 if (unlikely(to >= mtd->size ||
2372 ops->ooboffs + ops->ooblen >
2373 ((mtd->size >> chip->page_shift) -
2374 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302375 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2376 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002377 return -EINVAL;
2378 }
2379
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002380 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002381 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002383 /* Shift to get page */
2384 page = (int)(to >> chip->page_shift);
2385
2386 /*
2387 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2388 * of my DiskOnChip 2000 test units) will clear the whole data page too
2389 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2390 * it in the doc2000 driver in August 1999. dwmw2.
2391 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002392 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /* Check, if it is write protected */
2395 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002396 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002399 if (page == chip->pagebuf)
2400 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002402 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002403 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002404
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002405 if (status)
2406 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Vitaly Wool70145682006-11-03 18:20:38 +03002408 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002410 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002411}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002413/**
2414 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002415 * @mtd: MTD device structure
2416 * @to: offset to write to
2417 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002418 */
2419static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2420 struct mtd_oob_ops *ops)
2421{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002422 struct nand_chip *chip = mtd->priv;
2423 int ret = -ENOTSUPP;
2424
2425 ops->retlen = 0;
2426
2427 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002428 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302429 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2430 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002431 return -EINVAL;
2432 }
2433
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002434 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002435
Florian Fainellif8ac0412010-09-07 13:23:43 +02002436 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002437 case MTD_OOB_PLACE:
2438 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002439 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002440 break;
2441
2442 default:
2443 goto out;
2444 }
2445
2446 if (!ops->datbuf)
2447 ret = nand_do_write_oob(mtd, to, ops);
2448 else
2449 ret = nand_do_write_ops(mtd, to, ops);
2450
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002451out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002452 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return ret;
2454}
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 * single_erease_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002458 * @mtd: MTD device structure
2459 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002461 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002463static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002465 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002467 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2468 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
2471/**
2472 * multi_erease_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002473 * @mtd: MTD device structure
2474 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002476 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002478static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002480 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002482 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_ERASE1, -1, page);
2486 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
2489/**
2490 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002491 * @mtd: MTD device structure
2492 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002494 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002496static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
David Woodhousee0c7d762006-05-13 18:07:53 +01002498 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002500
David A. Marlin30f464b2005-01-17 18:35:25 +00002501#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002503 * nand_erase_nand - [Internal] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002504 * @mtd: MTD device structure
2505 * @instr: erase instruction
2506 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002508 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002510int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2511 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Adrian Hunter69423d92008-12-10 13:37:21 +00002513 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002514 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002515 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002516 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002517 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
vimal singh20d8e242009-07-07 15:49:49 +05302519 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2520 __func__, (unsigned long long)instr->addr,
2521 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302523 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002526 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002529 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002532 page = (int)(instr->addr >> chip->page_shift);
2533 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002536 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002539 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 /* Check, if it is write protected */
2542 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302543 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2544 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 instr->state = MTD_ERASE_FAILED;
2546 goto erase_exit;
2547 }
2548
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002549 /*
2550 * If BBT requires refresh, set the BBT page mask to see if the BBT
2551 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2552 * can not be matched. This is also done when the bbt is actually
Brian Norris8b6e50c2011-05-25 14:59:01 -07002553 * erased to avoid recusrsive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002554 */
2555 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2556 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 /* Loop through the pages */
2559 len = instr->len;
2560
2561 instr->state = MTD_ERASING;
2562
2563 while (len) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002564 /* Heck if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002565 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2566 chip->page_shift, 0, allowbbt)) {
vimal singh20d8e242009-07-07 15:49:49 +05302567 printk(KERN_WARNING "%s: attempt to erase a bad block "
2568 "at page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 instr->state = MTD_ERASE_FAILED;
2570 goto erase_exit;
2571 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002572
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002573 /*
2574 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002575 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002576 */
2577 if (page <= chip->pagebuf && chip->pagebuf <
2578 (page + pages_per_block))
2579 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002581 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002582
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002583 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002585 /*
2586 * See if operation failed and additional status checks are
2587 * available
2588 */
2589 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2590 status = chip->errstat(mtd, chip, FL_ERASING,
2591 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002594 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302595 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2596 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002598 instr->fail_addr =
2599 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 goto erase_exit;
2601 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002602
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002603 /*
2604 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002605 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002606 */
2607 if (bbt_masked_page != 0xffffffff &&
2608 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002609 rewrite_bbt[chipnr] =
2610 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002613 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 page += pages_per_block;
2615
2616 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002617 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002619 chip->select_chip(mtd, -1);
2620 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002621
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002622 /*
2623 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002624 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002625 */
2626 if (bbt_masked_page != 0xffffffff &&
2627 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2628 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2629 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
2631 }
2632 instr->state = MTD_ERASE_DONE;
2633
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002634erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 /* Deselect and wake up anyone waiting on the device */
2639 nand_release_device(mtd);
2640
David Woodhouse49defc02007-10-06 15:01:59 -04002641 /* Do call back function */
2642 if (!ret)
2643 mtd_erase_callback(instr);
2644
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002645 /*
2646 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002647 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002648 */
2649 if (bbt_masked_page == 0xffffffff || ret)
2650 return ret;
2651
2652 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2653 if (!rewrite_bbt[chipnr])
2654 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002655 /* Update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302656 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2657 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2658 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002659 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002660 }
2661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 /* Return more or less happy */
2663 return ret;
2664}
2665
2666/**
2667 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002668 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002670 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002672static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002674 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
vimal singh20d8e242009-07-07 15:49:49 +05302676 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002679 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002681 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
2683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002685 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002686 * @mtd: MTD device structure
2687 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002689static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
2691 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002692 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002694
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002695 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002699 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002700 * @mtd: MTD device structure
2701 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002703static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002705 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 int ret;
2707
Florian Fainellif8ac0412010-09-07 13:23:43 +02002708 ret = nand_block_isbad(mtd, ofs);
2709 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002710 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (ret > 0)
2712 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002713 return ret;
2714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002716 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
2719/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002720 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002721 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002722 */
2723static int nand_suspend(struct mtd_info *mtd)
2724{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002725 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002726
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002727 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002728}
2729
2730/**
2731 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002732 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002733 */
2734static void nand_resume(struct mtd_info *mtd)
2735{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002736 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002737
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002738 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002739 nand_release_device(mtd);
2740 else
vimal singh20d8e242009-07-07 15:49:49 +05302741 printk(KERN_ERR "%s called for a chip which is not "
2742 "in suspended state\n", __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002743}
2744
Brian Norris8b6e50c2011-05-25 14:59:01 -07002745/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002746static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002747{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002749 if (!chip->chip_delay)
2750 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002753 if (chip->cmdfunc == NULL)
2754 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002757 if (chip->waitfunc == NULL)
2758 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002760 if (!chip->select_chip)
2761 chip->select_chip = nand_select_chip;
2762 if (!chip->read_byte)
2763 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2764 if (!chip->read_word)
2765 chip->read_word = nand_read_word;
2766 if (!chip->block_bad)
2767 chip->block_bad = nand_block_bad;
2768 if (!chip->block_markbad)
2769 chip->block_markbad = nand_default_block_markbad;
2770 if (!chip->write_buf)
2771 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2772 if (!chip->read_buf)
2773 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2774 if (!chip->verify_buf)
2775 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2776 if (!chip->scan_bbt)
2777 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002778
2779 if (!chip->controller) {
2780 chip->controller = &chip->hwcontrol;
2781 spin_lock_init(&chip->controller->lock);
2782 init_waitqueue_head(&chip->controller->wq);
2783 }
2784
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002785}
2786
Brian Norris8b6e50c2011-05-25 14:59:01 -07002787/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002788static void sanitize_string(uint8_t *s, size_t len)
2789{
2790 ssize_t i;
2791
Brian Norris8b6e50c2011-05-25 14:59:01 -07002792 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002793 s[len - 1] = 0;
2794
Brian Norris8b6e50c2011-05-25 14:59:01 -07002795 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002796 for (i = 0; i < len - 1; i++) {
2797 if (s[i] < ' ' || s[i] > 127)
2798 s[i] = '?';
2799 }
2800
Brian Norris8b6e50c2011-05-25 14:59:01 -07002801 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002802 strim(s);
2803}
2804
2805static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2806{
2807 int i;
2808 while (len--) {
2809 crc ^= *p++ << 8;
2810 for (i = 0; i < 8; i++)
2811 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2812 }
2813
2814 return crc;
2815}
2816
2817/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002818 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002819 */
2820static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
2821 int busw)
2822{
2823 struct nand_onfi_params *p = &chip->onfi_params;
2824 int i;
2825 int val;
2826
Brian Norris8b6e50c2011-05-25 14:59:01 -07002827 /* Try ONFI for unknow chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002828 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2829 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2830 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2831 return 0;
2832
2833 printk(KERN_INFO "ONFI flash detected\n");
2834 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2835 for (i = 0; i < 3; i++) {
2836 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2837 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2838 le16_to_cpu(p->crc)) {
2839 printk(KERN_INFO "ONFI param page %d valid\n", i);
2840 break;
2841 }
2842 }
2843
2844 if (i == 3)
2845 return 0;
2846
Brian Norris8b6e50c2011-05-25 14:59:01 -07002847 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002848 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002849 if (val & (1 << 5))
2850 chip->onfi_version = 23;
2851 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002852 chip->onfi_version = 22;
2853 else if (val & (1 << 3))
2854 chip->onfi_version = 21;
2855 else if (val & (1 << 2))
2856 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002857 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002858 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002859 else
2860 chip->onfi_version = 0;
2861
2862 if (!chip->onfi_version) {
2863 printk(KERN_INFO "%s: unsupported ONFI version: %d\n",
2864 __func__, val);
2865 return 0;
2866 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002867
2868 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2869 sanitize_string(p->model, sizeof(p->model));
2870 if (!mtd->name)
2871 mtd->name = p->model;
2872 mtd->writesize = le32_to_cpu(p->byte_per_page);
2873 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2874 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002875 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002876 busw = 0;
2877 if (le16_to_cpu(p->features) & 1)
2878 busw = NAND_BUSWIDTH_16;
2879
2880 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2881 chip->options |= (NAND_NO_READRDY |
2882 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2883
2884 return 1;
2885}
2886
2887/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002888 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002889 */
2890static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002891 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002892 int busw,
2893 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002894 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002895{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002896 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002897 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002898 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002901 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Karl Beldanef89a882008-09-15 14:37:29 +02002903 /*
2904 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002905 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002906 */
2907 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002910 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002913 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002914 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Brian Norris8b6e50c2011-05-25 14:59:01 -07002916 /*
2917 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002918 * interface concerns can cause random data which looks like a
2919 * possibly credible NAND flash to appear. If the two results do
2920 * not match, ignore the device completely.
2921 */
2922
2923 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2924
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002925 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002926 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002927
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002928 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ben Dooksed8165c2008-04-14 14:58:58 +01002929 printk(KERN_INFO "%s: second ID read did not match "
2930 "%02x,%02x against %02x,%02x\n", __func__,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002931 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002932 return ERR_PTR(-ENODEV);
2933 }
2934
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002935 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002936 type = nand_flash_ids;
2937
2938 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002939 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002940 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002941
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002942 chip->onfi_version = 0;
2943 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002944 /* Check is chip is ONFI compliant */
2945 ret = nand_flash_detect_onfi(mtd, chip, busw);
2946 if (ret)
2947 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002948 }
2949
2950 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2951
2952 /* Read entire ID string */
2953
2954 for (i = 0; i < 8; i++)
2955 id_data[i] = chip->read_byte(mtd);
2956
David Woodhouse5e81e882010-02-26 18:32:56 +00002957 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002958 return ERR_PTR(-ENODEV);
2959
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002960 if (!mtd->name)
2961 mtd->name = type->name;
2962
Adrian Hunter69423d92008-12-10 13:37:21 +00002963 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002964
Huang Shijie12a40a52010-09-27 10:43:53 +08002965 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002966 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002967 busw = chip->init_size(mtd, chip, id_data);
2968 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002969 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002970 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002971 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002972 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002973 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002974
Kevin Cernekee426c4572010-05-04 20:58:03 -07002975 /*
2976 * Field definitions are in the following datasheets:
2977 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002978 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002979 *
2980 * Check for wraparound + Samsung ID + nonzero 6th byte
2981 * to decide what to do.
2982 */
2983 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2984 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002985 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002986 id_data[5] != 0x00) {
2987 /* Calc pagesize */
2988 mtd->writesize = 2048 << (extid & 0x03);
2989 extid >>= 2;
2990 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07002991 switch (extid & 0x03) {
2992 case 1:
2993 mtd->oobsize = 128;
2994 break;
2995 case 2:
2996 mtd->oobsize = 218;
2997 break;
2998 case 3:
2999 mtd->oobsize = 400;
3000 break;
3001 default:
3002 mtd->oobsize = 436;
3003 break;
3004 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003005 extid >>= 2;
3006 /* Calc blocksize */
3007 mtd->erasesize = (128 * 1024) <<
3008 (((extid >> 1) & 0x04) | (extid & 0x03));
3009 busw = 0;
3010 } else {
3011 /* Calc pagesize */
3012 mtd->writesize = 1024 << (extid & 0x03);
3013 extid >>= 2;
3014 /* Calc oobsize */
3015 mtd->oobsize = (8 << (extid & 0x01)) *
3016 (mtd->writesize >> 9);
3017 extid >>= 2;
3018 /* Calc blocksize. Blocksize is multiples of 64KiB */
3019 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3020 extid >>= 2;
3021 /* Get buswidth information */
3022 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3023 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003024 } else {
3025 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003026 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003027 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003028 mtd->erasesize = type->erasesize;
3029 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003030 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003031 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003032
3033 /*
3034 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3035 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003036 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003037 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3038 */
3039 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3040 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3041 id_data[7] == 0x00 && mtd->writesize == 512) {
3042 mtd->erasesize = 128 * 1024;
3043 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3044 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003045 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003046 /* Get chip options, preserve non chip based options */
3047 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3048 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3049
Brian Norris8b6e50c2011-05-25 14:59:01 -07003050 /*
3051 * Check if chip is not a Samsung device. Do not clear the
3052 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003053 */
3054 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3055 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3056ident_done:
3057
3058 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003059 * Set chip as a default. Board drivers can override it, if necessary.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003060 */
3061 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003062
3063 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003064 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003065 if (nand_manuf_ids[maf_idx].id == *maf_id)
3066 break;
3067 }
3068
3069 /*
3070 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003071 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003072 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003073 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003074 printk(KERN_INFO "NAND device: Manufacturer ID:"
3075 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003076 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003077 printk(KERN_WARNING "NAND bus width %d instead %d bit\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003078 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003079 busw ? 16 : 8);
3080 return ERR_PTR(-EINVAL);
3081 }
3082
3083 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003084 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003085 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003086 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003087
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003088 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003089 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003090 if (chip->chipsize & 0xffffffff)
3091 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003092 else {
3093 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3094 chip->chip_shift += 32 - 1;
3095 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003096
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003097 chip->badblockbits = 8;
3098
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003099 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003100 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003101 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003102 else
3103 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003104
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003105 /*
3106 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003107 * on Samsung and Hynix MLC devices; stored in first two pages
3108 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003109 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3110 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003111 */
3112 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3113 (*maf_id == NAND_MFR_SAMSUNG ||
3114 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003115 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003116 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3117 (*maf_id == NAND_MFR_SAMSUNG ||
3118 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003119 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003120 *maf_id == NAND_MFR_AMD)) ||
3121 (mtd->writesize == 2048 &&
3122 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003123 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003124
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003125 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003126 if (chip->options & NAND_4PAGE_ARRAY)
3127 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003128 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003129 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003130
Brian Norris8b6e50c2011-05-25 14:59:01 -07003131 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003132 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3133 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003134
3135 printk(KERN_INFO "NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003136 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3137 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003138 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003139
3140 return type;
3141}
3142
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003143/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003144 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003145 * @mtd: MTD device structure
3146 * @maxchips: number of chips to scan for
3147 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003148 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003149 * This is the first phase of the normal nand_scan() function. It reads the
3150 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003151 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003152 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003153 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003154int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3155 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003156{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003157 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003158 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003159 struct nand_flash_dev *type;
3160
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003161 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003162 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003163 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003164 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165
3166 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003167 type = nand_get_flash_type(mtd, chip, busw,
3168 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003169
3170 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003171 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3172 printk(KERN_WARNING "No NAND device found.\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003173 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003174 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 }
3176
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003177 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003178 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003179 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003180 /* See comment in nand_get_flash_type for reset */
3181 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003183 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003185 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003186 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 break;
3188 }
3189 if (i > 1)
3190 printk(KERN_INFO "%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003193 chip->numchips = i;
3194 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
David Woodhouse3b85c322006-09-25 17:06:53 +01003196 return 0;
3197}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003198EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003199
3200
3201/**
3202 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003203 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003204 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003205 * This is the second phase of the normal nand_scan() function. It fills out
3206 * all the uninitialized function pointers with the defaults and scans for a
3207 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003208 */
3209int nand_scan_tail(struct mtd_info *mtd)
3210{
3211 int i;
3212 struct nand_chip *chip = mtd->priv;
3213
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003214 if (!(chip->options & NAND_OWN_BUFFERS))
3215 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3216 if (!chip->buffers)
3217 return -ENOMEM;
3218
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003219 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003220 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003221
3222 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003223 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003224 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003225 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003226 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003228 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 break;
3230 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003231 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 break;
3233 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003234 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003236 case 128:
3237 chip->ecc.layout = &nand_oob_128;
3238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003240 printk(KERN_WARNING "No oob scheme defined for "
3241 "oobsize %d\n", mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 BUG();
3243 }
3244 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003245
David Woodhouse956e9442006-09-25 17:12:39 +01003246 if (!chip->write_page)
3247 chip->write_page = nand_write_page;
3248
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003249 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003250 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003251 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003252 */
David Woodhouse956e9442006-09-25 17:12:39 +01003253
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003254 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003255 case NAND_ECC_HW_OOB_FIRST:
3256 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3257 if (!chip->ecc.calculate || !chip->ecc.correct ||
3258 !chip->ecc.hwctl) {
3259 printk(KERN_WARNING "No ECC functions supplied; "
3260 "Hardware ECC not possible\n");
3261 BUG();
3262 }
3263 if (!chip->ecc.read_page)
3264 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3265
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003266 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003267 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003268 if (!chip->ecc.read_page)
3269 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003270 if (!chip->ecc.write_page)
3271 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003272 if (!chip->ecc.read_page_raw)
3273 chip->ecc.read_page_raw = nand_read_page_raw;
3274 if (!chip->ecc.write_page_raw)
3275 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003276 if (!chip->ecc.read_oob)
3277 chip->ecc.read_oob = nand_read_oob_std;
3278 if (!chip->ecc.write_oob)
3279 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003280
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003281 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003282 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3283 !chip->ecc.hwctl) &&
3284 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003285 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003286 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003287 chip->ecc.write_page == nand_write_page_hwecc)) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003288 printk(KERN_WARNING "No ECC functions supplied; "
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003289 "Hardware ECC not possible\n");
3290 BUG();
3291 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003292 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003293 if (!chip->ecc.read_page)
3294 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003295 if (!chip->ecc.write_page)
3296 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003297 if (!chip->ecc.read_page_raw)
3298 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3299 if (!chip->ecc.write_page_raw)
3300 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003301 if (!chip->ecc.read_oob)
3302 chip->ecc.read_oob = nand_read_oob_syndrome;
3303 if (!chip->ecc.write_oob)
3304 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003305
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003306 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003307 break;
3308 printk(KERN_WARNING "%d byte HW ECC not possible on "
3309 "%d byte page size, fallback to SW ECC\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003310 chip->ecc.size, mtd->writesize);
3311 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003313 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003314 chip->ecc.calculate = nand_calculate_ecc;
3315 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003316 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003317 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003318 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003319 chip->ecc.read_page_raw = nand_read_page_raw;
3320 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003321 chip->ecc.read_oob = nand_read_oob_std;
3322 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003323 if (!chip->ecc.size)
3324 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003325 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003327
Ivan Djelic193bd402011-03-11 11:05:33 +01003328 case NAND_ECC_SOFT_BCH:
3329 if (!mtd_nand_has_bch()) {
3330 printk(KERN_WARNING "CONFIG_MTD_ECC_BCH not enabled\n");
3331 BUG();
3332 }
3333 chip->ecc.calculate = nand_bch_calculate_ecc;
3334 chip->ecc.correct = nand_bch_correct_data;
3335 chip->ecc.read_page = nand_read_page_swecc;
3336 chip->ecc.read_subpage = nand_read_subpage;
3337 chip->ecc.write_page = nand_write_page_swecc;
3338 chip->ecc.read_page_raw = nand_read_page_raw;
3339 chip->ecc.write_page_raw = nand_write_page_raw;
3340 chip->ecc.read_oob = nand_read_oob_std;
3341 chip->ecc.write_oob = nand_write_oob_std;
3342 /*
3343 * Board driver should supply ecc.size and ecc.bytes values to
3344 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003345 * for details. Otherwise, default to 4 bits for large page
3346 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003347 */
3348 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3349 chip->ecc.size = 512;
3350 chip->ecc.bytes = 7;
3351 }
3352 chip->ecc.priv = nand_bch_init(mtd,
3353 chip->ecc.size,
3354 chip->ecc.bytes,
3355 &chip->ecc.layout);
3356 if (!chip->ecc.priv) {
3357 printk(KERN_WARNING "BCH ECC initialization failed!\n");
3358 BUG();
3359 }
3360 break;
3361
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003362 case NAND_ECC_NONE:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003363 printk(KERN_WARNING "NAND_ECC_NONE selected by board driver. "
3364 "This is not recommended !!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003365 chip->ecc.read_page = nand_read_page_raw;
3366 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003367 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003368 chip->ecc.read_page_raw = nand_read_page_raw;
3369 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003370 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003371 chip->ecc.size = mtd->writesize;
3372 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 default:
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003376 printk(KERN_WARNING "Invalid NAND_ECC_MODE %d\n",
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003377 chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003378 BUG();
3379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003381 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003382 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003383 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003384 */
3385 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003386 for (i = 0; chip->ecc.layout->oobfree[i].length
3387 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003388 chip->ecc.layout->oobavail +=
3389 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003390 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003391
3392 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003393 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003394 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003395 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003396 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003397 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003398 printk(KERN_WARNING "Invalid ecc parameters\n");
3399 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003401 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003402
Brian Norris8b6e50c2011-05-25 14:59:01 -07003403 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003404 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3405 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003406 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003407 case 2:
3408 mtd->subpage_sft = 1;
3409 break;
3410 case 4:
3411 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003412 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003413 mtd->subpage_sft = 2;
3414 break;
3415 }
3416 }
3417 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3418
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003419 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003420 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
3422 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003423 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
3425 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003426 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428 /* Fill in remaining MTD driver data */
3429 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003430 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3431 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 mtd->erase = nand_erase;
3433 mtd->point = NULL;
3434 mtd->unpoint = NULL;
3435 mtd->read = nand_read;
3436 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003437 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 mtd->read_oob = nand_read_oob;
3439 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 mtd->sync = nand_sync;
3441 mtd->lock = NULL;
3442 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003443 mtd->suspend = nand_suspend;
3444 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 mtd->block_isbad = nand_block_isbad;
3446 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003447 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003449 /* propagate ecc.layout to mtd_info */
3450 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003452 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003453 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003454 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003457 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003459EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Brian Norris8b6e50c2011-05-25 14:59:01 -07003461/*
3462 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003463 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003464 * to call us from in-kernel code if the core NAND support is modular.
3465 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003466#ifdef MODULE
3467#define caller_is_module() (1)
3468#else
3469#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003470 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003471#endif
3472
3473/**
3474 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003475 * @mtd: MTD device structure
3476 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003477 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003478 * This fills out all the uninitialized function pointers with the defaults.
3479 * The flash ID is read and the mtd/chip structures are filled with the
3480 * appropriate values. The mtd->owner field must be set to the module of the
3481 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003482 */
3483int nand_scan(struct mtd_info *mtd, int maxchips)
3484{
3485 int ret;
3486
3487 /* Many callers got this wrong, so check for it for a while... */
3488 if (!mtd->owner && caller_is_module()) {
vimal singh20d8e242009-07-07 15:49:49 +05303489 printk(KERN_CRIT "%s called with NULL mtd->owner!\n",
3490 __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003491 BUG();
3492 }
3493
David Woodhouse5e81e882010-02-26 18:32:56 +00003494 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003495 if (!ret)
3496 ret = nand_scan_tail(mtd);
3497 return ret;
3498}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003499EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003502 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003503 * @mtd: MTD device structure
3504 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003505void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003507 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Ivan Djelic193bd402011-03-11 11:05:33 +01003509 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3510 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3511
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003512 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Jesper Juhlfa671642005-11-07 01:01:27 -08003514 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003515 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003516 if (!(chip->options & NAND_OWN_BUFFERS))
3517 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003518
3519 /* Free bad block descriptor memory */
3520 if (chip->badblock_pattern && chip->badblock_pattern->options
3521 & NAND_BBT_DYNAMICSTRUCT)
3522 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523}
David Woodhousee0c7d762006-05-13 18:07:53 +01003524EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003525
3526static int __init nand_base_init(void)
3527{
3528 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3529 return 0;
3530}
3531
3532static void __exit nand_base_exit(void)
3533{
3534 led_trigger_unregister_simple(nand_led_trigger);
3535}
3536
3537module_init(nand_base_init);
3538module_exit(nand_base_exit);
3539
David Woodhousee0c7d762006-05-13 18:07:53 +01003540MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003541MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3542MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003543MODULE_DESCRIPTION("Generic NAND flash driver code");