blob: c9767b511dfe40472fcb8caba89b7ef860b5c439 [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 Norris02ed70b2010-07-21 16:53:47 -0700423 do {
Brian Norris4a89ff82011-08-30 18:45:45 -0700424 ret = nand_do_write_oob(mtd, ofs, &ops);
Brian Norris02ed70b2010-07-21 16:53:47 -0700425
Brian Norris02ed70b2010-07-21 16:53:47 -0700426 i++;
427 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700428 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700429 i < 2);
430
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300431 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200432 }
433 if (!ret)
434 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300435
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200436 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700441 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700443 * Check, if the device is write protected. The function expects, that the
444 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100446static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200448 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200449
Brian Norris8b6e50c2011-05-25 14:59:01 -0700450 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200451 if (chip->options & NAND_BROKEN_XD)
452 return 0;
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200455 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
456 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459/**
460 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700461 * @mtd: MTD device structure
462 * @ofs: offset from device start
463 * @getchip: 0, if the chip is already selected
464 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 * Check, if the block is bad. Either by reading the bad block table or
467 * calling of the scan function.
468 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200469static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
470 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200472 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000473
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200474 if (!chip->bbt)
475 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100478 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200481/**
482 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700483 * @mtd: MTD device structure
484 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200485 *
486 * Helper function for nand_wait_ready used when needing to wait in interrupt
487 * context.
488 */
489static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
490{
491 struct nand_chip *chip = mtd->priv;
492 int i;
493
494 /* Wait for the device to get ready */
495 for (i = 0; i < timeo; i++) {
496 if (chip->dev_ready(mtd))
497 break;
498 touch_softlockup_watchdog();
499 mdelay(1);
500 }
501}
502
Brian Norris7854d3f2011-06-23 14:12:08 -0700503/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100504void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000505{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200506 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100507 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000508
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200509 /* 400ms timeout */
510 if (in_interrupt() || oops_in_progress)
511 return panic_nand_wait_ready(mtd, 400);
512
Richard Purdie8fe833c2006-03-31 02:31:14 -0800513 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700514 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000515 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200516 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800517 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700518 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000519 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800520 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000521}
David Woodhouse4b648b02006-09-25 17:05:24 +0100522EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/**
525 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700526 * @mtd: MTD device structure
527 * @command: the command to be sent
528 * @column: the column address for this command, -1 if none
529 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700531 * Send command to NAND device. This function is used for small page devices
532 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200534static void nand_command(struct mtd_info *mtd, unsigned int command,
535 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200537 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200538 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Brian Norris8b6e50c2011-05-25 14:59:01 -0700540 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (command == NAND_CMD_SEQIN) {
542 int readcmd;
543
Joern Engel28318772006-05-22 23:18:05 +0200544 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200546 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 readcmd = NAND_CMD_READOOB;
548 } else if (column < 256) {
549 /* First 256 bytes --> READ0 */
550 readcmd = NAND_CMD_READ0;
551 } else {
552 column -= 256;
553 readcmd = NAND_CMD_READ1;
554 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200555 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200556 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200558 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Brian Norris8b6e50c2011-05-25 14:59:01 -0700560 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200561 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
562 /* Serially input address */
563 if (column != -1) {
564 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200565 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200566 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200567 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200568 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200570 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200571 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200572 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200573 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200574 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200575 if (chip->chipsize > (32 << 20))
576 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200577 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200578 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000579
580 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700581 * Program and erase have their own busy handlers status and sequential
582 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100583 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 case NAND_CMD_PAGEPROG:
587 case NAND_CMD_ERASE1:
588 case NAND_CMD_ERASE2:
589 case NAND_CMD_SEQIN:
590 case NAND_CMD_STATUS:
591 return;
592
593 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200594 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200596 udelay(chip->chip_delay);
597 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200598 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200599 chip->cmd_ctrl(mtd,
600 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200601 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
602 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return;
604
David Woodhousee0c7d762006-05-13 18:07:53 +0100605 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000607 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * If we don't have access to the busy pin, we apply the given
609 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100610 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200611 if (!chip->dev_ready) {
612 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700616 /*
617 * Apply this short delay always to ensure that we do wait tWB in
618 * any case on any machine.
619 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100620 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000621
622 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/**
626 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700627 * @mtd: MTD device structure
628 * @command: the command to be sent
629 * @column: the column address for this command, -1 if none
630 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200632 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700633 * devices. We don't have the separate regions as we have in the small page
634 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200636static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
637 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200639 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /* Emulate NAND_CMD_READOOB */
642 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200643 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 command = NAND_CMD_READ0;
645 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000646
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200647 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200648 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200649 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200652 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* Serially input address */
655 if (column != -1) {
656 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200657 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200659 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200660 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200661 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200664 chip->cmd_ctrl(mtd, page_addr, ctrl);
665 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200666 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200668 if (chip->chipsize > (128 << 20))
669 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200670 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200673 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000674
675 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700676 * Program and erase have their own busy handlers status, sequential
677 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000678 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 case NAND_CMD_CACHEDPROG:
682 case NAND_CMD_PAGEPROG:
683 case NAND_CMD_ERASE1:
684 case NAND_CMD_ERASE2:
685 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200686 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000688 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return;
690
David A. Marlin30f464b2005-01-17 18:35:25 +0000691 case NAND_CMD_STATUS_ERROR:
692 case NAND_CMD_STATUS_ERROR0:
693 case NAND_CMD_STATUS_ERROR1:
694 case NAND_CMD_STATUS_ERROR2:
695 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700696 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200697 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000698 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200701 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200703 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200704 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
705 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
706 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
707 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200708 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
709 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return;
711
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200712 case NAND_CMD_RNDOUT:
713 /* No ready / busy check necessary */
714 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
715 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
716 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
717 NAND_NCE | NAND_CTRL_CHANGE);
718 return;
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200721 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
722 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
723 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
724 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000725
David Woodhousee0c7d762006-05-13 18:07:53 +0100726 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000728 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700730 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100731 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200732 if (!chip->dev_ready) {
733 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000737
Brian Norris8b6e50c2011-05-25 14:59:01 -0700738 /*
739 * Apply this short delay always to ensure that we do wait tWB in
740 * any case on any machine.
741 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100742 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000743
744 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200748 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700749 * @chip: the nand chip descriptor
750 * @mtd: MTD device structure
751 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200752 *
753 * Used when in panic, no locks are taken.
754 */
755static void panic_nand_get_device(struct nand_chip *chip,
756 struct mtd_info *mtd, int new_state)
757{
Brian Norris7854d3f2011-06-23 14:12:08 -0700758 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200759 chip->controller->active = chip;
760 chip->state = new_state;
761}
762
763/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700765 * @chip: the nand chip descriptor
766 * @mtd: MTD device structure
767 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 *
769 * Get the device and lock it for exclusive access
770 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200771static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200772nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200774 spinlock_t *lock = &chip->controller->lock;
775 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100776 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200777retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100778 spin_lock(lock);
779
vimal singhb8b3ee92009-07-09 20:41:22 +0530780 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200781 if (!chip->controller->active)
782 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200783
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200784 if (chip->controller->active == chip && chip->state == FL_READY) {
785 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100786 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100787 return 0;
788 }
789 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800790 if (chip->controller->active->state == FL_PM_SUSPENDED) {
791 chip->state = FL_PM_SUSPENDED;
792 spin_unlock(lock);
793 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800794 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100795 }
796 set_current_state(TASK_UNINTERRUPTIBLE);
797 add_wait_queue(wq, &wait);
798 spin_unlock(lock);
799 schedule();
800 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto retry;
802}
803
804/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700805 * panic_nand_wait - [GENERIC] wait until the command is done
806 * @mtd: MTD device structure
807 * @chip: NAND chip structure
808 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200809 *
810 * Wait for command done. This is a helper function for nand_wait used when
811 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400812 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200813 */
814static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
815 unsigned long timeo)
816{
817 int i;
818 for (i = 0; i < timeo; i++) {
819 if (chip->dev_ready) {
820 if (chip->dev_ready(mtd))
821 break;
822 } else {
823 if (chip->read_byte(mtd) & NAND_STATUS_READY)
824 break;
825 }
826 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200827 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200828}
829
830/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700831 * nand_wait - [DEFAULT] wait until the command is done
832 * @mtd: MTD device structure
833 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700835 * Wait for command done. This applies to erase and program only. Erase can
836 * take up to 400ms and program up to 20ms according to general NAND and
837 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700838 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200839static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841
David Woodhousee0c7d762006-05-13 18:07:53 +0100842 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200843 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100846 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100848 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Richard Purdie8fe833c2006-03-31 02:31:14 -0800850 led_trigger_event(nand_led_trigger, LED_FULL);
851
Brian Norris8b6e50c2011-05-25 14:59:01 -0700852 /*
853 * Apply this short delay always to ensure that we do wait tWB in any
854 * case on any machine.
855 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100856 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200858 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
859 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000860 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200861 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200863 if (in_interrupt() || oops_in_progress)
864 panic_nand_wait(mtd, chip, timeo);
865 else {
866 while (time_before(jiffies, timeo)) {
867 if (chip->dev_ready) {
868 if (chip->dev_ready(mtd))
869 break;
870 } else {
871 if (chip->read_byte(mtd) & NAND_STATUS_READY)
872 break;
873 }
874 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800877 led_trigger_event(nand_led_trigger, LED_OFF);
878
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200879 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return status;
881}
882
883/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700884 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700885 * @mtd: mtd info
886 * @ofs: offset to start unlock from
887 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700888 * @invert: when = 0, unlock the range of blocks within the lower and
889 * upper boundary address
890 * when = 1, unlock the range of blocks outside the boundaries
891 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530892 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700893 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530894 */
895static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
896 uint64_t len, int invert)
897{
898 int ret = 0;
899 int status, page;
900 struct nand_chip *chip = mtd->priv;
901
902 /* Submit address of first page to unlock */
903 page = ofs >> chip->page_shift;
904 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
905
906 /* Submit address of last page to unlock */
907 page = (ofs + len) >> chip->page_shift;
908 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
909 (page | invert) & chip->pagemask);
910
911 /* Call wait ready function */
912 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530913 /* See if device thinks it succeeded */
914 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -0700915 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530916 __func__, status);
917 ret = -EIO;
918 }
919
920 return ret;
921}
922
923/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700924 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700925 * @mtd: mtd info
926 * @ofs: offset to start unlock from
927 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530928 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700929 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530930 */
931int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
932{
933 int ret = 0;
934 int chipnr;
935 struct nand_chip *chip = mtd->priv;
936
Brian Norris289c0522011-07-19 10:06:09 -0700937 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530938 __func__, (unsigned long long)ofs, len);
939
940 if (check_offs_len(mtd, ofs, len))
941 ret = -EINVAL;
942
943 /* Align to last block address if size addresses end of the device */
944 if (ofs + len == mtd->size)
945 len -= mtd->erasesize;
946
947 nand_get_device(chip, mtd, FL_UNLOCKING);
948
949 /* Shift to get chip number */
950 chipnr = ofs >> chip->chip_shift;
951
952 chip->select_chip(mtd, chipnr);
953
954 /* Check, if it is write protected */
955 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700956 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530957 __func__);
958 ret = -EIO;
959 goto out;
960 }
961
962 ret = __nand_unlock(mtd, ofs, len, 0);
963
964out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530965 nand_release_device(mtd);
966
967 return ret;
968}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200969EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530970
971/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700972 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700973 * @mtd: mtd info
974 * @ofs: offset to start unlock from
975 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530976 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700977 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
978 * have this feature, but it allows only to lock all blocks, not for specified
979 * range for block. Implementing 'lock' feature by making use of 'unlock', for
980 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530981 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700982 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530983 */
984int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
985{
986 int ret = 0;
987 int chipnr, status, page;
988 struct nand_chip *chip = mtd->priv;
989
Brian Norris289c0522011-07-19 10:06:09 -0700990 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530991 __func__, (unsigned long long)ofs, len);
992
993 if (check_offs_len(mtd, ofs, len))
994 ret = -EINVAL;
995
996 nand_get_device(chip, mtd, FL_LOCKING);
997
998 /* Shift to get chip number */
999 chipnr = ofs >> chip->chip_shift;
1000
1001 chip->select_chip(mtd, chipnr);
1002
1003 /* Check, if it is write protected */
1004 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001005 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301006 __func__);
1007 status = MTD_ERASE_FAILED;
1008 ret = -EIO;
1009 goto out;
1010 }
1011
1012 /* Submit address of first page to lock */
1013 page = ofs >> chip->page_shift;
1014 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1015
1016 /* Call wait ready function */
1017 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301018 /* See if device thinks it succeeded */
1019 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -07001020 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301021 __func__, status);
1022 ret = -EIO;
1023 goto out;
1024 }
1025
1026 ret = __nand_unlock(mtd, ofs, len, 0x1);
1027
1028out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301029 nand_release_device(mtd);
1030
1031 return ret;
1032}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001033EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301034
1035/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001036 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001037 * @mtd: mtd info structure
1038 * @chip: nand chip info structure
1039 * @buf: buffer to store read data
1040 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001041 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001042 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001043 */
1044static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001045 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001046{
1047 chip->read_buf(mtd, buf, mtd->writesize);
1048 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1049 return 0;
1050}
1051
1052/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001053 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001054 * @mtd: mtd info structure
1055 * @chip: nand chip info structure
1056 * @buf: buffer to store read data
1057 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001058 *
1059 * We need a special oob layout and handling even when OOB isn't used.
1060 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001061static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1062 struct nand_chip *chip,
1063 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001064{
1065 int eccsize = chip->ecc.size;
1066 int eccbytes = chip->ecc.bytes;
1067 uint8_t *oob = chip->oob_poi;
1068 int steps, size;
1069
1070 for (steps = chip->ecc.steps; steps > 0; steps--) {
1071 chip->read_buf(mtd, buf, eccsize);
1072 buf += eccsize;
1073
1074 if (chip->ecc.prepad) {
1075 chip->read_buf(mtd, oob, chip->ecc.prepad);
1076 oob += chip->ecc.prepad;
1077 }
1078
1079 chip->read_buf(mtd, oob, eccbytes);
1080 oob += eccbytes;
1081
1082 if (chip->ecc.postpad) {
1083 chip->read_buf(mtd, oob, chip->ecc.postpad);
1084 oob += chip->ecc.postpad;
1085 }
1086 }
1087
1088 size = mtd->oobsize - (oob - chip->oob_poi);
1089 if (size)
1090 chip->read_buf(mtd, oob, size);
1091
1092 return 0;
1093}
1094
1095/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001096 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001097 * @mtd: mtd info structure
1098 * @chip: nand chip info structure
1099 * @buf: buffer to store read data
1100 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001101 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001102static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001103 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001105 int i, eccsize = chip->ecc.size;
1106 int eccbytes = chip->ecc.bytes;
1107 int eccsteps = chip->ecc.steps;
1108 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001109 uint8_t *ecc_calc = chip->buffers->ecccalc;
1110 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001111 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001112
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001113 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001114
1115 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1116 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1117
1118 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001119 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001120
1121 eccsteps = chip->ecc.steps;
1122 p = buf;
1123
1124 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1125 int stat;
1126
1127 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001128 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001129 mtd->ecc_stats.failed++;
1130 else
1131 mtd->ecc_stats.corrected += stat;
1132 }
1133 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001137 * nand_read_subpage - [REPLACEABLE] software ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001138 * @mtd: mtd info structure
1139 * @chip: nand chip info structure
1140 * @data_offs: offset of requested data within the page
1141 * @readlen: data length
1142 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001143 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001144static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1145 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001146{
1147 int start_step, end_step, num_steps;
1148 uint32_t *eccpos = chip->ecc.layout->eccpos;
1149 uint8_t *p;
1150 int data_col_addr, i, gaps = 0;
1151 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1152 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001153 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001154
Brian Norris7854d3f2011-06-23 14:12:08 -07001155 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001156 start_step = data_offs / chip->ecc.size;
1157 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1158 num_steps = end_step - start_step + 1;
1159
Brian Norris8b6e50c2011-05-25 14:59:01 -07001160 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001161 datafrag_len = num_steps * chip->ecc.size;
1162 eccfrag_len = num_steps * chip->ecc.bytes;
1163
1164 data_col_addr = start_step * chip->ecc.size;
1165 /* If we read not a page aligned data */
1166 if (data_col_addr != 0)
1167 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1168
1169 p = bufpoi + data_col_addr;
1170 chip->read_buf(mtd, p, datafrag_len);
1171
Brian Norris8b6e50c2011-05-25 14:59:01 -07001172 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001173 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1174 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1175
Brian Norris8b6e50c2011-05-25 14:59:01 -07001176 /*
1177 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001178 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001179 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001180 for (i = 0; i < eccfrag_len - 1; i++) {
1181 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1182 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1183 gaps = 1;
1184 break;
1185 }
1186 }
1187 if (gaps) {
1188 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1189 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1190 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001191 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001192 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001193 * about buswidth alignment in read_buf.
1194 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001195 index = start_step * chip->ecc.bytes;
1196
1197 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001198 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001199 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001200 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001201 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001202 aligned_len++;
1203
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001204 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1205 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001206 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1207 }
1208
1209 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001210 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001211
1212 p = bufpoi + data_col_addr;
1213 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1214 int stat;
1215
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001216 stat = chip->ecc.correct(mtd, p,
1217 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001218 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001219 mtd->ecc_stats.failed++;
1220 else
1221 mtd->ecc_stats.corrected += stat;
1222 }
1223 return 0;
1224}
1225
1226/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001227 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001228 * @mtd: mtd info structure
1229 * @chip: nand chip info structure
1230 * @buf: buffer to store read data
1231 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001232 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001233 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001234 */
1235static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001236 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001237{
1238 int i, eccsize = chip->ecc.size;
1239 int eccbytes = chip->ecc.bytes;
1240 int eccsteps = chip->ecc.steps;
1241 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001242 uint8_t *ecc_calc = chip->buffers->ecccalc;
1243 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001244 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001245
1246 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1247 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1248 chip->read_buf(mtd, p, eccsize);
1249 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1250 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001251 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001252
1253 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001254 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001255
1256 eccsteps = chip->ecc.steps;
1257 p = buf;
1258
1259 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1260 int stat;
1261
1262 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001263 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001264 mtd->ecc_stats.failed++;
1265 else
1266 mtd->ecc_stats.corrected += stat;
1267 }
1268 return 0;
1269}
1270
1271/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001272 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001273 * @mtd: mtd info structure
1274 * @chip: nand chip info structure
1275 * @buf: buffer to store read data
1276 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001277 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001278 * Hardware ECC for large page chips, require OOB to be read first. For this
1279 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1280 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1281 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1282 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001283 */
1284static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1285 struct nand_chip *chip, uint8_t *buf, int page)
1286{
1287 int i, eccsize = chip->ecc.size;
1288 int eccbytes = chip->ecc.bytes;
1289 int eccsteps = chip->ecc.steps;
1290 uint8_t *p = buf;
1291 uint8_t *ecc_code = chip->buffers->ecccode;
1292 uint32_t *eccpos = chip->ecc.layout->eccpos;
1293 uint8_t *ecc_calc = chip->buffers->ecccalc;
1294
1295 /* Read the OOB area first */
1296 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1297 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1298 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1299
1300 for (i = 0; i < chip->ecc.total; i++)
1301 ecc_code[i] = chip->oob_poi[eccpos[i]];
1302
1303 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1304 int stat;
1305
1306 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1307 chip->read_buf(mtd, p, eccsize);
1308 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1309
1310 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1311 if (stat < 0)
1312 mtd->ecc_stats.failed++;
1313 else
1314 mtd->ecc_stats.corrected += stat;
1315 }
1316 return 0;
1317}
1318
1319/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001320 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001321 * @mtd: mtd info structure
1322 * @chip: nand chip info structure
1323 * @buf: buffer to store read data
1324 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001325 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001326 * The hw generator calculates the error syndrome automatically. Therefore we
1327 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001328 */
1329static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001330 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001331{
1332 int i, eccsize = chip->ecc.size;
1333 int eccbytes = chip->ecc.bytes;
1334 int eccsteps = chip->ecc.steps;
1335 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001336 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001337
1338 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1339 int stat;
1340
1341 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1342 chip->read_buf(mtd, p, eccsize);
1343
1344 if (chip->ecc.prepad) {
1345 chip->read_buf(mtd, oob, chip->ecc.prepad);
1346 oob += chip->ecc.prepad;
1347 }
1348
1349 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1350 chip->read_buf(mtd, oob, eccbytes);
1351 stat = chip->ecc.correct(mtd, p, oob, NULL);
1352
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001353 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001354 mtd->ecc_stats.failed++;
1355 else
1356 mtd->ecc_stats.corrected += stat;
1357
1358 oob += eccbytes;
1359
1360 if (chip->ecc.postpad) {
1361 chip->read_buf(mtd, oob, chip->ecc.postpad);
1362 oob += chip->ecc.postpad;
1363 }
1364 }
1365
1366 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001367 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001368 if (i)
1369 chip->read_buf(mtd, oob, i);
1370
1371 return 0;
1372}
1373
1374/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001375 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001376 * @chip: nand chip structure
1377 * @oob: oob destination address
1378 * @ops: oob ops structure
1379 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001380 */
1381static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001382 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001383{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001384 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001385
Brian Norris0612b9d2011-08-30 18:45:40 -07001386 case MTD_OPS_PLACE_OOB:
1387 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001388 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1389 return oob + len;
1390
Brian Norris0612b9d2011-08-30 18:45:40 -07001391 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001392 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001393 uint32_t boffs = 0, roffs = ops->ooboffs;
1394 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001395
Florian Fainellif8ac0412010-09-07 13:23:43 +02001396 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001397 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001398 if (unlikely(roffs)) {
1399 if (roffs >= free->length) {
1400 roffs -= free->length;
1401 continue;
1402 }
1403 boffs = free->offset + roffs;
1404 bytes = min_t(size_t, len,
1405 (free->length - roffs));
1406 roffs = 0;
1407 } else {
1408 bytes = min_t(size_t, len, free->length);
1409 boffs = free->offset;
1410 }
1411 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001412 oob += bytes;
1413 }
1414 return oob;
1415 }
1416 default:
1417 BUG();
1418 }
1419 return NULL;
1420}
1421
1422/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001423 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001424 * @mtd: MTD device structure
1425 * @from: offset to read from
1426 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001427 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001428 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001429 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001430static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1431 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001432{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001433 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001434 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001435 struct mtd_ecc_stats stats;
1436 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1437 int sndcmd = 1;
1438 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001439 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001440 uint32_t oobreadlen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07001441 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001442 mtd->oobavail : mtd->oobsize;
1443
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001444 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001446 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001448 chipnr = (int)(from >> chip->chip_shift);
1449 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001451 realpage = (int)(from >> chip->page_shift);
1452 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001454 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001456 buf = ops->datbuf;
1457 oob = ops->oobbuf;
1458
Florian Fainellif8ac0412010-09-07 13:23:43 +02001459 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001460 bytes = min(mtd->writesize - col, readlen);
1461 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001462
Brian Norris8b6e50c2011-05-25 14:59:01 -07001463 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001464 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001465 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001467 if (likely(sndcmd)) {
1468 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1469 sndcmd = 0;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001472 /* Now read the page into the buffer */
Brian Norris0612b9d2011-08-30 18:45:40 -07001473 if (unlikely(ops->mode == MTD_OPS_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001474 ret = chip->ecc.read_page_raw(mtd, chip,
1475 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001476 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001477 ret = chip->ecc.read_subpage(mtd, chip,
1478 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001479 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001480 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1481 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001482 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001483 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001484
1485 /* Transfer not aligned data */
1486 if (!aligned) {
Artem Bityutskiyc1194c72010-09-03 22:01:16 +03001487 if (!NAND_SUBPAGE_READ(chip) && !oob &&
1488 !(mtd->ecc_stats.failed - stats.failed))
Alexey Korolev3d459552008-05-15 17:23:18 +01001489 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001490 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001492
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001493 buf += bytes;
1494
1495 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001496
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001497 int toread = min(oobreadlen, max_oobsize);
1498
1499 if (toread) {
1500 oob = nand_transfer_oob(chip,
1501 oob, ops, toread);
1502 oobreadlen -= toread;
1503 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001504 }
1505
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001506 if (!(chip->options & NAND_NO_READRDY)) {
1507 /*
1508 * Apply delay or wait for ready/busy pin. Do
1509 * this before the AUTOINCR check, so no
1510 * problems arise if a chip which does auto
1511 * increment is marked as NOAUTOINCR by the
1512 * board driver.
1513 */
1514 if (!chip->dev_ready)
1515 udelay(chip->chip_delay);
1516 else
1517 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001519 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001520 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001521 buf += bytes;
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001524 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001525
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001526 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Brian Norris8b6e50c2011-05-25 14:59:01 -07001529 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 col = 0;
1531 /* Increment page address */
1532 realpage++;
1533
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001534 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 /* Check, if we cross a chip boundary */
1536 if (!page) {
1537 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001538 chip->select_chip(mtd, -1);
1539 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001541
Brian Norris8b6e50c2011-05-25 14:59:01 -07001542 /*
1543 * Check, if the chip supports auto page increment or if we
1544 * have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001545 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001546 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001547 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001550 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001551 if (oob)
1552 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001554 if (ret)
1555 return ret;
1556
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001557 if (mtd->ecc_stats.failed - stats.failed)
1558 return -EBADMSG;
1559
1560 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001561}
1562
1563/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001564 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001565 * @mtd: MTD device structure
1566 * @from: offset to read from
1567 * @len: number of bytes to read
1568 * @retlen: pointer to variable to store the number of read bytes
1569 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001570 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001571 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001572 */
1573static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1574 size_t *retlen, uint8_t *buf)
1575{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001576 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07001577 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001578 int ret;
1579
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001580 /* Do not allow reads past end of device */
1581 if ((from + len) > mtd->size)
1582 return -EINVAL;
1583 if (!len)
1584 return 0;
1585
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001586 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001587
Brian Norris4a89ff82011-08-30 18:45:45 -07001588 ops.len = len;
1589 ops.datbuf = buf;
1590 ops.oobbuf = NULL;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001591
Brian Norris4a89ff82011-08-30 18:45:45 -07001592 ret = nand_do_read_ops(mtd, from, &ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001593
Brian Norris4a89ff82011-08-30 18:45:45 -07001594 *retlen = ops.retlen;
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001595
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001596 nand_release_device(mtd);
1597
1598 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
1601/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001602 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001603 * @mtd: mtd info structure
1604 * @chip: nand chip info structure
1605 * @page: page number to read
1606 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001607 */
1608static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1609 int page, int sndcmd)
1610{
1611 if (sndcmd) {
1612 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1613 sndcmd = 0;
1614 }
1615 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1616 return sndcmd;
1617}
1618
1619/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001620 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001621 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001622 * @mtd: mtd info structure
1623 * @chip: nand chip info structure
1624 * @page: page number to read
1625 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001626 */
1627static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1628 int page, int sndcmd)
1629{
1630 uint8_t *buf = chip->oob_poi;
1631 int length = mtd->oobsize;
1632 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1633 int eccsize = chip->ecc.size;
1634 uint8_t *bufpoi = buf;
1635 int i, toread, sndrnd = 0, pos;
1636
1637 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1638 for (i = 0; i < chip->ecc.steps; i++) {
1639 if (sndrnd) {
1640 pos = eccsize + i * (eccsize + chunk);
1641 if (mtd->writesize > 512)
1642 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1643 else
1644 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1645 } else
1646 sndrnd = 1;
1647 toread = min_t(int, length, chunk);
1648 chip->read_buf(mtd, bufpoi, toread);
1649 bufpoi += toread;
1650 length -= toread;
1651 }
1652 if (length > 0)
1653 chip->read_buf(mtd, bufpoi, length);
1654
1655 return 1;
1656}
1657
1658/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001659 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001660 * @mtd: mtd info structure
1661 * @chip: nand chip info structure
1662 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001663 */
1664static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1665 int page)
1666{
1667 int status = 0;
1668 const uint8_t *buf = chip->oob_poi;
1669 int length = mtd->oobsize;
1670
1671 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1672 chip->write_buf(mtd, buf, length);
1673 /* Send command to program the OOB data */
1674 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1675
1676 status = chip->waitfunc(mtd, chip);
1677
Savin Zlobec0d420f92006-06-21 11:51:20 +02001678 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001679}
1680
1681/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001682 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001683 * with syndrome - only for large page flash
1684 * @mtd: mtd info structure
1685 * @chip: nand chip info structure
1686 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001687 */
1688static int nand_write_oob_syndrome(struct mtd_info *mtd,
1689 struct nand_chip *chip, int page)
1690{
1691 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1692 int eccsize = chip->ecc.size, length = mtd->oobsize;
1693 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1694 const uint8_t *bufpoi = chip->oob_poi;
1695
1696 /*
1697 * data-ecc-data-ecc ... ecc-oob
1698 * or
1699 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1700 */
1701 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1702 pos = steps * (eccsize + chunk);
1703 steps = 0;
1704 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001705 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001706
1707 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1708 for (i = 0; i < steps; i++) {
1709 if (sndcmd) {
1710 if (mtd->writesize <= 512) {
1711 uint32_t fill = 0xFFFFFFFF;
1712
1713 len = eccsize;
1714 while (len > 0) {
1715 int num = min_t(int, len, 4);
1716 chip->write_buf(mtd, (uint8_t *)&fill,
1717 num);
1718 len -= num;
1719 }
1720 } else {
1721 pos = eccsize + i * (eccsize + chunk);
1722 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1723 }
1724 } else
1725 sndcmd = 1;
1726 len = min_t(int, length, chunk);
1727 chip->write_buf(mtd, bufpoi, len);
1728 bufpoi += len;
1729 length -= len;
1730 }
1731 if (length > 0)
1732 chip->write_buf(mtd, bufpoi, length);
1733
1734 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1735 status = chip->waitfunc(mtd, chip);
1736
1737 return status & NAND_STATUS_FAIL ? -EIO : 0;
1738}
1739
1740/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001741 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001742 * @mtd: MTD device structure
1743 * @from: offset to read from
1744 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001746 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001748static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1749 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001751 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001752 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07001753 struct mtd_ecc_stats stats;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001754 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001755 int readlen = ops->ooblen;
1756 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001757 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Brian Norris289c0522011-07-19 10:06:09 -07001759 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05301760 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Brian Norris041e4572011-06-23 16:45:24 -07001762 stats = mtd->ecc_stats;
1763
Brian Norris0612b9d2011-08-30 18:45:40 -07001764 if (ops->mode == MTD_OPS_AUTO_OOB)
Vitaly Wool70145682006-11-03 18:20:38 +03001765 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001766 else
1767 len = mtd->oobsize;
1768
1769 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001770 pr_debug("%s: attempt to start read outside oob\n",
1771 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001772 return -EINVAL;
1773 }
1774
1775 /* Do not allow reads past end of device */
1776 if (unlikely(from >= mtd->size ||
1777 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1778 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001779 pr_debug("%s: attempt to read beyond end of device\n",
1780 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001781 return -EINVAL;
1782 }
Vitaly Wool70145682006-11-03 18:20:38 +03001783
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001784 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001785 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001787 /* Shift to get page */
1788 realpage = (int)(from >> chip->page_shift);
1789 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Florian Fainellif8ac0412010-09-07 13:23:43 +02001791 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001792 if (ops->mode == MTD_OPS_RAW)
Brian Norrisc46f6482011-08-30 18:45:38 -07001793 sndcmd = chip->ecc.read_oob_raw(mtd, chip, page, sndcmd);
1794 else
1795 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001796
1797 len = min(len, readlen);
1798 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001799
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001800 if (!(chip->options & NAND_NO_READRDY)) {
1801 /*
1802 * Apply delay or wait for ready/busy pin. Do this
1803 * before the AUTOINCR check, so no problems arise if a
1804 * chip which does auto increment is marked as
1805 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001806 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001807 if (!chip->dev_ready)
1808 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001809 else
1810 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001812
Vitaly Wool70145682006-11-03 18:20:38 +03001813 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001814 if (!readlen)
1815 break;
1816
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001817 /* Increment page address */
1818 realpage++;
1819
1820 page = realpage & chip->pagemask;
1821 /* Check, if we cross a chip boundary */
1822 if (!page) {
1823 chipnr++;
1824 chip->select_chip(mtd, -1);
1825 chip->select_chip(mtd, chipnr);
1826 }
1827
Brian Norris8b6e50c2011-05-25 14:59:01 -07001828 /*
1829 * Check, if the chip supports auto page increment or if we
1830 * have hit a block boundary.
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001831 */
1832 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1833 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
Vitaly Wool70145682006-11-03 18:20:38 +03001836 ops->oobretlen = ops->ooblen;
Brian Norris041e4572011-06-23 16:45:24 -07001837
1838 if (mtd->ecc_stats.failed - stats.failed)
1839 return -EBADMSG;
1840
1841 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
1844/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001845 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001846 * @mtd: MTD device structure
1847 * @from: offset to read from
1848 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001850 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001852static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1853 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001855 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001856 int ret = -ENOTSUPP;
1857
1858 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001861 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07001862 pr_debug("%s: attempt to read beyond end of device\n",
1863 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return -EINVAL;
1865 }
1866
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001867 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Florian Fainellif8ac0412010-09-07 13:23:43 +02001869 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001870 case MTD_OPS_PLACE_OOB:
1871 case MTD_OPS_AUTO_OOB:
1872 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001873 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001874
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001875 default:
1876 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001879 if (!ops->datbuf)
1880 ret = nand_do_read_oob(mtd, from, ops);
1881 else
1882 ret = nand_do_read_ops(mtd, from, ops);
1883
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001884out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001886 return ret;
1887}
1888
1889
1890/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001891 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001892 * @mtd: mtd info structure
1893 * @chip: nand chip info structure
1894 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001895 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001896 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001897 */
1898static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1899 const uint8_t *buf)
1900{
1901 chip->write_buf(mtd, buf, mtd->writesize);
1902 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001905/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001906 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001907 * @mtd: mtd info structure
1908 * @chip: nand chip info structure
1909 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001910 *
1911 * We need a special oob layout and handling even when ECC isn't checked.
1912 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001913static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1914 struct nand_chip *chip,
1915 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001916{
1917 int eccsize = chip->ecc.size;
1918 int eccbytes = chip->ecc.bytes;
1919 uint8_t *oob = chip->oob_poi;
1920 int steps, size;
1921
1922 for (steps = chip->ecc.steps; steps > 0; steps--) {
1923 chip->write_buf(mtd, buf, eccsize);
1924 buf += eccsize;
1925
1926 if (chip->ecc.prepad) {
1927 chip->write_buf(mtd, oob, chip->ecc.prepad);
1928 oob += chip->ecc.prepad;
1929 }
1930
1931 chip->read_buf(mtd, oob, eccbytes);
1932 oob += eccbytes;
1933
1934 if (chip->ecc.postpad) {
1935 chip->write_buf(mtd, oob, chip->ecc.postpad);
1936 oob += chip->ecc.postpad;
1937 }
1938 }
1939
1940 size = mtd->oobsize - (oob - chip->oob_poi);
1941 if (size)
1942 chip->write_buf(mtd, oob, size);
1943}
1944/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001945 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001946 * @mtd: mtd info structure
1947 * @chip: nand chip info structure
1948 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001949 */
1950static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1951 const uint8_t *buf)
1952{
1953 int i, eccsize = chip->ecc.size;
1954 int eccbytes = chip->ecc.bytes;
1955 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001956 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001957 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001958 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001959
Brian Norris7854d3f2011-06-23 14:12:08 -07001960 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001961 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1962 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001963
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001964 for (i = 0; i < chip->ecc.total; i++)
1965 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001966
Thomas Gleixner90424de2007-04-05 11:44:05 +02001967 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001968}
1969
1970/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001971 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001972 * @mtd: mtd info structure
1973 * @chip: nand chip info structure
1974 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001975 */
1976static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1977 const uint8_t *buf)
1978{
1979 int i, eccsize = chip->ecc.size;
1980 int eccbytes = chip->ecc.bytes;
1981 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001982 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001983 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001984 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001985
1986 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1987 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001988 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001989 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1990 }
1991
1992 for (i = 0; i < chip->ecc.total; i++)
1993 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1994
1995 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1996}
1997
1998/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001999 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002000 * @mtd: mtd info structure
2001 * @chip: nand chip info structure
2002 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002003 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002004 * The hw generator calculates the error syndrome automatically. Therefore we
2005 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002006 */
2007static void nand_write_page_syndrome(struct mtd_info *mtd,
2008 struct nand_chip *chip, const uint8_t *buf)
2009{
2010 int i, eccsize = chip->ecc.size;
2011 int eccbytes = chip->ecc.bytes;
2012 int eccsteps = chip->ecc.steps;
2013 const uint8_t *p = buf;
2014 uint8_t *oob = chip->oob_poi;
2015
2016 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2017
2018 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2019 chip->write_buf(mtd, p, eccsize);
2020
2021 if (chip->ecc.prepad) {
2022 chip->write_buf(mtd, oob, chip->ecc.prepad);
2023 oob += chip->ecc.prepad;
2024 }
2025
2026 chip->ecc.calculate(mtd, p, oob);
2027 chip->write_buf(mtd, oob, eccbytes);
2028 oob += eccbytes;
2029
2030 if (chip->ecc.postpad) {
2031 chip->write_buf(mtd, oob, chip->ecc.postpad);
2032 oob += chip->ecc.postpad;
2033 }
2034 }
2035
2036 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002037 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002038 if (i)
2039 chip->write_buf(mtd, oob, i);
2040}
2041
2042/**
David Woodhouse956e9442006-09-25 17:12:39 +01002043 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002044 * @mtd: MTD device structure
2045 * @chip: NAND chip descriptor
2046 * @buf: the data to write
2047 * @page: page number to write
2048 * @cached: cached programming
2049 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002050 */
2051static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002052 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002053{
2054 int status;
2055
2056 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2057
David Woodhouse956e9442006-09-25 17:12:39 +01002058 if (unlikely(raw))
2059 chip->ecc.write_page_raw(mtd, chip, buf);
2060 else
2061 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002062
2063 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002064 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002065 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002066 */
2067 cached = 0;
2068
2069 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2070
2071 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002072 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002073 /*
2074 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002075 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002076 */
2077 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2078 status = chip->errstat(mtd, chip, FL_WRITING, status,
2079 page);
2080
2081 if (status & NAND_STATUS_FAIL)
2082 return -EIO;
2083 } else {
2084 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002085 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002086 }
2087
2088#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2089 /* Send command to read back the data */
2090 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2091
2092 if (chip->verify_buf(mtd, buf, mtd->writesize))
2093 return -EIO;
2094#endif
2095 return 0;
2096}
2097
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002098/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002099 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002100 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002101 * @oob: oob data buffer
2102 * @len: oob data write length
2103 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002104 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002105static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2106 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002107{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002108 struct nand_chip *chip = mtd->priv;
2109
2110 /*
2111 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2112 * data from a previous OOB read.
2113 */
2114 memset(chip->oob_poi, 0xff, mtd->oobsize);
2115
Florian Fainellif8ac0412010-09-07 13:23:43 +02002116 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002117
Brian Norris0612b9d2011-08-30 18:45:40 -07002118 case MTD_OPS_PLACE_OOB:
2119 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002120 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2121 return oob + len;
2122
Brian Norris0612b9d2011-08-30 18:45:40 -07002123 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002124 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002125 uint32_t boffs = 0, woffs = ops->ooboffs;
2126 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002127
Florian Fainellif8ac0412010-09-07 13:23:43 +02002128 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002129 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002130 if (unlikely(woffs)) {
2131 if (woffs >= free->length) {
2132 woffs -= free->length;
2133 continue;
2134 }
2135 boffs = free->offset + woffs;
2136 bytes = min_t(size_t, len,
2137 (free->length - woffs));
2138 woffs = 0;
2139 } else {
2140 bytes = min_t(size_t, len, free->length);
2141 boffs = free->offset;
2142 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002143 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002144 oob += bytes;
2145 }
2146 return oob;
2147 }
2148 default:
2149 BUG();
2150 }
2151 return NULL;
2152}
2153
Florian Fainellif8ac0412010-09-07 13:23:43 +02002154#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002155
2156/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002157 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002158 * @mtd: MTD device structure
2159 * @to: offset to write to
2160 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002161 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002162 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002163 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002164static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2165 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002166{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002167 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002168 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002169 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002170
2171 uint32_t oobwritelen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07002172 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky782ce792010-02-22 20:39:36 +02002173 mtd->oobavail : mtd->oobsize;
2174
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002175 uint8_t *oob = ops->oobbuf;
2176 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002177 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002178
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002179 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002180 if (!writelen)
2181 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002182
Brian Norris8b6e50c2011-05-25 14:59:01 -07002183 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002184 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002185 pr_notice("%s: attempt to write non page aligned data\n",
2186 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002187 return -EINVAL;
2188 }
2189
Thomas Gleixner29072b92006-09-28 15:38:36 +02002190 column = to & (mtd->writesize - 1);
2191 subpage = column || (writelen & (mtd->writesize - 1));
2192
2193 if (subpage && oob)
2194 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002195
Thomas Gleixner6a930962006-06-28 00:11:45 +02002196 chipnr = (int)(to >> chip->chip_shift);
2197 chip->select_chip(mtd, chipnr);
2198
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002199 /* Check, if it is write protected */
2200 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002201 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002202
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002203 realpage = (int)(to >> chip->page_shift);
2204 page = realpage & chip->pagemask;
2205 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2206
2207 /* Invalidate the page cache, when we write to the cached page */
2208 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002209 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002210 chip->pagebuf = -1;
2211
Maxim Levitsky782ce792010-02-22 20:39:36 +02002212 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002213 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002214 return -EINVAL;
2215
Florian Fainellif8ac0412010-09-07 13:23:43 +02002216 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002217 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002218 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002219 uint8_t *wbuf = buf;
2220
Brian Norris8b6e50c2011-05-25 14:59:01 -07002221 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002222 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2223 cached = 0;
2224 bytes = min_t(int, bytes - column, (int) writelen);
2225 chip->pagebuf = -1;
2226 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2227 memcpy(&chip->buffers->databuf[column], buf, bytes);
2228 wbuf = chip->buffers->databuf;
2229 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002230
Maxim Levitsky782ce792010-02-22 20:39:36 +02002231 if (unlikely(oob)) {
2232 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002233 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002234 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002235 } else {
2236 /* We still need to erase leftover OOB data */
2237 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002238 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002239
Thomas Gleixner29072b92006-09-28 15:38:36 +02002240 ret = chip->write_page(mtd, chip, wbuf, page, cached,
Brian Norris0612b9d2011-08-30 18:45:40 -07002241 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002242 if (ret)
2243 break;
2244
2245 writelen -= bytes;
2246 if (!writelen)
2247 break;
2248
Thomas Gleixner29072b92006-09-28 15:38:36 +02002249 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002250 buf += bytes;
2251 realpage++;
2252
2253 page = realpage & chip->pagemask;
2254 /* Check, if we cross a chip boundary */
2255 if (!page) {
2256 chipnr++;
2257 chip->select_chip(mtd, -1);
2258 chip->select_chip(mtd, chipnr);
2259 }
2260 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002261
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002262 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002263 if (unlikely(oob))
2264 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002265 return ret;
2266}
2267
2268/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002269 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002270 * @mtd: MTD device structure
2271 * @to: offset to write to
2272 * @len: number of bytes to write
2273 * @retlen: pointer to variable to store the number of written bytes
2274 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002275 *
2276 * NAND write with ECC. Used when performing writes in interrupt context, this
2277 * may for example be called by mtdoops when writing an oops while in panic.
2278 */
2279static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2280 size_t *retlen, const uint8_t *buf)
2281{
2282 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002283 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002284 int ret;
2285
2286 /* Do not allow reads past end of device */
2287 if ((to + len) > mtd->size)
2288 return -EINVAL;
2289 if (!len)
2290 return 0;
2291
Brian Norris8b6e50c2011-05-25 14:59:01 -07002292 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002293 panic_nand_wait(mtd, chip, 400);
2294
Brian Norris8b6e50c2011-05-25 14:59:01 -07002295 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002296 panic_nand_get_device(chip, mtd, FL_WRITING);
2297
Brian Norris4a89ff82011-08-30 18:45:45 -07002298 ops.len = len;
2299 ops.datbuf = (uint8_t *)buf;
2300 ops.oobbuf = NULL;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002301
Brian Norris4a89ff82011-08-30 18:45:45 -07002302 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002303
Brian Norris4a89ff82011-08-30 18:45:45 -07002304 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002305 return ret;
2306}
2307
2308/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002309 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002310 * @mtd: MTD device structure
2311 * @to: offset to write to
2312 * @len: number of bytes to write
2313 * @retlen: pointer to variable to store the number of written bytes
2314 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002316 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002318static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002319 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002321 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002322 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002323 int ret;
2324
2325 /* Do not allow reads past end of device */
2326 if ((to + len) > mtd->size)
2327 return -EINVAL;
2328 if (!len)
2329 return 0;
2330
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002331 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002332
Brian Norris4a89ff82011-08-30 18:45:45 -07002333 ops.len = len;
2334 ops.datbuf = (uint8_t *)buf;
2335 ops.oobbuf = NULL;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002336
Brian Norris4a89ff82011-08-30 18:45:45 -07002337 ret = nand_do_write_ops(mtd, to, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002338
Brian Norris4a89ff82011-08-30 18:45:45 -07002339 *retlen = ops.retlen;
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002340
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002341 nand_release_device(mtd);
2342
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002343 return ret;
2344}
2345
2346/**
2347 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002348 * @mtd: MTD device structure
2349 * @to: offset to write to
2350 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002351 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002352 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002353 */
2354static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2355 struct mtd_oob_ops *ops)
2356{
Adrian Hunter03736152007-01-31 17:58:29 +02002357 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002358 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Brian Norris289c0522011-07-19 10:06:09 -07002360 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302361 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Brian Norris0612b9d2011-08-30 18:45:40 -07002363 if (ops->mode == MTD_OPS_AUTO_OOB)
Adrian Hunter03736152007-01-31 17:58:29 +02002364 len = chip->ecc.layout->oobavail;
2365 else
2366 len = mtd->oobsize;
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002369 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002370 pr_debug("%s: attempt to write past end of page\n",
2371 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return -EINVAL;
2373 }
2374
Adrian Hunter03736152007-01-31 17:58:29 +02002375 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002376 pr_debug("%s: attempt to start write outside oob\n",
2377 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002378 return -EINVAL;
2379 }
2380
Jason Liu775adc32011-02-25 13:06:18 +08002381 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002382 if (unlikely(to >= mtd->size ||
2383 ops->ooboffs + ops->ooblen >
2384 ((mtd->size >> chip->page_shift) -
2385 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002386 pr_debug("%s: attempt to write beyond end of device\n",
2387 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002388 return -EINVAL;
2389 }
2390
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002391 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002392 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002394 /* Shift to get page */
2395 page = (int)(to >> chip->page_shift);
2396
2397 /*
2398 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2399 * of my DiskOnChip 2000 test units) will clear the whole data page too
2400 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2401 * it in the doc2000 driver in August 1999. dwmw2.
2402 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002403 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 /* Check, if it is write protected */
2406 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002407 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002410 if (page == chip->pagebuf)
2411 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002413 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002414
Brian Norris0612b9d2011-08-30 18:45:40 -07002415 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002416 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2417 else
2418 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002419
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002420 if (status)
2421 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Vitaly Wool70145682006-11-03 18:20:38 +03002423 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002425 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002428/**
2429 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002430 * @mtd: MTD device structure
2431 * @to: offset to write to
2432 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002433 */
2434static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2435 struct mtd_oob_ops *ops)
2436{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002437 struct nand_chip *chip = mtd->priv;
2438 int ret = -ENOTSUPP;
2439
2440 ops->retlen = 0;
2441
2442 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002443 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002444 pr_debug("%s: attempt to write beyond end of device\n",
2445 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002446 return -EINVAL;
2447 }
2448
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002449 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002450
Florian Fainellif8ac0412010-09-07 13:23:43 +02002451 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002452 case MTD_OPS_PLACE_OOB:
2453 case MTD_OPS_AUTO_OOB:
2454 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002455 break;
2456
2457 default:
2458 goto out;
2459 }
2460
2461 if (!ops->datbuf)
2462 ret = nand_do_write_oob(mtd, to, ops);
2463 else
2464 ret = nand_do_write_ops(mtd, to, ops);
2465
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002466out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002467 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 return ret;
2469}
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002472 * single_erase_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002473 * @mtd: MTD device structure
2474 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002476 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002478static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002480 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002482 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2483 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
2486/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002487 * multi_erase_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002488 * @mtd: MTD device structure
2489 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002491 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002493static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002495 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002497 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2498 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2499 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2500 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2501 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
2504/**
2505 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002506 * @mtd: MTD device structure
2507 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002509 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002511static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
David Woodhousee0c7d762006-05-13 18:07:53 +01002513 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002515
David A. Marlin30f464b2005-01-17 18:35:25 +00002516#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002518 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002519 * @mtd: MTD device structure
2520 * @instr: erase instruction
2521 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002523 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002525int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2526 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
Adrian Hunter69423d92008-12-10 13:37:21 +00002528 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002529 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002530 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002531 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002532 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Brian Norris289c0522011-07-19 10:06:09 -07002534 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2535 __func__, (unsigned long long)instr->addr,
2536 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302538 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002541 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002544 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002547 page = (int)(instr->addr >> chip->page_shift);
2548 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002551 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002554 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 /* Check, if it is write protected */
2557 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002558 pr_debug("%s: device is write protected!\n",
2559 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 instr->state = MTD_ERASE_FAILED;
2561 goto erase_exit;
2562 }
2563
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002564 /*
2565 * If BBT requires refresh, set the BBT page mask to see if the BBT
2566 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2567 * can not be matched. This is also done when the bbt is actually
Brian Norris7854d3f2011-06-23 14:12:08 -07002568 * erased to avoid recursive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002569 */
2570 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2571 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 /* Loop through the pages */
2574 len = instr->len;
2575
2576 instr->state = MTD_ERASING;
2577
2578 while (len) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002579 /* Heck if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002580 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2581 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002582 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2583 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 instr->state = MTD_ERASE_FAILED;
2585 goto erase_exit;
2586 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002587
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002588 /*
2589 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002590 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002591 */
2592 if (page <= chip->pagebuf && chip->pagebuf <
2593 (page + pages_per_block))
2594 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002596 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002597
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002598 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002600 /*
2601 * See if operation failed and additional status checks are
2602 * available
2603 */
2604 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2605 status = chip->errstat(mtd, chip, FL_ERASING,
2606 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002609 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002610 pr_debug("%s: failed erase, page 0x%08x\n",
2611 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002613 instr->fail_addr =
2614 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 goto erase_exit;
2616 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002617
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002618 /*
2619 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002620 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002621 */
2622 if (bbt_masked_page != 0xffffffff &&
2623 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002624 rewrite_bbt[chipnr] =
2625 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002628 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 page += pages_per_block;
2630
2631 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002632 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002634 chip->select_chip(mtd, -1);
2635 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002636
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002637 /*
2638 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002639 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002640 */
2641 if (bbt_masked_page != 0xffffffff &&
2642 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2643 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2644 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646 }
2647 instr->state = MTD_ERASE_DONE;
2648
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002649erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 /* Deselect and wake up anyone waiting on the device */
2654 nand_release_device(mtd);
2655
David Woodhouse49defc02007-10-06 15:01:59 -04002656 /* Do call back function */
2657 if (!ret)
2658 mtd_erase_callback(instr);
2659
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002660 /*
2661 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002662 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002663 */
2664 if (bbt_masked_page == 0xffffffff || ret)
2665 return ret;
2666
2667 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2668 if (!rewrite_bbt[chipnr])
2669 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002670 /* Update the BBT for chip */
Brian Norris289c0522011-07-19 10:06:09 -07002671 pr_debug("%s: nand_update_bbt (%d:0x%0llx 0x%0x)\n",
2672 __func__, chipnr, rewrite_bbt[chipnr],
2673 chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002674 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002675 }
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 /* Return more or less happy */
2678 return ret;
2679}
2680
2681/**
2682 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002683 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002685 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002687static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002689 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Brian Norris289c0522011-07-19 10:06:09 -07002691 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002694 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002696 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002700 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002701 * @mtd: MTD device structure
2702 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002704static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
2706 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002707 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002709
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002710 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711}
2712
2713/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002714 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002715 * @mtd: MTD device structure
2716 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002718static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002720 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 int ret;
2722
Florian Fainellif8ac0412010-09-07 13:23:43 +02002723 ret = nand_block_isbad(mtd, ofs);
2724 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002725 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (ret > 0)
2727 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002728 return ret;
2729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002731 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732}
2733
2734/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002735 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002736 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002737 */
2738static int nand_suspend(struct mtd_info *mtd)
2739{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002740 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002741
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002742 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002743}
2744
2745/**
2746 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002747 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002748 */
2749static void nand_resume(struct mtd_info *mtd)
2750{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002751 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002752
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002753 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002754 nand_release_device(mtd);
2755 else
Brian Norrisd0370212011-07-19 10:06:08 -07002756 pr_err("%s called for a chip which is not in suspended state\n",
2757 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002758}
2759
Brian Norris8b6e50c2011-05-25 14:59:01 -07002760/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002761static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002762{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002764 if (!chip->chip_delay)
2765 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002768 if (chip->cmdfunc == NULL)
2769 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002772 if (chip->waitfunc == NULL)
2773 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002775 if (!chip->select_chip)
2776 chip->select_chip = nand_select_chip;
2777 if (!chip->read_byte)
2778 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2779 if (!chip->read_word)
2780 chip->read_word = nand_read_word;
2781 if (!chip->block_bad)
2782 chip->block_bad = nand_block_bad;
2783 if (!chip->block_markbad)
2784 chip->block_markbad = nand_default_block_markbad;
2785 if (!chip->write_buf)
2786 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2787 if (!chip->read_buf)
2788 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2789 if (!chip->verify_buf)
2790 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2791 if (!chip->scan_bbt)
2792 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002793
2794 if (!chip->controller) {
2795 chip->controller = &chip->hwcontrol;
2796 spin_lock_init(&chip->controller->lock);
2797 init_waitqueue_head(&chip->controller->wq);
2798 }
2799
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002800}
2801
Brian Norris8b6e50c2011-05-25 14:59:01 -07002802/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002803static void sanitize_string(uint8_t *s, size_t len)
2804{
2805 ssize_t i;
2806
Brian Norris8b6e50c2011-05-25 14:59:01 -07002807 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002808 s[len - 1] = 0;
2809
Brian Norris8b6e50c2011-05-25 14:59:01 -07002810 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002811 for (i = 0; i < len - 1; i++) {
2812 if (s[i] < ' ' || s[i] > 127)
2813 s[i] = '?';
2814 }
2815
Brian Norris8b6e50c2011-05-25 14:59:01 -07002816 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002817 strim(s);
2818}
2819
2820static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2821{
2822 int i;
2823 while (len--) {
2824 crc ^= *p++ << 8;
2825 for (i = 0; i < 8; i++)
2826 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2827 }
2828
2829 return crc;
2830}
2831
2832/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002833 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002834 */
2835static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002836 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002837{
2838 struct nand_onfi_params *p = &chip->onfi_params;
2839 int i;
2840 int val;
2841
Brian Norris7854d3f2011-06-23 14:12:08 -07002842 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002843 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2844 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2845 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2846 return 0;
2847
Brian Norris9a4d4d62011-07-19 10:06:07 -07002848 pr_info("ONFI flash detected\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002849 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2850 for (i = 0; i < 3; i++) {
2851 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2852 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2853 le16_to_cpu(p->crc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002854 pr_info("ONFI param page %d valid\n", i);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002855 break;
2856 }
2857 }
2858
2859 if (i == 3)
2860 return 0;
2861
Brian Norris8b6e50c2011-05-25 14:59:01 -07002862 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002863 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002864 if (val & (1 << 5))
2865 chip->onfi_version = 23;
2866 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002867 chip->onfi_version = 22;
2868 else if (val & (1 << 3))
2869 chip->onfi_version = 21;
2870 else if (val & (1 << 2))
2871 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002872 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002873 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002874 else
2875 chip->onfi_version = 0;
2876
2877 if (!chip->onfi_version) {
Brian Norrisd0370212011-07-19 10:06:08 -07002878 pr_info("%s: unsupported ONFI version: %d\n", __func__, val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002879 return 0;
2880 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002881
2882 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2883 sanitize_string(p->model, sizeof(p->model));
2884 if (!mtd->name)
2885 mtd->name = p->model;
2886 mtd->writesize = le32_to_cpu(p->byte_per_page);
2887 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2888 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002889 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002890 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002891 if (le16_to_cpu(p->features) & 1)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002892 *busw = NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002893
2894 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2895 chip->options |= (NAND_NO_READRDY |
2896 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2897
2898 return 1;
2899}
2900
2901/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002902 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002903 */
2904static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002905 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002906 int busw,
2907 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002908 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002909{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002910 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002911 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002912 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002915 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Karl Beldanef89a882008-09-15 14:37:29 +02002917 /*
2918 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002919 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002920 */
2921 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002924 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002927 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002928 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Brian Norris8b6e50c2011-05-25 14:59:01 -07002930 /*
2931 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002932 * interface concerns can cause random data which looks like a
2933 * possibly credible NAND flash to appear. If the two results do
2934 * not match, ignore the device completely.
2935 */
2936
2937 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2938
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002939 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002940 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002941
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002942 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002943 pr_info("%s: second ID read did not match "
Brian Norrisd0370212011-07-19 10:06:08 -07002944 "%02x,%02x against %02x,%02x\n", __func__,
2945 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002946 return ERR_PTR(-ENODEV);
2947 }
2948
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002949 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002950 type = nand_flash_ids;
2951
2952 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002953 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002954 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002955
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002956 chip->onfi_version = 0;
2957 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002958 /* Check is chip is ONFI compliant */
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002959 ret = nand_flash_detect_onfi(mtd, chip, &busw);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002960 if (ret)
2961 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002962 }
2963
2964 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2965
2966 /* Read entire ID string */
2967
2968 for (i = 0; i < 8; i++)
2969 id_data[i] = chip->read_byte(mtd);
2970
David Woodhouse5e81e882010-02-26 18:32:56 +00002971 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002972 return ERR_PTR(-ENODEV);
2973
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002974 if (!mtd->name)
2975 mtd->name = type->name;
2976
Adrian Hunter69423d92008-12-10 13:37:21 +00002977 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002978
Huang Shijie12a40a52010-09-27 10:43:53 +08002979 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002980 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002981 busw = chip->init_size(mtd, chip, id_data);
2982 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002983 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002984 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002985 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002986 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002987 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002988
Kevin Cernekee426c4572010-05-04 20:58:03 -07002989 /*
2990 * Field definitions are in the following datasheets:
2991 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002992 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002993 *
2994 * Check for wraparound + Samsung ID + nonzero 6th byte
2995 * to decide what to do.
2996 */
2997 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2998 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002999 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07003000 id_data[5] != 0x00) {
3001 /* Calc pagesize */
3002 mtd->writesize = 2048 << (extid & 0x03);
3003 extid >>= 2;
3004 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07003005 switch (extid & 0x03) {
3006 case 1:
3007 mtd->oobsize = 128;
3008 break;
3009 case 2:
3010 mtd->oobsize = 218;
3011 break;
3012 case 3:
3013 mtd->oobsize = 400;
3014 break;
3015 default:
3016 mtd->oobsize = 436;
3017 break;
3018 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003019 extid >>= 2;
3020 /* Calc blocksize */
3021 mtd->erasesize = (128 * 1024) <<
3022 (((extid >> 1) & 0x04) | (extid & 0x03));
3023 busw = 0;
3024 } else {
3025 /* Calc pagesize */
3026 mtd->writesize = 1024 << (extid & 0x03);
3027 extid >>= 2;
3028 /* Calc oobsize */
3029 mtd->oobsize = (8 << (extid & 0x01)) *
3030 (mtd->writesize >> 9);
3031 extid >>= 2;
3032 /* Calc blocksize. Blocksize is multiples of 64KiB */
3033 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3034 extid >>= 2;
3035 /* Get buswidth information */
3036 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3037 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003038 } else {
3039 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003040 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003041 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003042 mtd->erasesize = type->erasesize;
3043 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003044 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003045 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003046
3047 /*
3048 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3049 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003050 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003051 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3052 */
3053 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3054 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3055 id_data[7] == 0x00 && mtd->writesize == 512) {
3056 mtd->erasesize = 128 * 1024;
3057 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3058 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003059 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003060 /* Get chip options, preserve non chip based options */
3061 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3062 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3063
Brian Norris8b6e50c2011-05-25 14:59:01 -07003064 /*
3065 * Check if chip is not a Samsung device. Do not clear the
3066 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003067 */
3068 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3069 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3070ident_done:
3071
3072 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003073 * Set chip as a default. Board drivers can override it, if necessary.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003074 */
3075 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003076
3077 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003078 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003079 if (nand_manuf_ids[maf_idx].id == *maf_id)
3080 break;
3081 }
3082
3083 /*
3084 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003085 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003086 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003087 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003088 pr_info("NAND device: Manufacturer ID:"
Brian Norrisd0370212011-07-19 10:06:08 -07003089 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
3090 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Brian Norris9a4d4d62011-07-19 10:06:07 -07003091 pr_warn("NAND bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003092 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3093 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003094 return ERR_PTR(-EINVAL);
3095 }
3096
3097 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003098 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003099 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003100 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003101
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003102 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003103 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003104 if (chip->chipsize & 0xffffffff)
3105 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003106 else {
3107 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3108 chip->chip_shift += 32 - 1;
3109 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003110
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003111 chip->badblockbits = 8;
3112
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003113 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003114 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003115 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003116 else
3117 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003118
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003119 /*
3120 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003121 * on Samsung and Hynix MLC devices; stored in first two pages
3122 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003123 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3124 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003125 */
3126 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3127 (*maf_id == NAND_MFR_SAMSUNG ||
3128 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003129 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003130 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3131 (*maf_id == NAND_MFR_SAMSUNG ||
3132 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003133 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003134 *maf_id == NAND_MFR_AMD)) ||
3135 (mtd->writesize == 2048 &&
3136 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003137 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003138
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003139 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003140 if (chip->options & NAND_4PAGE_ARRAY)
3141 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003142 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003143 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003144
Brian Norris8b6e50c2011-05-25 14:59:01 -07003145 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003146 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3147 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003148
Brian Norris9a4d4d62011-07-19 10:06:07 -07003149 pr_info("NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003150 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3151 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003152 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003153
3154 return type;
3155}
3156
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003157/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003158 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003159 * @mtd: MTD device structure
3160 * @maxchips: number of chips to scan for
3161 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003162 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003163 * This is the first phase of the normal nand_scan() function. It reads the
3164 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003166 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003167 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003168int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3169 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003170{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003171 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003172 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003173 struct nand_flash_dev *type;
3174
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003175 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003176 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003177 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003178 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003179
3180 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003181 type = nand_get_flash_type(mtd, chip, busw,
3182 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003183
3184 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003185 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07003186 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003187 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003188 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 }
3190
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003191 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003192 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003193 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003194 /* See comment in nand_get_flash_type for reset */
3195 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003197 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003199 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003200 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 break;
3202 }
3203 if (i > 1)
Brian Norris9a4d4d62011-07-19 10:06:07 -07003204 pr_info("%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003207 chip->numchips = i;
3208 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
David Woodhouse3b85c322006-09-25 17:06:53 +01003210 return 0;
3211}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003212EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003213
3214
3215/**
3216 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003217 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003218 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003219 * This is the second phase of the normal nand_scan() function. It fills out
3220 * all the uninitialized function pointers with the defaults and scans for a
3221 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003222 */
3223int nand_scan_tail(struct mtd_info *mtd)
3224{
3225 int i;
3226 struct nand_chip *chip = mtd->priv;
3227
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003228 if (!(chip->options & NAND_OWN_BUFFERS))
3229 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3230 if (!chip->buffers)
3231 return -ENOMEM;
3232
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003233 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003234 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003235
3236 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003237 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003238 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003239 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003240 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003242 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 break;
3244 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003245 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 break;
3247 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003248 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003250 case 128:
3251 chip->ecc.layout = &nand_oob_128;
3252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003254 pr_warn("No oob scheme defined for oobsize %d\n",
3255 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 BUG();
3257 }
3258 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003259
David Woodhouse956e9442006-09-25 17:12:39 +01003260 if (!chip->write_page)
3261 chip->write_page = nand_write_page;
3262
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003263 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003264 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003265 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003266 */
David Woodhouse956e9442006-09-25 17:12:39 +01003267
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003268 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003269 case NAND_ECC_HW_OOB_FIRST:
3270 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3271 if (!chip->ecc.calculate || !chip->ecc.correct ||
3272 !chip->ecc.hwctl) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003273 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003274 "hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003275 BUG();
3276 }
3277 if (!chip->ecc.read_page)
3278 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3279
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003280 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003281 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003282 if (!chip->ecc.read_page)
3283 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003284 if (!chip->ecc.write_page)
3285 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003286 if (!chip->ecc.read_page_raw)
3287 chip->ecc.read_page_raw = nand_read_page_raw;
3288 if (!chip->ecc.write_page_raw)
3289 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003290 if (!chip->ecc.read_oob)
3291 chip->ecc.read_oob = nand_read_oob_std;
3292 if (!chip->ecc.write_oob)
3293 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003294
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003295 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003296 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3297 !chip->ecc.hwctl) &&
3298 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003299 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003300 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003301 chip->ecc.write_page == nand_write_page_hwecc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003302 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003303 "hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003304 BUG();
3305 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003306 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003307 if (!chip->ecc.read_page)
3308 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003309 if (!chip->ecc.write_page)
3310 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003311 if (!chip->ecc.read_page_raw)
3312 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3313 if (!chip->ecc.write_page_raw)
3314 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003315 if (!chip->ecc.read_oob)
3316 chip->ecc.read_oob = nand_read_oob_syndrome;
3317 if (!chip->ecc.write_oob)
3318 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003319
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003320 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003321 break;
Brian Norris9a4d4d62011-07-19 10:06:07 -07003322 pr_warn("%d byte HW ECC not possible on "
Brian Norrisd0370212011-07-19 10:06:08 -07003323 "%d byte page size, fallback to SW ECC\n",
3324 chip->ecc.size, mtd->writesize);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003325 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003327 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003328 chip->ecc.calculate = nand_calculate_ecc;
3329 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003330 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003331 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003332 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003333 chip->ecc.read_page_raw = nand_read_page_raw;
3334 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003335 chip->ecc.read_oob = nand_read_oob_std;
3336 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003337 if (!chip->ecc.size)
3338 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003339 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003341
Ivan Djelic193bd402011-03-11 11:05:33 +01003342 case NAND_ECC_SOFT_BCH:
3343 if (!mtd_nand_has_bch()) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003344 pr_warn("CONFIG_MTD_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003345 BUG();
3346 }
3347 chip->ecc.calculate = nand_bch_calculate_ecc;
3348 chip->ecc.correct = nand_bch_correct_data;
3349 chip->ecc.read_page = nand_read_page_swecc;
3350 chip->ecc.read_subpage = nand_read_subpage;
3351 chip->ecc.write_page = nand_write_page_swecc;
3352 chip->ecc.read_page_raw = nand_read_page_raw;
3353 chip->ecc.write_page_raw = nand_write_page_raw;
3354 chip->ecc.read_oob = nand_read_oob_std;
3355 chip->ecc.write_oob = nand_write_oob_std;
3356 /*
3357 * Board driver should supply ecc.size and ecc.bytes values to
3358 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003359 * for details. Otherwise, default to 4 bits for large page
3360 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003361 */
3362 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3363 chip->ecc.size = 512;
3364 chip->ecc.bytes = 7;
3365 }
3366 chip->ecc.priv = nand_bch_init(mtd,
3367 chip->ecc.size,
3368 chip->ecc.bytes,
3369 &chip->ecc.layout);
3370 if (!chip->ecc.priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003371 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003372 BUG();
3373 }
3374 break;
3375
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003376 case NAND_ECC_NONE:
Brian Norris9a4d4d62011-07-19 10:06:07 -07003377 pr_warn("NAND_ECC_NONE selected by board driver. "
Brian Norrisd0370212011-07-19 10:06:08 -07003378 "This is not recommended!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003379 chip->ecc.read_page = nand_read_page_raw;
3380 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003381 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003382 chip->ecc.read_page_raw = nand_read_page_raw;
3383 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003384 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003385 chip->ecc.size = mtd->writesize;
3386 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003390 pr_warn("Invalid NAND_ECC_MODE %d\n", chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003391 BUG();
3392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Brian Norris9ce244b2011-08-30 18:45:37 -07003394 /* For many systems, the standard OOB write also works for raw */
Brian Norrisc46f6482011-08-30 18:45:38 -07003395 if (!chip->ecc.read_oob_raw)
3396 chip->ecc.read_oob_raw = chip->ecc.read_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07003397 if (!chip->ecc.write_oob_raw)
3398 chip->ecc.write_oob_raw = chip->ecc.write_oob;
3399
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003400 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003401 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003402 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003403 */
3404 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003405 for (i = 0; chip->ecc.layout->oobfree[i].length
3406 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003407 chip->ecc.layout->oobavail +=
3408 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003409 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003410
3411 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003412 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003413 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003414 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003415 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003416 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003417 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003418 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003420 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003421
Brian Norris8b6e50c2011-05-25 14:59:01 -07003422 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003423 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3424 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003425 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003426 case 2:
3427 mtd->subpage_sft = 1;
3428 break;
3429 case 4:
3430 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003431 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003432 mtd->subpage_sft = 2;
3433 break;
3434 }
3435 }
3436 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3437
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003438 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003439 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003442 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
3444 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003445 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
3447 /* Fill in remaining MTD driver data */
3448 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003449 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3450 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 mtd->erase = nand_erase;
3452 mtd->point = NULL;
3453 mtd->unpoint = NULL;
3454 mtd->read = nand_read;
3455 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003456 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 mtd->read_oob = nand_read_oob;
3458 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 mtd->sync = nand_sync;
3460 mtd->lock = NULL;
3461 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003462 mtd->suspend = nand_suspend;
3463 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 mtd->block_isbad = nand_block_isbad;
3465 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003466 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003468 /* propagate ecc.layout to mtd_info */
3469 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003471 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003472 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003476 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003478EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Brian Norris8b6e50c2011-05-25 14:59:01 -07003480/*
3481 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003482 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003483 * to call us from in-kernel code if the core NAND support is modular.
3484 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003485#ifdef MODULE
3486#define caller_is_module() (1)
3487#else
3488#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003489 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003490#endif
3491
3492/**
3493 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003494 * @mtd: MTD device structure
3495 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003496 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003497 * This fills out all the uninitialized function pointers with the defaults.
3498 * The flash ID is read and the mtd/chip structures are filled with the
3499 * appropriate values. The mtd->owner field must be set to the module of the
3500 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003501 */
3502int nand_scan(struct mtd_info *mtd, int maxchips)
3503{
3504 int ret;
3505
3506 /* Many callers got this wrong, so check for it for a while... */
3507 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07003508 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003509 BUG();
3510 }
3511
David Woodhouse5e81e882010-02-26 18:32:56 +00003512 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003513 if (!ret)
3514 ret = nand_scan_tail(mtd);
3515 return ret;
3516}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003517EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003518
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003520 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003521 * @mtd: MTD device structure
3522 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003523void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003525 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Ivan Djelic193bd402011-03-11 11:05:33 +01003527 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3528 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3529
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003530 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
Jesper Juhlfa671642005-11-07 01:01:27 -08003532 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003533 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003534 if (!(chip->options & NAND_OWN_BUFFERS))
3535 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003536
3537 /* Free bad block descriptor memory */
3538 if (chip->badblock_pattern && chip->badblock_pattern->options
3539 & NAND_BBT_DYNAMICSTRUCT)
3540 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541}
David Woodhousee0c7d762006-05-13 18:07:53 +01003542EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003543
3544static int __init nand_base_init(void)
3545{
3546 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3547 return 0;
3548}
3549
3550static void __exit nand_base_exit(void)
3551{
3552 led_trigger_unregister_simple(nand_led_trigger);
3553}
3554
3555module_init(nand_base_init);
3556module_exit(nand_base_exit);
3557
David Woodhousee0c7d762006-05-13 18:07:53 +01003558MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003559MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3560MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003561MODULE_DESCRIPTION("Generic NAND flash driver code");