blob: 3ed9c5e4d34e7bfbc51351a8475878424c325ab6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
7 * Basic support for AG-AND chips is provided.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +020010 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020015 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 * David Woodhouse for adding multichip support
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020021 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Enable cached programming for 2k page size chips
23 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070024 * if we have HW ECC support.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * The AG-AND chips have nice features for speed improvement,
26 * which are not supported yet. Read / program 4 pages in one go.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030027 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License version 2 as
31 * published by the Free Software Foundation.
32 *
33 */
34
David Woodhouse552d9202006-05-14 01:20:46 +010035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010045#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/interrupt.h>
47#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080048#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020049#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mtd/partitions.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020053static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .eccbytes = 3,
55 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020056 .oobfree = {
57 {.offset = 3,
58 .length = 2},
59 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020060 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020063static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .eccbytes = 6,
65 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020066 .oobfree = {
67 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020068 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020071static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .eccbytes = 24,
73 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010074 40, 41, 42, 43, 44, 45, 46, 47,
75 48, 49, 50, 51, 52, 53, 54, 55,
76 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020077 .oobfree = {
78 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020079 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Thomas Gleixner81ec5362007-12-12 17:27:03 +010082static struct nand_ecclayout nand_oob_128 = {
83 .eccbytes = 48,
84 .eccpos = {
85 80, 81, 82, 83, 84, 85, 86, 87,
86 88, 89, 90, 91, 92, 93, 94, 95,
87 96, 97, 98, 99, 100, 101, 102, 103,
88 104, 105, 106, 107, 108, 109, 110, 111,
89 112, 113, 114, 115, 116, 117, 118, 119,
90 120, 121, 122, 123, 124, 125, 126, 127},
91 .oobfree = {
92 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020093 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010094};
95
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020096static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020097 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020099static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
100 struct mtd_oob_ops *ops);
101
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200102/*
Joe Perches8e87d782008-02-03 17:22:34 +0200103 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104 * compiled away when LED support is disabled.
105 */
106DEFINE_LED_TRIGGER(nand_led_trigger);
107
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530108static int check_offs_len(struct mtd_info *mtd,
109 loff_t ofs, uint64_t len)
110{
111 struct nand_chip *chip = mtd->priv;
112 int ret = 0;
113
114 /* Start address must align on block boundary */
115 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700116 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530117 ret = -EINVAL;
118 }
119
120 /* Length must align on block boundary */
121 if (len & ((1 << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700122 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530123 ret = -EINVAL;
124 }
125
126 /* Do not allow past end of device */
127 if (ofs + len > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -0700128 pr_debug("%s: past end of device\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530129 ret = -EINVAL;
130 }
131
132 return ret;
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**
136 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700137 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000138 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700139 * Deselect, release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100141static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200143 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200146 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100147
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200148 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200149 spin_lock(&chip->controller->lock);
150 chip->controller->active = NULL;
151 chip->state = FL_READY;
152 wake_up(&chip->controller->wq);
153 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/**
157 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700158 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700160 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200162static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200164 struct nand_chip *chip = mtd->priv;
165 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
Brian Norris7854d3f2011-06-23 14:12:08 -0700170 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700171 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700173 * Default read function for 16bit buswidth with endianness conversion.
174 *
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 Norris7854d3f2011-06-23 14:12:08 -0700186 * Default read function for 16bit buswidth without endianness 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 Norris7854d3f2011-06-23 14:12:08 -0700223 * Default write function for 8bit buswidth.
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 Norris7854d3f2011-06-23 14:12:08 -0700240 * Default read function for 8bit buswidth.
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 Norris7854d3f2011-06-23 14:12:08 -0700257 * Default verify function for 8bit buswidth.
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 Norris7854d3f2011-06-23 14:12:08 -0700276 * Default write function for 16bit buswidth.
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 Norris7854d3f2011-06-23 14:12:08 -0700296 * Default read function for 16bit buswidth.
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 Norris7854d3f2011-06-23 14:12:08 -0700315 * Default verify function for 16bit buswidth.
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 {
Brian Norris4a89ff82011-08-30 18:45:45 -0700409 struct mtd_oob_ops ops;
410
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412
Brian Norrisa0dc5522011-05-31 16:31:20 -0700413 /*
414 * Write to first two pages if necessary. If we write to more
415 * than one location, the first error encountered quits the
416 * procedure. We write two bytes per location, so we dont have
417 * to mess with 16 bit access.
Brian Norris02ed70b2010-07-21 16:53:47 -0700418 */
Brian Norris4a89ff82011-08-30 18:45:45 -0700419 ops.len = ops.ooblen = 2;
420 ops.datbuf = NULL;
421 ops.oobbuf = buf;
422 ops.ooboffs = chip->badblockpos & ~0x01;
Brian Norris23b1a992011-10-14 20:09:33 -0700423 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris02ed70b2010-07-21 16:53:47 -0700424 do {
Brian Norris4a89ff82011-08-30 18:45:45 -0700425 ret = nand_do_write_oob(mtd, ofs, &ops);
Brian Norris02ed70b2010-07-21 16:53:47 -0700426
Brian Norris02ed70b2010-07-21 16:53:47 -0700427 i++;
428 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700429 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700430 i < 2);
431
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300432 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200433 }
434 if (!ret)
435 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300436
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700442 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700444 * Check, if the device is write protected. The function expects, that the
445 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100447static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200449 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200450
Brian Norris8b6e50c2011-05-25 14:59:01 -0700451 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200452 if (chip->options & NAND_BROKEN_XD)
453 return 0;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200456 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
457 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/**
461 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700462 * @mtd: MTD device structure
463 * @ofs: offset from device start
464 * @getchip: 0, if the chip is already selected
465 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
467 * Check, if the block is bad. Either by reading the bad block table or
468 * calling of the scan function.
469 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200470static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
471 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000474
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200475 if (!chip->bbt)
476 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100479 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200482/**
483 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700484 * @mtd: MTD device structure
485 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200486 *
487 * Helper function for nand_wait_ready used when needing to wait in interrupt
488 * context.
489 */
490static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
491{
492 struct nand_chip *chip = mtd->priv;
493 int i;
494
495 /* Wait for the device to get ready */
496 for (i = 0; i < timeo; i++) {
497 if (chip->dev_ready(mtd))
498 break;
499 touch_softlockup_watchdog();
500 mdelay(1);
501 }
502}
503
Brian Norris7854d3f2011-06-23 14:12:08 -0700504/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100505void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000506{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200507 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100508 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000509
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200510 /* 400ms timeout */
511 if (in_interrupt() || oops_in_progress)
512 return panic_nand_wait_ready(mtd, 400);
513
Richard Purdie8fe833c2006-03-31 02:31:14 -0800514 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700515 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000516 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200517 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800518 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700519 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000520 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800521 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000522}
David Woodhouse4b648b02006-09-25 17:05:24 +0100523EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/**
526 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700527 * @mtd: MTD device structure
528 * @command: the command to be sent
529 * @column: the column address for this command, -1 if none
530 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700532 * Send command to NAND device. This function is used for small page devices
533 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200535static void nand_command(struct mtd_info *mtd, unsigned int command,
536 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200538 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200539 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Brian Norris8b6e50c2011-05-25 14:59:01 -0700541 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (command == NAND_CMD_SEQIN) {
543 int readcmd;
544
Joern Engel28318772006-05-22 23:18:05 +0200545 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200547 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 readcmd = NAND_CMD_READOOB;
549 } else if (column < 256) {
550 /* First 256 bytes --> READ0 */
551 readcmd = NAND_CMD_READ0;
552 } else {
553 column -= 256;
554 readcmd = NAND_CMD_READ1;
555 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200556 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200557 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200559 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Brian Norris8b6e50c2011-05-25 14:59:01 -0700561 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200562 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
563 /* Serially input address */
564 if (column != -1) {
565 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200567 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200568 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200569 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200571 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200572 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200573 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200574 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200575 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200576 if (chip->chipsize > (32 << 20))
577 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200578 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000580
581 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700582 * Program and erase have their own busy handlers status and sequential
583 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 case NAND_CMD_PAGEPROG:
588 case NAND_CMD_ERASE1:
589 case NAND_CMD_ERASE2:
590 case NAND_CMD_SEQIN:
591 case NAND_CMD_STATUS:
592 return;
593
594 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200595 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200597 udelay(chip->chip_delay);
598 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200599 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200600 chip->cmd_ctrl(mtd,
601 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200602 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
603 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return;
605
David Woodhousee0c7d762006-05-13 18:07:53 +0100606 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * If we don't have access to the busy pin, we apply the given
610 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100611 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200612 if (!chip->dev_ready) {
613 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700617 /*
618 * Apply this short delay always to ensure that we do wait tWB in
619 * any case on any machine.
620 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100621 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000622
623 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/**
627 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700628 * @mtd: MTD device structure
629 * @command: the command to be sent
630 * @column: the column address for this command, -1 if none
631 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200633 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700634 * devices. We don't have the separate regions as we have in the small page
635 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200637static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
638 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200640 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* Emulate NAND_CMD_READOOB */
643 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200644 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 command = NAND_CMD_READ0;
646 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000647
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200649 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200650 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200653 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Serially input address */
656 if (column != -1) {
657 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200658 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200661 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200662 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200665 chip->cmd_ctrl(mtd, page_addr, ctrl);
666 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200667 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200669 if (chip->chipsize > (128 << 20))
670 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200671 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200674 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000675
676 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700677 * Program and erase have their own busy handlers status, sequential
678 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 case NAND_CMD_CACHEDPROG:
683 case NAND_CMD_PAGEPROG:
684 case NAND_CMD_ERASE1:
685 case NAND_CMD_ERASE2:
686 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200687 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000689 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return;
691
David A. Marlin30f464b2005-01-17 18:35:25 +0000692 case NAND_CMD_STATUS_ERROR:
693 case NAND_CMD_STATUS_ERROR0:
694 case NAND_CMD_STATUS_ERROR1:
695 case NAND_CMD_STATUS_ERROR2:
696 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700697 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200698 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000699 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200704 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200705 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
706 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
707 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
708 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200709 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
710 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return;
712
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200713 case NAND_CMD_RNDOUT:
714 /* No ready / busy check necessary */
715 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
716 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
717 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
718 NAND_NCE | NAND_CTRL_CHANGE);
719 return;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200722 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
723 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
724 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
725 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000726
David Woodhousee0c7d762006-05-13 18:07:53 +0100727 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000729 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700731 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100732 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200733 if (!chip->dev_ready) {
734 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000738
Brian Norris8b6e50c2011-05-25 14:59:01 -0700739 /*
740 * Apply this short delay always to ensure that we do wait tWB in
741 * any case on any machine.
742 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100743 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000744
745 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200749 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700750 * @chip: the nand chip descriptor
751 * @mtd: MTD device structure
752 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200753 *
754 * Used when in panic, no locks are taken.
755 */
756static void panic_nand_get_device(struct nand_chip *chip,
757 struct mtd_info *mtd, int new_state)
758{
Brian Norris7854d3f2011-06-23 14:12:08 -0700759 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200760 chip->controller->active = chip;
761 chip->state = new_state;
762}
763
764/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700766 * @chip: the nand chip descriptor
767 * @mtd: MTD device structure
768 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * Get the device and lock it for exclusive access
771 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200772static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200773nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200775 spinlock_t *lock = &chip->controller->lock;
776 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100777 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200778retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100779 spin_lock(lock);
780
vimal singhb8b3ee92009-07-09 20:41:22 +0530781 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200782 if (!chip->controller->active)
783 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200784
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200785 if (chip->controller->active == chip && chip->state == FL_READY) {
786 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100787 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100788 return 0;
789 }
790 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800791 if (chip->controller->active->state == FL_PM_SUSPENDED) {
792 chip->state = FL_PM_SUSPENDED;
793 spin_unlock(lock);
794 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800795 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100796 }
797 set_current_state(TASK_UNINTERRUPTIBLE);
798 add_wait_queue(wq, &wait);
799 spin_unlock(lock);
800 schedule();
801 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto retry;
803}
804
805/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700806 * panic_nand_wait - [GENERIC] wait until the command is done
807 * @mtd: MTD device structure
808 * @chip: NAND chip structure
809 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200810 *
811 * Wait for command done. This is a helper function for nand_wait used when
812 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400813 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200814 */
815static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
816 unsigned long timeo)
817{
818 int i;
819 for (i = 0; i < timeo; i++) {
820 if (chip->dev_ready) {
821 if (chip->dev_ready(mtd))
822 break;
823 } else {
824 if (chip->read_byte(mtd) & NAND_STATUS_READY)
825 break;
826 }
827 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200828 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200829}
830
831/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700832 * nand_wait - [DEFAULT] wait until the command is done
833 * @mtd: MTD device structure
834 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700836 * Wait for command done. This applies to erase and program only. Erase can
837 * take up to 400ms and program up to 20ms according to general NAND and
838 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700839 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200840static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842
David Woodhousee0c7d762006-05-13 18:07:53 +0100843 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200844 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100849 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Richard Purdie8fe833c2006-03-31 02:31:14 -0800851 led_trigger_event(nand_led_trigger, LED_FULL);
852
Brian Norris8b6e50c2011-05-25 14:59:01 -0700853 /*
854 * Apply this short delay always to ensure that we do wait tWB in any
855 * case on any machine.
856 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100857 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200859 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
860 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000861 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200862 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200864 if (in_interrupt() || oops_in_progress)
865 panic_nand_wait(mtd, chip, timeo);
866 else {
867 while (time_before(jiffies, timeo)) {
868 if (chip->dev_ready) {
869 if (chip->dev_ready(mtd))
870 break;
871 } else {
872 if (chip->read_byte(mtd) & NAND_STATUS_READY)
873 break;
874 }
875 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800878 led_trigger_event(nand_led_trigger, LED_OFF);
879
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200880 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return status;
882}
883
884/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700885 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700886 * @mtd: mtd info
887 * @ofs: offset to start unlock from
888 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700889 * @invert: when = 0, unlock the range of blocks within the lower and
890 * upper boundary address
891 * when = 1, unlock the range of blocks outside the boundaries
892 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530893 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700894 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530895 */
896static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
897 uint64_t len, int invert)
898{
899 int ret = 0;
900 int status, page;
901 struct nand_chip *chip = mtd->priv;
902
903 /* Submit address of first page to unlock */
904 page = ofs >> chip->page_shift;
905 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
906
907 /* Submit address of last page to unlock */
908 page = (ofs + len) >> chip->page_shift;
909 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
910 (page | invert) & chip->pagemask);
911
912 /* Call wait ready function */
913 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530914 /* See if device thinks it succeeded */
915 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -0700916 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530917 __func__, status);
918 ret = -EIO;
919 }
920
921 return ret;
922}
923
924/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700925 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700926 * @mtd: mtd info
927 * @ofs: offset to start unlock from
928 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530929 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700930 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530931 */
932int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
933{
934 int ret = 0;
935 int chipnr;
936 struct nand_chip *chip = mtd->priv;
937
Brian Norris289c0522011-07-19 10:06:09 -0700938 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530939 __func__, (unsigned long long)ofs, len);
940
941 if (check_offs_len(mtd, ofs, len))
942 ret = -EINVAL;
943
944 /* Align to last block address if size addresses end of the device */
945 if (ofs + len == mtd->size)
946 len -= mtd->erasesize;
947
948 nand_get_device(chip, mtd, FL_UNLOCKING);
949
950 /* Shift to get chip number */
951 chipnr = ofs >> chip->chip_shift;
952
953 chip->select_chip(mtd, chipnr);
954
955 /* Check, if it is write protected */
956 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700957 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530958 __func__);
959 ret = -EIO;
960 goto out;
961 }
962
963 ret = __nand_unlock(mtd, ofs, len, 0);
964
965out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530966 nand_release_device(mtd);
967
968 return ret;
969}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200970EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530971
972/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700973 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700974 * @mtd: mtd info
975 * @ofs: offset to start unlock from
976 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530977 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700978 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
979 * have this feature, but it allows only to lock all blocks, not for specified
980 * range for block. Implementing 'lock' feature by making use of 'unlock', for
981 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530982 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700983 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530984 */
985int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
986{
987 int ret = 0;
988 int chipnr, status, page;
989 struct nand_chip *chip = mtd->priv;
990
Brian Norris289c0522011-07-19 10:06:09 -0700991 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530992 __func__, (unsigned long long)ofs, len);
993
994 if (check_offs_len(mtd, ofs, len))
995 ret = -EINVAL;
996
997 nand_get_device(chip, mtd, FL_LOCKING);
998
999 /* Shift to get chip number */
1000 chipnr = ofs >> chip->chip_shift;
1001
1002 chip->select_chip(mtd, chipnr);
1003
1004 /* Check, if it is write protected */
1005 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001006 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301007 __func__);
1008 status = MTD_ERASE_FAILED;
1009 ret = -EIO;
1010 goto out;
1011 }
1012
1013 /* Submit address of first page to lock */
1014 page = ofs >> chip->page_shift;
1015 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1016
1017 /* Call wait ready function */
1018 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301019 /* See if device thinks it succeeded */
1020 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -07001021 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301022 __func__, status);
1023 ret = -EIO;
1024 goto out;
1025 }
1026
1027 ret = __nand_unlock(mtd, ofs, len, 0x1);
1028
1029out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301030 nand_release_device(mtd);
1031
1032 return ret;
1033}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001034EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301035
1036/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001037 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001038 * @mtd: mtd info structure
1039 * @chip: nand chip info structure
1040 * @buf: buffer to store read data
1041 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001042 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001043 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001044 */
1045static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001046 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001047{
1048 chip->read_buf(mtd, buf, mtd->writesize);
1049 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1050 return 0;
1051}
1052
1053/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001054 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001055 * @mtd: mtd info structure
1056 * @chip: nand chip info structure
1057 * @buf: buffer to store read data
1058 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001059 *
1060 * We need a special oob layout and handling even when OOB isn't used.
1061 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001062static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1063 struct nand_chip *chip,
1064 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001065{
1066 int eccsize = chip->ecc.size;
1067 int eccbytes = chip->ecc.bytes;
1068 uint8_t *oob = chip->oob_poi;
1069 int steps, size;
1070
1071 for (steps = chip->ecc.steps; steps > 0; steps--) {
1072 chip->read_buf(mtd, buf, eccsize);
1073 buf += eccsize;
1074
1075 if (chip->ecc.prepad) {
1076 chip->read_buf(mtd, oob, chip->ecc.prepad);
1077 oob += chip->ecc.prepad;
1078 }
1079
1080 chip->read_buf(mtd, oob, eccbytes);
1081 oob += eccbytes;
1082
1083 if (chip->ecc.postpad) {
1084 chip->read_buf(mtd, oob, chip->ecc.postpad);
1085 oob += chip->ecc.postpad;
1086 }
1087 }
1088
1089 size = mtd->oobsize - (oob - chip->oob_poi);
1090 if (size)
1091 chip->read_buf(mtd, oob, size);
1092
1093 return 0;
1094}
1095
1096/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001097 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001098 * @mtd: mtd info structure
1099 * @chip: nand chip info structure
1100 * @buf: buffer to store read data
1101 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001102 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001103static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001104 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001106 int i, eccsize = chip->ecc.size;
1107 int eccbytes = chip->ecc.bytes;
1108 int eccsteps = chip->ecc.steps;
1109 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001110 uint8_t *ecc_calc = chip->buffers->ecccalc;
1111 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001112 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001113
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001114 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001115
1116 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1117 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1118
1119 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001120 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001121
1122 eccsteps = chip->ecc.steps;
1123 p = buf;
1124
1125 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1126 int stat;
1127
1128 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001129 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001130 mtd->ecc_stats.failed++;
1131 else
1132 mtd->ecc_stats.corrected += stat;
1133 }
1134 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001135}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001138 * nand_read_subpage - [REPLACEABLE] software ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001139 * @mtd: mtd info structure
1140 * @chip: nand chip info structure
1141 * @data_offs: offset of requested data within the page
1142 * @readlen: data length
1143 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001144 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001145static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1146 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001147{
1148 int start_step, end_step, num_steps;
1149 uint32_t *eccpos = chip->ecc.layout->eccpos;
1150 uint8_t *p;
1151 int data_col_addr, i, gaps = 0;
1152 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1153 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001154 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001155
Brian Norris7854d3f2011-06-23 14:12:08 -07001156 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001157 start_step = data_offs / chip->ecc.size;
1158 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1159 num_steps = end_step - start_step + 1;
1160
Brian Norris8b6e50c2011-05-25 14:59:01 -07001161 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001162 datafrag_len = num_steps * chip->ecc.size;
1163 eccfrag_len = num_steps * chip->ecc.bytes;
1164
1165 data_col_addr = start_step * chip->ecc.size;
1166 /* If we read not a page aligned data */
1167 if (data_col_addr != 0)
1168 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1169
1170 p = bufpoi + data_col_addr;
1171 chip->read_buf(mtd, p, datafrag_len);
1172
Brian Norris8b6e50c2011-05-25 14:59:01 -07001173 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001174 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1175 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1176
Brian Norris8b6e50c2011-05-25 14:59:01 -07001177 /*
1178 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001179 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001181 for (i = 0; i < eccfrag_len - 1; i++) {
1182 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1183 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1184 gaps = 1;
1185 break;
1186 }
1187 }
1188 if (gaps) {
1189 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1190 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1191 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001192 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001193 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001194 * about buswidth alignment in read_buf.
1195 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001196 index = start_step * chip->ecc.bytes;
1197
1198 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001199 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001200 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001201 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001202 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001203 aligned_len++;
1204
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001205 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1206 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001207 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1208 }
1209
1210 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001211 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001212
1213 p = bufpoi + data_col_addr;
1214 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1215 int stat;
1216
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001217 stat = chip->ecc.correct(mtd, p,
1218 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001219 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001220 mtd->ecc_stats.failed++;
1221 else
1222 mtd->ecc_stats.corrected += stat;
1223 }
1224 return 0;
1225}
1226
1227/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001228 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001229 * @mtd: mtd info structure
1230 * @chip: nand chip info structure
1231 * @buf: buffer to store read data
1232 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001233 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001234 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001235 */
1236static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001237 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001238{
1239 int i, eccsize = chip->ecc.size;
1240 int eccbytes = chip->ecc.bytes;
1241 int eccsteps = chip->ecc.steps;
1242 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001243 uint8_t *ecc_calc = chip->buffers->ecccalc;
1244 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001245 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001246
1247 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1248 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1249 chip->read_buf(mtd, p, eccsize);
1250 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1251 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001252 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001253
1254 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001255 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001256
1257 eccsteps = chip->ecc.steps;
1258 p = buf;
1259
1260 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1261 int stat;
1262
1263 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001264 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001265 mtd->ecc_stats.failed++;
1266 else
1267 mtd->ecc_stats.corrected += stat;
1268 }
1269 return 0;
1270}
1271
1272/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001273 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001274 * @mtd: mtd info structure
1275 * @chip: nand chip info structure
1276 * @buf: buffer to store read data
1277 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001278 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001279 * Hardware ECC for large page chips, require OOB to be read first. For this
1280 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1281 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1282 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1283 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001284 */
1285static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1286 struct nand_chip *chip, uint8_t *buf, int page)
1287{
1288 int i, eccsize = chip->ecc.size;
1289 int eccbytes = chip->ecc.bytes;
1290 int eccsteps = chip->ecc.steps;
1291 uint8_t *p = buf;
1292 uint8_t *ecc_code = chip->buffers->ecccode;
1293 uint32_t *eccpos = chip->ecc.layout->eccpos;
1294 uint8_t *ecc_calc = chip->buffers->ecccalc;
1295
1296 /* Read the OOB area first */
1297 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1298 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1299 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1300
1301 for (i = 0; i < chip->ecc.total; i++)
1302 ecc_code[i] = chip->oob_poi[eccpos[i]];
1303
1304 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1305 int stat;
1306
1307 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1308 chip->read_buf(mtd, p, eccsize);
1309 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1310
1311 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1312 if (stat < 0)
1313 mtd->ecc_stats.failed++;
1314 else
1315 mtd->ecc_stats.corrected += stat;
1316 }
1317 return 0;
1318}
1319
1320/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001321 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001322 * @mtd: mtd info structure
1323 * @chip: nand chip info structure
1324 * @buf: buffer to store read data
1325 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001326 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001327 * The hw generator calculates the error syndrome automatically. Therefore we
1328 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001329 */
1330static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001331 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332{
1333 int i, eccsize = chip->ecc.size;
1334 int eccbytes = chip->ecc.bytes;
1335 int eccsteps = chip->ecc.steps;
1336 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001337 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001338
1339 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1340 int stat;
1341
1342 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1343 chip->read_buf(mtd, p, eccsize);
1344
1345 if (chip->ecc.prepad) {
1346 chip->read_buf(mtd, oob, chip->ecc.prepad);
1347 oob += chip->ecc.prepad;
1348 }
1349
1350 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1351 chip->read_buf(mtd, oob, eccbytes);
1352 stat = chip->ecc.correct(mtd, p, oob, NULL);
1353
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001354 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001355 mtd->ecc_stats.failed++;
1356 else
1357 mtd->ecc_stats.corrected += stat;
1358
1359 oob += eccbytes;
1360
1361 if (chip->ecc.postpad) {
1362 chip->read_buf(mtd, oob, chip->ecc.postpad);
1363 oob += chip->ecc.postpad;
1364 }
1365 }
1366
1367 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001368 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001369 if (i)
1370 chip->read_buf(mtd, oob, i);
1371
1372 return 0;
1373}
1374
1375/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001376 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001377 * @chip: nand chip structure
1378 * @oob: oob destination address
1379 * @ops: oob ops structure
1380 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001381 */
1382static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001383 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001384{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001385 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001386
Brian Norris0612b9d2011-08-30 18:45:40 -07001387 case MTD_OPS_PLACE_OOB:
1388 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001389 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1390 return oob + len;
1391
Brian Norris0612b9d2011-08-30 18:45:40 -07001392 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001393 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001394 uint32_t boffs = 0, roffs = ops->ooboffs;
1395 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001396
Florian Fainellif8ac0412010-09-07 13:23:43 +02001397 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001398 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001399 if (unlikely(roffs)) {
1400 if (roffs >= free->length) {
1401 roffs -= free->length;
1402 continue;
1403 }
1404 boffs = free->offset + roffs;
1405 bytes = min_t(size_t, len,
1406 (free->length - roffs));
1407 roffs = 0;
1408 } else {
1409 bytes = min_t(size_t, len, free->length);
1410 boffs = free->offset;
1411 }
1412 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001413 oob += bytes;
1414 }
1415 return oob;
1416 }
1417 default:
1418 BUG();
1419 }
1420 return NULL;
1421}
1422
1423/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001424 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001425 * @mtd: MTD device structure
1426 * @from: offset to read from
1427 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001428 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001429 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001430 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001431static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1432 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001433{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001434 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001435 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001436 struct mtd_ecc_stats stats;
1437 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1438 int sndcmd = 1;
1439 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001441 uint32_t oobreadlen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07001442 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001443 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 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001474 if (unlikely(ops->mode == MTD_OPS_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);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001483 if (ret < 0) {
1484 if (!aligned)
1485 /* Invalidate page cache */
1486 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001487 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001488 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001489
1490 /* Transfer not aligned data */
1491 if (!aligned) {
Artem Bityutskiyc1194c72010-09-03 22:01:16 +03001492 if (!NAND_SUBPAGE_READ(chip) && !oob &&
Brian Norris6d77b9d2011-09-07 13:13:40 -07001493 !(mtd->ecc_stats.failed - stats.failed) &&
1494 (ops->mode != MTD_OPS_RAW))
Alexey Korolev3d459552008-05-15 17:23:18 +01001495 chip->pagebuf = realpage;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001496 else
1497 /* Invalidate page cache */
1498 chip->pagebuf = -1;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001499 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001501
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001502 buf += bytes;
1503
1504 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001505
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001506 int toread = min(oobreadlen, max_oobsize);
1507
1508 if (toread) {
1509 oob = nand_transfer_oob(chip,
1510 oob, ops, toread);
1511 oobreadlen -= toread;
1512 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001513 }
1514
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001515 if (!(chip->options & NAND_NO_READRDY)) {
1516 /*
1517 * Apply delay or wait for ready/busy pin. Do
1518 * this before the AUTOINCR check, so no
1519 * problems arise if a chip which does auto
1520 * increment is marked as NOAUTOINCR by the
1521 * board driver.
1522 */
1523 if (!chip->dev_ready)
1524 udelay(chip->chip_delay);
1525 else
1526 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001528 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001529 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001530 buf += bytes;
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001533 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001534
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001535 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001536 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Brian Norris8b6e50c2011-05-25 14:59:01 -07001538 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 col = 0;
1540 /* Increment page address */
1541 realpage++;
1542
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001543 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 /* Check, if we cross a chip boundary */
1545 if (!page) {
1546 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001547 chip->select_chip(mtd, -1);
1548 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001550
Brian Norris8b6e50c2011-05-25 14:59:01 -07001551 /*
1552 * Check, if the chip supports auto page increment or if we
1553 * have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001554 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001555 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001556 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001559 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001560 if (oob)
1561 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001563 if (ret)
1564 return ret;
1565
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001566 if (mtd->ecc_stats.failed - stats.failed)
1567 return -EBADMSG;
1568
1569 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001570}
1571
1572/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001573 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001574 * @mtd: MTD device structure
1575 * @from: offset to read from
1576 * @len: number of bytes to read
1577 * @retlen: pointer to variable to store the number of read bytes
1578 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001579 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001580 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001581 */
1582static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1583 size_t *retlen, uint8_t *buf)
1584{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001585 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07001586 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001587 int ret;
1588
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001589 /* Do not allow reads past end of device */
1590 if ((from + len) > mtd->size)
1591 return -EINVAL;
1592 if (!len)
1593 return 0;
1594
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001595 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001596
Brian Norris4a89ff82011-08-30 18:45:45 -07001597 ops.len = len;
1598 ops.datbuf = buf;
1599 ops.oobbuf = NULL;
Brian Norris23b1a992011-10-14 20:09:33 -07001600 ops.mode = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001601
Brian Norris4a89ff82011-08-30 18:45:45 -07001602 ret = nand_do_read_ops(mtd, from, &ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001603
Brian Norris4a89ff82011-08-30 18:45:45 -07001604 *retlen = ops.retlen;
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001605
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001606 nand_release_device(mtd);
1607
1608 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
1611/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001612 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001613 * @mtd: mtd info structure
1614 * @chip: nand chip info structure
1615 * @page: page number to read
1616 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001617 */
1618static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1619 int page, int sndcmd)
1620{
1621 if (sndcmd) {
1622 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1623 sndcmd = 0;
1624 }
1625 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1626 return sndcmd;
1627}
1628
1629/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001630 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001631 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001632 * @mtd: mtd info structure
1633 * @chip: nand chip info structure
1634 * @page: page number to read
1635 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001636 */
1637static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1638 int page, int sndcmd)
1639{
1640 uint8_t *buf = chip->oob_poi;
1641 int length = mtd->oobsize;
1642 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1643 int eccsize = chip->ecc.size;
1644 uint8_t *bufpoi = buf;
1645 int i, toread, sndrnd = 0, pos;
1646
1647 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1648 for (i = 0; i < chip->ecc.steps; i++) {
1649 if (sndrnd) {
1650 pos = eccsize + i * (eccsize + chunk);
1651 if (mtd->writesize > 512)
1652 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1653 else
1654 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1655 } else
1656 sndrnd = 1;
1657 toread = min_t(int, length, chunk);
1658 chip->read_buf(mtd, bufpoi, toread);
1659 bufpoi += toread;
1660 length -= toread;
1661 }
1662 if (length > 0)
1663 chip->read_buf(mtd, bufpoi, length);
1664
1665 return 1;
1666}
1667
1668/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001669 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001670 * @mtd: mtd info structure
1671 * @chip: nand chip info structure
1672 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001673 */
1674static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1675 int page)
1676{
1677 int status = 0;
1678 const uint8_t *buf = chip->oob_poi;
1679 int length = mtd->oobsize;
1680
1681 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1682 chip->write_buf(mtd, buf, length);
1683 /* Send command to program the OOB data */
1684 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1685
1686 status = chip->waitfunc(mtd, chip);
1687
Savin Zlobec0d420f92006-06-21 11:51:20 +02001688 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001689}
1690
1691/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001692 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001693 * with syndrome - only for large page flash
1694 * @mtd: mtd info structure
1695 * @chip: nand chip info structure
1696 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001697 */
1698static int nand_write_oob_syndrome(struct mtd_info *mtd,
1699 struct nand_chip *chip, int page)
1700{
1701 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1702 int eccsize = chip->ecc.size, length = mtd->oobsize;
1703 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1704 const uint8_t *bufpoi = chip->oob_poi;
1705
1706 /*
1707 * data-ecc-data-ecc ... ecc-oob
1708 * or
1709 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1710 */
1711 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1712 pos = steps * (eccsize + chunk);
1713 steps = 0;
1714 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001715 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001716
1717 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1718 for (i = 0; i < steps; i++) {
1719 if (sndcmd) {
1720 if (mtd->writesize <= 512) {
1721 uint32_t fill = 0xFFFFFFFF;
1722
1723 len = eccsize;
1724 while (len > 0) {
1725 int num = min_t(int, len, 4);
1726 chip->write_buf(mtd, (uint8_t *)&fill,
1727 num);
1728 len -= num;
1729 }
1730 } else {
1731 pos = eccsize + i * (eccsize + chunk);
1732 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1733 }
1734 } else
1735 sndcmd = 1;
1736 len = min_t(int, length, chunk);
1737 chip->write_buf(mtd, bufpoi, len);
1738 bufpoi += len;
1739 length -= len;
1740 }
1741 if (length > 0)
1742 chip->write_buf(mtd, bufpoi, length);
1743
1744 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1745 status = chip->waitfunc(mtd, chip);
1746
1747 return status & NAND_STATUS_FAIL ? -EIO : 0;
1748}
1749
1750/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001751 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001752 * @mtd: MTD device structure
1753 * @from: offset to read from
1754 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001756 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001758static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1759 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001761 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001762 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07001763 struct mtd_ecc_stats stats;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001764 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001765 int readlen = ops->ooblen;
1766 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001767 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Brian Norris289c0522011-07-19 10:06:09 -07001769 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05301770 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Brian Norris041e4572011-06-23 16:45:24 -07001772 stats = mtd->ecc_stats;
1773
Brian Norris0612b9d2011-08-30 18:45:40 -07001774 if (ops->mode == MTD_OPS_AUTO_OOB)
Vitaly Wool70145682006-11-03 18:20:38 +03001775 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001776 else
1777 len = mtd->oobsize;
1778
1779 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001780 pr_debug("%s: attempt to start read outside oob\n",
1781 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001782 return -EINVAL;
1783 }
1784
1785 /* Do not allow reads past end of device */
1786 if (unlikely(from >= mtd->size ||
1787 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1788 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001789 pr_debug("%s: attempt to read beyond end of device\n",
1790 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001791 return -EINVAL;
1792 }
Vitaly Wool70145682006-11-03 18:20:38 +03001793
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001794 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001795 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001797 /* Shift to get page */
1798 realpage = (int)(from >> chip->page_shift);
1799 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Florian Fainellif8ac0412010-09-07 13:23:43 +02001801 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001802 if (ops->mode == MTD_OPS_RAW)
Brian Norrisc46f6482011-08-30 18:45:38 -07001803 sndcmd = chip->ecc.read_oob_raw(mtd, chip, page, sndcmd);
1804 else
1805 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001806
1807 len = min(len, readlen);
1808 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001809
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001810 if (!(chip->options & NAND_NO_READRDY)) {
1811 /*
1812 * Apply delay or wait for ready/busy pin. Do this
1813 * before the AUTOINCR check, so no problems arise if a
1814 * chip which does auto increment is marked as
1815 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001816 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001817 if (!chip->dev_ready)
1818 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001819 else
1820 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001822
Vitaly Wool70145682006-11-03 18:20:38 +03001823 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001824 if (!readlen)
1825 break;
1826
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001827 /* Increment page address */
1828 realpage++;
1829
1830 page = realpage & chip->pagemask;
1831 /* Check, if we cross a chip boundary */
1832 if (!page) {
1833 chipnr++;
1834 chip->select_chip(mtd, -1);
1835 chip->select_chip(mtd, chipnr);
1836 }
1837
Brian Norris8b6e50c2011-05-25 14:59:01 -07001838 /*
1839 * Check, if the chip supports auto page increment or if we
1840 * have hit a block boundary.
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001841 */
1842 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1843 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845
Vitaly Wool70145682006-11-03 18:20:38 +03001846 ops->oobretlen = ops->ooblen;
Brian Norris041e4572011-06-23 16:45:24 -07001847
1848 if (mtd->ecc_stats.failed - stats.failed)
1849 return -EBADMSG;
1850
1851 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
1854/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001855 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001856 * @mtd: MTD device structure
1857 * @from: offset to read from
1858 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001860 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001862static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1863 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001865 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001866 int ret = -ENOTSUPP;
1867
1868 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001871 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07001872 pr_debug("%s: attempt to read beyond end of device\n",
1873 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return -EINVAL;
1875 }
1876
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001877 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Florian Fainellif8ac0412010-09-07 13:23:43 +02001879 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001880 case MTD_OPS_PLACE_OOB:
1881 case MTD_OPS_AUTO_OOB:
1882 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001883 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001884
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001885 default:
1886 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001889 if (!ops->datbuf)
1890 ret = nand_do_read_oob(mtd, from, ops);
1891 else
1892 ret = nand_do_read_ops(mtd, from, ops);
1893
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001894out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001896 return ret;
1897}
1898
1899
1900/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001901 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001902 * @mtd: mtd info structure
1903 * @chip: nand chip info structure
1904 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001905 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001906 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001907 */
1908static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1909 const uint8_t *buf)
1910{
1911 chip->write_buf(mtd, buf, mtd->writesize);
1912 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
1914
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001915/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001916 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001917 * @mtd: mtd info structure
1918 * @chip: nand chip info structure
1919 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001920 *
1921 * We need a special oob layout and handling even when ECC isn't checked.
1922 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001923static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1924 struct nand_chip *chip,
1925 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001926{
1927 int eccsize = chip->ecc.size;
1928 int eccbytes = chip->ecc.bytes;
1929 uint8_t *oob = chip->oob_poi;
1930 int steps, size;
1931
1932 for (steps = chip->ecc.steps; steps > 0; steps--) {
1933 chip->write_buf(mtd, buf, eccsize);
1934 buf += eccsize;
1935
1936 if (chip->ecc.prepad) {
1937 chip->write_buf(mtd, oob, chip->ecc.prepad);
1938 oob += chip->ecc.prepad;
1939 }
1940
1941 chip->read_buf(mtd, oob, eccbytes);
1942 oob += eccbytes;
1943
1944 if (chip->ecc.postpad) {
1945 chip->write_buf(mtd, oob, chip->ecc.postpad);
1946 oob += chip->ecc.postpad;
1947 }
1948 }
1949
1950 size = mtd->oobsize - (oob - chip->oob_poi);
1951 if (size)
1952 chip->write_buf(mtd, oob, size);
1953}
1954/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001955 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001956 * @mtd: mtd info structure
1957 * @chip: nand chip info structure
1958 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001959 */
1960static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1961 const uint8_t *buf)
1962{
1963 int i, eccsize = chip->ecc.size;
1964 int eccbytes = chip->ecc.bytes;
1965 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001966 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001967 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001968 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001969
Brian Norris7854d3f2011-06-23 14:12:08 -07001970 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001971 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1972 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001973
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001974 for (i = 0; i < chip->ecc.total; i++)
1975 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001976
Thomas Gleixner90424de2007-04-05 11:44:05 +02001977 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001978}
1979
1980/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001981 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001982 * @mtd: mtd info structure
1983 * @chip: nand chip info structure
1984 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001985 */
1986static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1987 const uint8_t *buf)
1988{
1989 int i, eccsize = chip->ecc.size;
1990 int eccbytes = chip->ecc.bytes;
1991 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001992 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001993 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001994 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001995
1996 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1997 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001998 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001999 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2000 }
2001
2002 for (i = 0; i < chip->ecc.total; i++)
2003 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2004
2005 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2006}
2007
2008/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002009 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002010 * @mtd: mtd info structure
2011 * @chip: nand chip info structure
2012 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002013 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002014 * The hw generator calculates the error syndrome automatically. Therefore we
2015 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002016 */
2017static void nand_write_page_syndrome(struct mtd_info *mtd,
2018 struct nand_chip *chip, const uint8_t *buf)
2019{
2020 int i, eccsize = chip->ecc.size;
2021 int eccbytes = chip->ecc.bytes;
2022 int eccsteps = chip->ecc.steps;
2023 const uint8_t *p = buf;
2024 uint8_t *oob = chip->oob_poi;
2025
2026 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2027
2028 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2029 chip->write_buf(mtd, p, eccsize);
2030
2031 if (chip->ecc.prepad) {
2032 chip->write_buf(mtd, oob, chip->ecc.prepad);
2033 oob += chip->ecc.prepad;
2034 }
2035
2036 chip->ecc.calculate(mtd, p, oob);
2037 chip->write_buf(mtd, oob, eccbytes);
2038 oob += eccbytes;
2039
2040 if (chip->ecc.postpad) {
2041 chip->write_buf(mtd, oob, chip->ecc.postpad);
2042 oob += chip->ecc.postpad;
2043 }
2044 }
2045
2046 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002047 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002048 if (i)
2049 chip->write_buf(mtd, oob, i);
2050}
2051
2052/**
David Woodhouse956e9442006-09-25 17:12:39 +01002053 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002054 * @mtd: MTD device structure
2055 * @chip: NAND chip descriptor
2056 * @buf: the data to write
2057 * @page: page number to write
2058 * @cached: cached programming
2059 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002060 */
2061static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002062 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002063{
2064 int status;
2065
2066 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2067
David Woodhouse956e9442006-09-25 17:12:39 +01002068 if (unlikely(raw))
2069 chip->ecc.write_page_raw(mtd, chip, buf);
2070 else
2071 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002072
2073 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002074 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002075 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002076 */
2077 cached = 0;
2078
2079 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2080
2081 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002082 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002083 /*
2084 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002085 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002086 */
2087 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2088 status = chip->errstat(mtd, chip, FL_WRITING, status,
2089 page);
2090
2091 if (status & NAND_STATUS_FAIL)
2092 return -EIO;
2093 } else {
2094 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002095 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002096 }
2097
2098#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2099 /* Send command to read back the data */
2100 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2101
2102 if (chip->verify_buf(mtd, buf, mtd->writesize))
2103 return -EIO;
2104#endif
2105 return 0;
2106}
2107
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002108/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002109 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002110 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002111 * @oob: oob data buffer
2112 * @len: oob data write length
2113 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002114 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002115static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2116 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002117{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002118 struct nand_chip *chip = mtd->priv;
2119
2120 /*
2121 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2122 * data from a previous OOB read.
2123 */
2124 memset(chip->oob_poi, 0xff, mtd->oobsize);
2125
Florian Fainellif8ac0412010-09-07 13:23:43 +02002126 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002127
Brian Norris0612b9d2011-08-30 18:45:40 -07002128 case MTD_OPS_PLACE_OOB:
2129 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002130 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2131 return oob + len;
2132
Brian Norris0612b9d2011-08-30 18:45:40 -07002133 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002134 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002135 uint32_t boffs = 0, woffs = ops->ooboffs;
2136 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002137
Florian Fainellif8ac0412010-09-07 13:23:43 +02002138 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002139 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002140 if (unlikely(woffs)) {
2141 if (woffs >= free->length) {
2142 woffs -= free->length;
2143 continue;
2144 }
2145 boffs = free->offset + woffs;
2146 bytes = min_t(size_t, len,
2147 (free->length - woffs));
2148 woffs = 0;
2149 } else {
2150 bytes = min_t(size_t, len, free->length);
2151 boffs = free->offset;
2152 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002153 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002154 oob += bytes;
2155 }
2156 return oob;
2157 }
2158 default:
2159 BUG();
2160 }
2161 return NULL;
2162}
2163
Florian Fainellif8ac0412010-09-07 13:23:43 +02002164#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002165
2166/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002167 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002168 * @mtd: MTD device structure
2169 * @to: offset to write to
2170 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002171 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002172 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002173 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002174static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2175 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002176{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002177 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002178 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002179 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002180
2181 uint32_t oobwritelen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07002182 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky782ce792010-02-22 20:39:36 +02002183 mtd->oobavail : mtd->oobsize;
2184
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002185 uint8_t *oob = ops->oobbuf;
2186 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002187 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002188
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002189 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002190 if (!writelen)
2191 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002192
Brian Norris8b6e50c2011-05-25 14:59:01 -07002193 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002194 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002195 pr_notice("%s: attempt to write non page aligned data\n",
2196 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002197 return -EINVAL;
2198 }
2199
Thomas Gleixner29072b92006-09-28 15:38:36 +02002200 column = to & (mtd->writesize - 1);
2201 subpage = column || (writelen & (mtd->writesize - 1));
2202
2203 if (subpage && oob)
2204 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002205
Thomas Gleixner6a930962006-06-28 00:11:45 +02002206 chipnr = (int)(to >> chip->chip_shift);
2207 chip->select_chip(mtd, chipnr);
2208
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002209 /* Check, if it is write protected */
2210 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002211 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002212
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002213 realpage = (int)(to >> chip->page_shift);
2214 page = realpage & chip->pagemask;
2215 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2216
2217 /* Invalidate the page cache, when we write to the cached page */
2218 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002219 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002220 chip->pagebuf = -1;
2221
Maxim Levitsky782ce792010-02-22 20:39:36 +02002222 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002223 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002224 return -EINVAL;
2225
Florian Fainellif8ac0412010-09-07 13:23:43 +02002226 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002227 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002228 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002229 uint8_t *wbuf = buf;
2230
Brian Norris8b6e50c2011-05-25 14:59:01 -07002231 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002232 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2233 cached = 0;
2234 bytes = min_t(int, bytes - column, (int) writelen);
2235 chip->pagebuf = -1;
2236 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2237 memcpy(&chip->buffers->databuf[column], buf, bytes);
2238 wbuf = chip->buffers->databuf;
2239 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002240
Maxim Levitsky782ce792010-02-22 20:39:36 +02002241 if (unlikely(oob)) {
2242 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002243 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002244 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002245 } else {
2246 /* We still need to erase leftover OOB data */
2247 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002248 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002249
Thomas Gleixner29072b92006-09-28 15:38:36 +02002250 ret = chip->write_page(mtd, chip, wbuf, page, cached,
Brian Norris0612b9d2011-08-30 18:45:40 -07002251 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002252 if (ret)
2253 break;
2254
2255 writelen -= bytes;
2256 if (!writelen)
2257 break;
2258
Thomas Gleixner29072b92006-09-28 15:38:36 +02002259 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002260 buf += bytes;
2261 realpage++;
2262
2263 page = realpage & chip->pagemask;
2264 /* Check, if we cross a chip boundary */
2265 if (!page) {
2266 chipnr++;
2267 chip->select_chip(mtd, -1);
2268 chip->select_chip(mtd, chipnr);
2269 }
2270 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002271
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002272 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002273 if (unlikely(oob))
2274 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002275 return ret;
2276}
2277
2278/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002279 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002280 * @mtd: MTD device structure
2281 * @to: offset to write to
2282 * @len: number of bytes to write
2283 * @retlen: pointer to variable to store the number of written bytes
2284 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002285 *
2286 * NAND write with ECC. Used when performing writes in interrupt context, this
2287 * may for example be called by mtdoops when writing an oops while in panic.
2288 */
2289static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2290 size_t *retlen, const uint8_t *buf)
2291{
2292 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002293 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002294 int ret;
2295
2296 /* Do not allow reads past end of device */
2297 if ((to + len) > mtd->size)
2298 return -EINVAL;
2299 if (!len)
2300 return 0;
2301
Brian Norris8b6e50c2011-05-25 14:59:01 -07002302 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002303 panic_nand_wait(mtd, chip, 400);
2304
Brian Norris8b6e50c2011-05-25 14:59:01 -07002305 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002306 panic_nand_get_device(chip, mtd, FL_WRITING);
2307
Brian Norris4a89ff82011-08-30 18:45:45 -07002308 ops.len = len;
2309 ops.datbuf = (uint8_t *)buf;
2310 ops.oobbuf = NULL;
Brian Norris23b1a992011-10-14 20:09:33 -07002311 ops.mode = 0;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002312
Brian Norris4a89ff82011-08-30 18:45:45 -07002313 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002314
Brian Norris4a89ff82011-08-30 18:45:45 -07002315 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002316 return ret;
2317}
2318
2319/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002320 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002321 * @mtd: MTD device structure
2322 * @to: offset to write to
2323 * @len: number of bytes to write
2324 * @retlen: pointer to variable to store the number of written bytes
2325 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002327 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002329static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002330 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002332 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002333 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002334 int ret;
2335
2336 /* Do not allow reads past end of device */
2337 if ((to + len) > mtd->size)
2338 return -EINVAL;
2339 if (!len)
2340 return 0;
2341
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002342 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002343
Brian Norris4a89ff82011-08-30 18:45:45 -07002344 ops.len = len;
2345 ops.datbuf = (uint8_t *)buf;
2346 ops.oobbuf = NULL;
Brian Norris23b1a992011-10-14 20:09:33 -07002347 ops.mode = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002348
Brian Norris4a89ff82011-08-30 18:45:45 -07002349 ret = nand_do_write_ops(mtd, to, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002350
Brian Norris4a89ff82011-08-30 18:45:45 -07002351 *retlen = ops.retlen;
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002352
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002353 nand_release_device(mtd);
2354
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002355 return ret;
2356}
2357
2358/**
2359 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002360 * @mtd: MTD device structure
2361 * @to: offset to write to
2362 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002363 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002364 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002365 */
2366static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2367 struct mtd_oob_ops *ops)
2368{
Adrian Hunter03736152007-01-31 17:58:29 +02002369 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002370 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Brian Norris289c0522011-07-19 10:06:09 -07002372 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302373 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Brian Norris0612b9d2011-08-30 18:45:40 -07002375 if (ops->mode == MTD_OPS_AUTO_OOB)
Adrian Hunter03736152007-01-31 17:58:29 +02002376 len = chip->ecc.layout->oobavail;
2377 else
2378 len = mtd->oobsize;
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002381 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002382 pr_debug("%s: attempt to write past end of page\n",
2383 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return -EINVAL;
2385 }
2386
Adrian Hunter03736152007-01-31 17:58:29 +02002387 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002388 pr_debug("%s: attempt to start write outside oob\n",
2389 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002390 return -EINVAL;
2391 }
2392
Jason Liu775adc32011-02-25 13:06:18 +08002393 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002394 if (unlikely(to >= mtd->size ||
2395 ops->ooboffs + ops->ooblen >
2396 ((mtd->size >> chip->page_shift) -
2397 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002398 pr_debug("%s: attempt to write beyond end of device\n",
2399 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002400 return -EINVAL;
2401 }
2402
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002403 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002404 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002406 /* Shift to get page */
2407 page = (int)(to >> chip->page_shift);
2408
2409 /*
2410 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2411 * of my DiskOnChip 2000 test units) will clear the whole data page too
2412 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2413 * it in the doc2000 driver in August 1999. dwmw2.
2414 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002415 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 /* Check, if it is write protected */
2418 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002419 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002422 if (page == chip->pagebuf)
2423 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002425 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002426
Brian Norris0612b9d2011-08-30 18:45:40 -07002427 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002428 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2429 else
2430 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002431
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002432 if (status)
2433 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Vitaly Wool70145682006-11-03 18:20:38 +03002435 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002437 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002438}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002440/**
2441 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002442 * @mtd: MTD device structure
2443 * @to: offset to write to
2444 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002445 */
2446static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2447 struct mtd_oob_ops *ops)
2448{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002449 struct nand_chip *chip = mtd->priv;
2450 int ret = -ENOTSUPP;
2451
2452 ops->retlen = 0;
2453
2454 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002455 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002456 pr_debug("%s: attempt to write beyond end of device\n",
2457 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002458 return -EINVAL;
2459 }
2460
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002461 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002462
Florian Fainellif8ac0412010-09-07 13:23:43 +02002463 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002464 case MTD_OPS_PLACE_OOB:
2465 case MTD_OPS_AUTO_OOB:
2466 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002467 break;
2468
2469 default:
2470 goto out;
2471 }
2472
2473 if (!ops->datbuf)
2474 ret = nand_do_write_oob(mtd, to, ops);
2475 else
2476 ret = nand_do_write_ops(mtd, to, ops);
2477
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002478out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002479 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 return ret;
2481}
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002484 * single_erase_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002485 * @mtd: MTD device structure
2486 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002488 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002490static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002492 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002494 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2495 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
2498/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002499 * multi_erase_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002500 * @mtd: MTD device structure
2501 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002503 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002505static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002507 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002509 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2510 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2511 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2512 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2513 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
2516/**
2517 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002518 * @mtd: MTD device structure
2519 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002521 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002523static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
David Woodhousee0c7d762006-05-13 18:07:53 +01002525 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002527
David A. Marlin30f464b2005-01-17 18:35:25 +00002528#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002530 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002531 * @mtd: MTD device structure
2532 * @instr: erase instruction
2533 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002535 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002537int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2538 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Adrian Hunter69423d92008-12-10 13:37:21 +00002540 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002541 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002542 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002543 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002544 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Brian Norris289c0522011-07-19 10:06:09 -07002546 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2547 __func__, (unsigned long long)instr->addr,
2548 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302550 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002553 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002556 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002559 page = (int)(instr->addr >> chip->page_shift);
2560 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002563 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002566 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 /* Check, if it is write protected */
2569 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002570 pr_debug("%s: device is write protected!\n",
2571 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 instr->state = MTD_ERASE_FAILED;
2573 goto erase_exit;
2574 }
2575
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002576 /*
2577 * If BBT requires refresh, set the BBT page mask to see if the BBT
2578 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2579 * can not be matched. This is also done when the bbt is actually
Brian Norris7854d3f2011-06-23 14:12:08 -07002580 * erased to avoid recursive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002581 */
2582 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2583 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 /* Loop through the pages */
2586 len = instr->len;
2587
2588 instr->state = MTD_ERASING;
2589
2590 while (len) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002591 /* Heck if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002592 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2593 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002594 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2595 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 instr->state = MTD_ERASE_FAILED;
2597 goto erase_exit;
2598 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002599
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002600 /*
2601 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002602 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002603 */
2604 if (page <= chip->pagebuf && chip->pagebuf <
2605 (page + pages_per_block))
2606 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002608 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002609
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002610 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002612 /*
2613 * See if operation failed and additional status checks are
2614 * available
2615 */
2616 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2617 status = chip->errstat(mtd, chip, FL_ERASING,
2618 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002621 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002622 pr_debug("%s: failed erase, page 0x%08x\n",
2623 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002625 instr->fail_addr =
2626 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 goto erase_exit;
2628 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002629
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002630 /*
2631 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002632 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002633 */
2634 if (bbt_masked_page != 0xffffffff &&
2635 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002636 rewrite_bbt[chipnr] =
2637 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002640 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 page += pages_per_block;
2642
2643 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002644 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002646 chip->select_chip(mtd, -1);
2647 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002648
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002649 /*
2650 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002651 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002652 */
2653 if (bbt_masked_page != 0xffffffff &&
2654 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2655 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2656 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 }
2658 }
2659 instr->state = MTD_ERASE_DONE;
2660
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002661erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 /* Deselect and wake up anyone waiting on the device */
2666 nand_release_device(mtd);
2667
David Woodhouse49defc02007-10-06 15:01:59 -04002668 /* Do call back function */
2669 if (!ret)
2670 mtd_erase_callback(instr);
2671
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002672 /*
2673 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002674 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002675 */
2676 if (bbt_masked_page == 0xffffffff || ret)
2677 return ret;
2678
2679 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2680 if (!rewrite_bbt[chipnr])
2681 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002682 /* Update the BBT for chip */
Brian Norris289c0522011-07-19 10:06:09 -07002683 pr_debug("%s: nand_update_bbt (%d:0x%0llx 0x%0x)\n",
2684 __func__, chipnr, rewrite_bbt[chipnr],
2685 chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002686 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002687 }
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 /* Return more or less happy */
2690 return ret;
2691}
2692
2693/**
2694 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002695 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002697 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002699static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002701 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Brian Norris289c0522011-07-19 10:06:09 -07002703 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
2705 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002706 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002708 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002712 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002713 * @mtd: MTD device structure
2714 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002716static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
2718 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002719 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002721
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002722 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723}
2724
2725/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002726 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002727 * @mtd: MTD device structure
2728 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002730static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002732 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 int ret;
2734
Florian Fainellif8ac0412010-09-07 13:23:43 +02002735 ret = nand_block_isbad(mtd, ofs);
2736 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002737 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (ret > 0)
2739 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002740 return ret;
2741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002743 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744}
2745
2746/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002747 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002748 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002749 */
2750static int nand_suspend(struct mtd_info *mtd)
2751{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002753
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002754 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002755}
2756
2757/**
2758 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002759 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002760 */
2761static void nand_resume(struct mtd_info *mtd)
2762{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002763 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002764
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002765 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002766 nand_release_device(mtd);
2767 else
Brian Norrisd0370212011-07-19 10:06:08 -07002768 pr_err("%s called for a chip which is not in suspended state\n",
2769 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002770}
2771
Brian Norris8b6e50c2011-05-25 14:59:01 -07002772/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002773static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002774{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002776 if (!chip->chip_delay)
2777 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002780 if (chip->cmdfunc == NULL)
2781 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002784 if (chip->waitfunc == NULL)
2785 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002787 if (!chip->select_chip)
2788 chip->select_chip = nand_select_chip;
2789 if (!chip->read_byte)
2790 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2791 if (!chip->read_word)
2792 chip->read_word = nand_read_word;
2793 if (!chip->block_bad)
2794 chip->block_bad = nand_block_bad;
2795 if (!chip->block_markbad)
2796 chip->block_markbad = nand_default_block_markbad;
2797 if (!chip->write_buf)
2798 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2799 if (!chip->read_buf)
2800 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2801 if (!chip->verify_buf)
2802 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2803 if (!chip->scan_bbt)
2804 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002805
2806 if (!chip->controller) {
2807 chip->controller = &chip->hwcontrol;
2808 spin_lock_init(&chip->controller->lock);
2809 init_waitqueue_head(&chip->controller->wq);
2810 }
2811
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002812}
2813
Brian Norris8b6e50c2011-05-25 14:59:01 -07002814/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002815static void sanitize_string(uint8_t *s, size_t len)
2816{
2817 ssize_t i;
2818
Brian Norris8b6e50c2011-05-25 14:59:01 -07002819 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002820 s[len - 1] = 0;
2821
Brian Norris8b6e50c2011-05-25 14:59:01 -07002822 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002823 for (i = 0; i < len - 1; i++) {
2824 if (s[i] < ' ' || s[i] > 127)
2825 s[i] = '?';
2826 }
2827
Brian Norris8b6e50c2011-05-25 14:59:01 -07002828 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002829 strim(s);
2830}
2831
2832static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2833{
2834 int i;
2835 while (len--) {
2836 crc ^= *p++ << 8;
2837 for (i = 0; i < 8; i++)
2838 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2839 }
2840
2841 return crc;
2842}
2843
2844/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002845 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002846 */
2847static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002848 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002849{
2850 struct nand_onfi_params *p = &chip->onfi_params;
2851 int i;
2852 int val;
2853
Brian Norris7854d3f2011-06-23 14:12:08 -07002854 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002855 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2856 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2857 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2858 return 0;
2859
Brian Norris9a4d4d62011-07-19 10:06:07 -07002860 pr_info("ONFI flash detected\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002861 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2862 for (i = 0; i < 3; i++) {
2863 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2864 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2865 le16_to_cpu(p->crc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002866 pr_info("ONFI param page %d valid\n", i);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002867 break;
2868 }
2869 }
2870
2871 if (i == 3)
2872 return 0;
2873
Brian Norris8b6e50c2011-05-25 14:59:01 -07002874 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002875 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002876 if (val & (1 << 5))
2877 chip->onfi_version = 23;
2878 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002879 chip->onfi_version = 22;
2880 else if (val & (1 << 3))
2881 chip->onfi_version = 21;
2882 else if (val & (1 << 2))
2883 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002884 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002885 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002886 else
2887 chip->onfi_version = 0;
2888
2889 if (!chip->onfi_version) {
Brian Norrisd0370212011-07-19 10:06:08 -07002890 pr_info("%s: unsupported ONFI version: %d\n", __func__, val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002891 return 0;
2892 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002893
2894 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2895 sanitize_string(p->model, sizeof(p->model));
2896 if (!mtd->name)
2897 mtd->name = p->model;
2898 mtd->writesize = le32_to_cpu(p->byte_per_page);
2899 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2900 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002901 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002902 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002903 if (le16_to_cpu(p->features) & 1)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002904 *busw = NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002905
2906 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2907 chip->options |= (NAND_NO_READRDY |
2908 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2909
2910 return 1;
2911}
2912
2913/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002914 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002915 */
2916static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002917 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002918 int busw,
2919 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002920 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002921{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002922 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002923 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002924 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002927 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Karl Beldanef89a882008-09-15 14:37:29 +02002929 /*
2930 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002931 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002932 */
2933 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002936 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002939 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002940 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Brian Norris8b6e50c2011-05-25 14:59:01 -07002942 /*
2943 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002944 * interface concerns can cause random data which looks like a
2945 * possibly credible NAND flash to appear. If the two results do
2946 * not match, ignore the device completely.
2947 */
2948
2949 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2950
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002951 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002952 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002953
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002954 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002955 pr_info("%s: second ID read did not match "
Brian Norrisd0370212011-07-19 10:06:08 -07002956 "%02x,%02x against %02x,%02x\n", __func__,
2957 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002958 return ERR_PTR(-ENODEV);
2959 }
2960
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002961 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002962 type = nand_flash_ids;
2963
2964 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002965 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002966 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002967
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002968 chip->onfi_version = 0;
2969 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002970 /* Check is chip is ONFI compliant */
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002971 ret = nand_flash_detect_onfi(mtd, chip, &busw);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002972 if (ret)
2973 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002974 }
2975
2976 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2977
2978 /* Read entire ID string */
2979
2980 for (i = 0; i < 8; i++)
2981 id_data[i] = chip->read_byte(mtd);
2982
David Woodhouse5e81e882010-02-26 18:32:56 +00002983 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002984 return ERR_PTR(-ENODEV);
2985
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002986 if (!mtd->name)
2987 mtd->name = type->name;
2988
Adrian Hunter69423d92008-12-10 13:37:21 +00002989 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002990
Huang Shijie12a40a52010-09-27 10:43:53 +08002991 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002992 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002993 busw = chip->init_size(mtd, chip, id_data);
2994 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002995 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002996 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002997 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002998 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002999 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003000
Kevin Cernekee426c4572010-05-04 20:58:03 -07003001 /*
3002 * Field definitions are in the following datasheets:
3003 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07003004 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003005 *
3006 * Check for wraparound + Samsung ID + nonzero 6th byte
3007 * to decide what to do.
3008 */
3009 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
3010 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07003011 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07003012 id_data[5] != 0x00) {
3013 /* Calc pagesize */
3014 mtd->writesize = 2048 << (extid & 0x03);
3015 extid >>= 2;
3016 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07003017 switch (extid & 0x03) {
3018 case 1:
3019 mtd->oobsize = 128;
3020 break;
3021 case 2:
3022 mtd->oobsize = 218;
3023 break;
3024 case 3:
3025 mtd->oobsize = 400;
3026 break;
3027 default:
3028 mtd->oobsize = 436;
3029 break;
3030 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003031 extid >>= 2;
3032 /* Calc blocksize */
3033 mtd->erasesize = (128 * 1024) <<
3034 (((extid >> 1) & 0x04) | (extid & 0x03));
3035 busw = 0;
3036 } else {
3037 /* Calc pagesize */
3038 mtd->writesize = 1024 << (extid & 0x03);
3039 extid >>= 2;
3040 /* Calc oobsize */
3041 mtd->oobsize = (8 << (extid & 0x01)) *
3042 (mtd->writesize >> 9);
3043 extid >>= 2;
3044 /* Calc blocksize. Blocksize is multiples of 64KiB */
3045 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3046 extid >>= 2;
3047 /* Get buswidth information */
3048 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3049 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003050 } else {
3051 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003052 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003053 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003054 mtd->erasesize = type->erasesize;
3055 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003056 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003057 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003058
3059 /*
3060 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3061 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003062 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003063 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3064 */
3065 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3066 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3067 id_data[7] == 0x00 && mtd->writesize == 512) {
3068 mtd->erasesize = 128 * 1024;
3069 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3070 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003071 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003072 /* Get chip options, preserve non chip based options */
3073 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3074 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3075
Brian Norris8b6e50c2011-05-25 14:59:01 -07003076 /*
3077 * Check if chip is not a Samsung device. Do not clear the
3078 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003079 */
3080 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3081 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3082ident_done:
3083
3084 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003085 * Set chip as a default. Board drivers can override it, if necessary.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003086 */
3087 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003088
3089 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003090 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003091 if (nand_manuf_ids[maf_idx].id == *maf_id)
3092 break;
3093 }
3094
3095 /*
3096 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003097 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003098 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003099 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003100 pr_info("NAND device: Manufacturer ID:"
Brian Norrisd0370212011-07-19 10:06:08 -07003101 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
3102 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Brian Norris9a4d4d62011-07-19 10:06:07 -07003103 pr_warn("NAND bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003104 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3105 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003106 return ERR_PTR(-EINVAL);
3107 }
3108
3109 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003110 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003111 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003112 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003113
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003114 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003115 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003116 if (chip->chipsize & 0xffffffff)
3117 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003118 else {
3119 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3120 chip->chip_shift += 32 - 1;
3121 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003122
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003123 chip->badblockbits = 8;
3124
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003125 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003126 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003127 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003128 else
3129 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003130
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003131 /*
3132 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003133 * on Samsung and Hynix MLC devices; stored in first two pages
3134 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003135 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3136 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003137 */
3138 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3139 (*maf_id == NAND_MFR_SAMSUNG ||
3140 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003141 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003142 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3143 (*maf_id == NAND_MFR_SAMSUNG ||
3144 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003145 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003146 *maf_id == NAND_MFR_AMD)) ||
3147 (mtd->writesize == 2048 &&
3148 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003149 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003150
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003151 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003152 if (chip->options & NAND_4PAGE_ARRAY)
3153 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003154 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003155 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003156
Brian Norris8b6e50c2011-05-25 14:59:01 -07003157 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003158 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3159 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003160
Brian Norris9a4d4d62011-07-19 10:06:07 -07003161 pr_info("NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003162 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3163 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003164 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165
3166 return type;
3167}
3168
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003169/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003170 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003171 * @mtd: MTD device structure
3172 * @maxchips: number of chips to scan for
3173 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003174 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003175 * This is the first phase of the normal nand_scan() function. It reads the
3176 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003177 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003178 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003179 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003180int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3181 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003182{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003183 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003184 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003185 struct nand_flash_dev *type;
3186
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003187 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003188 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003189 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003190 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003191
3192 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003193 type = nand_get_flash_type(mtd, chip, busw,
3194 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003195
3196 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003197 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07003198 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003199 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003200 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 }
3202
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003203 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003204 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003205 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003206 /* See comment in nand_get_flash_type for reset */
3207 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003209 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003211 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003212 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 break;
3214 }
3215 if (i > 1)
Brian Norris9a4d4d62011-07-19 10:06:07 -07003216 pr_info("%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003219 chip->numchips = i;
3220 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
David Woodhouse3b85c322006-09-25 17:06:53 +01003222 return 0;
3223}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003224EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003225
3226
3227/**
3228 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003229 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003230 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003231 * This is the second phase of the normal nand_scan() function. It fills out
3232 * all the uninitialized function pointers with the defaults and scans for a
3233 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003234 */
3235int nand_scan_tail(struct mtd_info *mtd)
3236{
3237 int i;
3238 struct nand_chip *chip = mtd->priv;
3239
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003240 if (!(chip->options & NAND_OWN_BUFFERS))
3241 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3242 if (!chip->buffers)
3243 return -ENOMEM;
3244
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003245 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003246 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003247
3248 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003249 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003250 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003251 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003252 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003254 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 break;
3256 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003257 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 break;
3259 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003260 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003262 case 128:
3263 chip->ecc.layout = &nand_oob_128;
3264 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003266 pr_warn("No oob scheme defined for oobsize %d\n",
3267 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 BUG();
3269 }
3270 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003271
David Woodhouse956e9442006-09-25 17:12:39 +01003272 if (!chip->write_page)
3273 chip->write_page = nand_write_page;
3274
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003275 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003276 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003277 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003278 */
David Woodhouse956e9442006-09-25 17:12:39 +01003279
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003280 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003281 case NAND_ECC_HW_OOB_FIRST:
3282 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3283 if (!chip->ecc.calculate || !chip->ecc.correct ||
3284 !chip->ecc.hwctl) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003285 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003286 "hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003287 BUG();
3288 }
3289 if (!chip->ecc.read_page)
3290 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3291
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003292 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003293 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003294 if (!chip->ecc.read_page)
3295 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003296 if (!chip->ecc.write_page)
3297 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003298 if (!chip->ecc.read_page_raw)
3299 chip->ecc.read_page_raw = nand_read_page_raw;
3300 if (!chip->ecc.write_page_raw)
3301 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003302 if (!chip->ecc.read_oob)
3303 chip->ecc.read_oob = nand_read_oob_std;
3304 if (!chip->ecc.write_oob)
3305 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003306
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003307 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003308 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3309 !chip->ecc.hwctl) &&
3310 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003311 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003312 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003313 chip->ecc.write_page == nand_write_page_hwecc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003314 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003315 "hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003316 BUG();
3317 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003318 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003319 if (!chip->ecc.read_page)
3320 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003321 if (!chip->ecc.write_page)
3322 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003323 if (!chip->ecc.read_page_raw)
3324 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3325 if (!chip->ecc.write_page_raw)
3326 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003327 if (!chip->ecc.read_oob)
3328 chip->ecc.read_oob = nand_read_oob_syndrome;
3329 if (!chip->ecc.write_oob)
3330 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003331
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003332 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003333 break;
Brian Norris9a4d4d62011-07-19 10:06:07 -07003334 pr_warn("%d byte HW ECC not possible on "
Brian Norrisd0370212011-07-19 10:06:08 -07003335 "%d byte page size, fallback to SW ECC\n",
3336 chip->ecc.size, mtd->writesize);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003337 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003339 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003340 chip->ecc.calculate = nand_calculate_ecc;
3341 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003342 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003343 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003344 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003345 chip->ecc.read_page_raw = nand_read_page_raw;
3346 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003347 chip->ecc.read_oob = nand_read_oob_std;
3348 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003349 if (!chip->ecc.size)
3350 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003351 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003353
Ivan Djelic193bd402011-03-11 11:05:33 +01003354 case NAND_ECC_SOFT_BCH:
3355 if (!mtd_nand_has_bch()) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003356 pr_warn("CONFIG_MTD_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003357 BUG();
3358 }
3359 chip->ecc.calculate = nand_bch_calculate_ecc;
3360 chip->ecc.correct = nand_bch_correct_data;
3361 chip->ecc.read_page = nand_read_page_swecc;
3362 chip->ecc.read_subpage = nand_read_subpage;
3363 chip->ecc.write_page = nand_write_page_swecc;
3364 chip->ecc.read_page_raw = nand_read_page_raw;
3365 chip->ecc.write_page_raw = nand_write_page_raw;
3366 chip->ecc.read_oob = nand_read_oob_std;
3367 chip->ecc.write_oob = nand_write_oob_std;
3368 /*
3369 * Board driver should supply ecc.size and ecc.bytes values to
3370 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003371 * for details. Otherwise, default to 4 bits for large page
3372 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003373 */
3374 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3375 chip->ecc.size = 512;
3376 chip->ecc.bytes = 7;
3377 }
3378 chip->ecc.priv = nand_bch_init(mtd,
3379 chip->ecc.size,
3380 chip->ecc.bytes,
3381 &chip->ecc.layout);
3382 if (!chip->ecc.priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003383 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003384 BUG();
3385 }
3386 break;
3387
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003388 case NAND_ECC_NONE:
Brian Norris9a4d4d62011-07-19 10:06:07 -07003389 pr_warn("NAND_ECC_NONE selected by board driver. "
Brian Norrisd0370212011-07-19 10:06:08 -07003390 "This is not recommended!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003391 chip->ecc.read_page = nand_read_page_raw;
3392 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003393 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003394 chip->ecc.read_page_raw = nand_read_page_raw;
3395 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003396 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003397 chip->ecc.size = mtd->writesize;
3398 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003402 pr_warn("Invalid NAND_ECC_MODE %d\n", chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003403 BUG();
3404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Brian Norris9ce244b2011-08-30 18:45:37 -07003406 /* For many systems, the standard OOB write also works for raw */
Brian Norrisc46f6482011-08-30 18:45:38 -07003407 if (!chip->ecc.read_oob_raw)
3408 chip->ecc.read_oob_raw = chip->ecc.read_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07003409 if (!chip->ecc.write_oob_raw)
3410 chip->ecc.write_oob_raw = chip->ecc.write_oob;
3411
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003412 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003413 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003414 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003415 */
3416 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003417 for (i = 0; chip->ecc.layout->oobfree[i].length
3418 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003419 chip->ecc.layout->oobavail +=
3420 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003421 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003422
3423 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003424 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003425 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003426 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003427 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003428 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003429 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003430 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003432 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003433
Brian Norris8b6e50c2011-05-25 14:59:01 -07003434 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003435 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3436 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003437 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003438 case 2:
3439 mtd->subpage_sft = 1;
3440 break;
3441 case 4:
3442 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003443 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003444 mtd->subpage_sft = 2;
3445 break;
3446 }
3447 }
3448 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3449
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003450 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003451 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
3453 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003454 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003457 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 /* Fill in remaining MTD driver data */
3460 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003461 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3462 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 mtd->erase = nand_erase;
3464 mtd->point = NULL;
3465 mtd->unpoint = NULL;
3466 mtd->read = nand_read;
3467 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003468 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 mtd->read_oob = nand_read_oob;
3470 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 mtd->sync = nand_sync;
3472 mtd->lock = NULL;
3473 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003474 mtd->suspend = nand_suspend;
3475 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 mtd->block_isbad = nand_block_isbad;
3477 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003478 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003480 /* propagate ecc.layout to mtd_info */
3481 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003483 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003484 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003485 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003488 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003490EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Brian Norris8b6e50c2011-05-25 14:59:01 -07003492/*
3493 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003494 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003495 * to call us from in-kernel code if the core NAND support is modular.
3496 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003497#ifdef MODULE
3498#define caller_is_module() (1)
3499#else
3500#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003501 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003502#endif
3503
3504/**
3505 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003506 * @mtd: MTD device structure
3507 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003508 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003509 * This fills out all the uninitialized function pointers with the defaults.
3510 * The flash ID is read and the mtd/chip structures are filled with the
3511 * appropriate values. The mtd->owner field must be set to the module of the
3512 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003513 */
3514int nand_scan(struct mtd_info *mtd, int maxchips)
3515{
3516 int ret;
3517
3518 /* Many callers got this wrong, so check for it for a while... */
3519 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07003520 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003521 BUG();
3522 }
3523
David Woodhouse5e81e882010-02-26 18:32:56 +00003524 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003525 if (!ret)
3526 ret = nand_scan_tail(mtd);
3527 return ret;
3528}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003529EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003532 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003533 * @mtd: MTD device structure
3534 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003535void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003537 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538
Ivan Djelic193bd402011-03-11 11:05:33 +01003539 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3540 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3541
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003542 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
Jesper Juhlfa671642005-11-07 01:01:27 -08003544 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003545 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003546 if (!(chip->options & NAND_OWN_BUFFERS))
3547 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003548
3549 /* Free bad block descriptor memory */
3550 if (chip->badblock_pattern && chip->badblock_pattern->options
3551 & NAND_BBT_DYNAMICSTRUCT)
3552 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553}
David Woodhousee0c7d762006-05-13 18:07:53 +01003554EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003555
3556static int __init nand_base_init(void)
3557{
3558 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3559 return 0;
3560}
3561
3562static void __exit nand_base_exit(void)
3563{
3564 led_trigger_unregister_simple(nand_led_trigger);
3565}
3566
3567module_init(nand_base_init);
3568module_exit(nand_base_exit);
3569
David Woodhousee0c7d762006-05-13 18:07:53 +01003570MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003571MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3572MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003573MODULE_DESCRIPTION("Generic NAND flash driver code");