blob: 77b340068c6e8c92dfe345a575c8c2e2e93d0d2c [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
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530126 return ret;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/**
130 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700131 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000132 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700133 * Deselect, release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100135static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200137 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200140 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100141
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200142 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200143 spin_lock(&chip->controller->lock);
144 chip->controller->active = NULL;
145 chip->state = FL_READY;
146 wake_up(&chip->controller->wq);
147 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/**
151 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700152 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700154 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200156static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200158 struct nand_chip *chip = mtd->priv;
159 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
Brian Norris7854d3f2011-06-23 14:12:08 -0700164 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700165 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700167 * Default read function for 16bit buswidth with endianness conversion.
168 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200170static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200172 struct nand_chip *chip = mtd->priv;
173 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700178 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700180 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
182static u16 nand_read_word(struct mtd_info *mtd)
183{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200184 struct nand_chip *chip = mtd->priv;
185 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700190 * @mtd: MTD device structure
191 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
193 * Default select function for 1 chip devices.
194 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200195static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200197 struct nand_chip *chip = mtd->priv;
198
199 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200201 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205
206 default:
207 BUG();
208 }
209}
210
211/**
212 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700213 * @mtd: MTD device structure
214 * @buf: data buffer
215 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700217 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200219static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200222 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
David Woodhousee0c7d762006-05-13 18:07:53 +0100224 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200225 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000229 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700230 * @mtd: MTD device structure
231 * @buf: buffer to store date
232 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700234 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200236static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200239 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
David Woodhousee0c7d762006-05-13 18:07:53 +0100241 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200242 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700247 * @mtd: MTD device structure
248 * @buf: data buffer
249 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700251 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200253static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200256 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 u16 *p = (u16 *) buf;
258 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000259
David Woodhousee0c7d762006-05-13 18:07:53 +0100260 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200261 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000266 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700267 * @mtd: MTD device structure
268 * @buf: buffer to store date
269 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700271 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200273static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200276 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 u16 *p = (u16 *) buf;
278 len >>= 1;
279
David Woodhousee0c7d762006-05-13 18:07:53 +0100280 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200281 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700286 * @mtd: MTD device structure
287 * @ofs: offset from device start
288 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000290 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
293{
Brian Norriscdbec052012-01-13 18:11:48 -0800294 int page, chipnr, res = 0, i = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200295 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 u16 bad;
297
Brian Norris5fb15492011-05-31 16:31:21 -0700298 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700299 ofs += mtd->erasesize - mtd->writesize;
300
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100301 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200304 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200306 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200309 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Brian Norriscdbec052012-01-13 18:11:48 -0800312 do {
313 if (chip->options & NAND_BUSWIDTH_16) {
314 chip->cmdfunc(mtd, NAND_CMD_READOOB,
315 chip->badblockpos & 0xFE, page);
316 bad = cpu_to_le16(chip->read_word(mtd));
317 if (chip->badblockpos & 0x1)
318 bad >>= 8;
319 else
320 bad &= 0xFF;
321 } else {
322 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
323 page);
324 bad = chip->read_byte(mtd);
325 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000326
Brian Norriscdbec052012-01-13 18:11:48 -0800327 if (likely(chip->badblockbits == 8))
328 res = bad != 0xFF;
329 else
330 res = hweight8(bad) < chip->badblockbits;
331 ofs += mtd->writesize;
332 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
333 i++;
334 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200335
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200336 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return res;
340}
341
342/**
343 * nand_default_block_markbad - [DEFAULT] mark a block bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700344 * @mtd: MTD device structure
345 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700347 * This is the default implementation, which can be overridden by a hardware
Brian Norrise2414f42012-02-06 13:44:00 -0800348 * specific driver. We try operations in the following order, according to our
349 * bbt_options (NAND_BBT_NO_OOB_BBM and NAND_BBT_USE_FLASH):
350 * (1) erase the affected block, to allow OOB marker to be written cleanly
351 * (2) update in-memory BBT
352 * (3) write bad block marker to OOB area of affected block
353 * (4) update flash-based BBT
354 * Note that we retain the first error encountered in (3) or (4), finish the
355 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356*/
357static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
358{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200359 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200360 uint8_t buf[2] = { 0, 0 };
Brian Norrise2414f42012-02-06 13:44:00 -0800361 int block, res, ret = 0, i = 0;
362 int write_oob = !(chip->bbt_options & NAND_BBT_NO_OOB_BBM);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000363
Brian Norrise2414f42012-02-06 13:44:00 -0800364 if (write_oob) {
Brian Norris00918422012-01-13 18:11:47 -0800365 struct erase_info einfo;
366
367 /* Attempt erase before marking OOB */
368 memset(&einfo, 0, sizeof(einfo));
369 einfo.mtd = mtd;
370 einfo.addr = ofs;
371 einfo.len = 1 << chip->phys_erase_shift;
372 nand_erase_nand(mtd, &einfo, 0);
373 }
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400376 block = (int)(ofs >> chip->bbt_erase_shift);
Brian Norrise2414f42012-02-06 13:44:00 -0800377 /* Mark block bad in memory-based BBT */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200378 if (chip->bbt)
379 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Brian Norrise2414f42012-02-06 13:44:00 -0800381 /* Write bad block marker to OOB */
382 if (write_oob) {
Brian Norris4a89ff82011-08-30 18:45:45 -0700383 struct mtd_oob_ops ops;
Brian Norrisdf698622012-01-20 20:38:03 -0800384 loff_t wr_ofs = ofs;
Brian Norris4a89ff82011-08-30 18:45:45 -0700385
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300386 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000387
Brian Norris4a89ff82011-08-30 18:45:45 -0700388 ops.datbuf = NULL;
389 ops.oobbuf = buf;
Brian Norris85443312012-01-13 18:11:49 -0800390 ops.ooboffs = chip->badblockpos;
391 if (chip->options & NAND_BUSWIDTH_16) {
392 ops.ooboffs &= ~0x01;
393 ops.len = ops.ooblen = 2;
394 } else {
395 ops.len = ops.ooblen = 1;
396 }
Brian Norris23b1a992011-10-14 20:09:33 -0700397 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norrisdf698622012-01-20 20:38:03 -0800398
Brian Norrise2414f42012-02-06 13:44:00 -0800399 /* Write to first/last page(s) if necessary */
Brian Norrisdf698622012-01-20 20:38:03 -0800400 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
401 wr_ofs += mtd->erasesize - mtd->writesize;
Brian Norris02ed70b2010-07-21 16:53:47 -0700402 do {
Brian Norrise2414f42012-02-06 13:44:00 -0800403 res = nand_do_write_oob(mtd, wr_ofs, &ops);
404 if (!ret)
405 ret = res;
Brian Norris02ed70b2010-07-21 16:53:47 -0700406
Brian Norris02ed70b2010-07-21 16:53:47 -0700407 i++;
Brian Norrisdf698622012-01-20 20:38:03 -0800408 wr_ofs += mtd->writesize;
Brian Norrise2414f42012-02-06 13:44:00 -0800409 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
Brian Norris02ed70b2010-07-21 16:53:47 -0700410
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200412 }
Brian Norrise2414f42012-02-06 13:44:00 -0800413
414 /* Update flash-based bad block table */
415 if (chip->bbt_options & NAND_BBT_USE_FLASH) {
416 res = nand_update_bbt(mtd, ofs);
417 if (!ret)
418 ret = res;
419 }
420
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200421 if (!ret)
422 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300423
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200424 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000427/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700429 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700431 * Check, if the device is write protected. The function expects, that the
432 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100434static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200436 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200437
Brian Norris8b6e50c2011-05-25 14:59:01 -0700438 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200439 if (chip->options & NAND_BROKEN_XD)
440 return 0;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200443 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
444 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/**
448 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700449 * @mtd: MTD device structure
450 * @ofs: offset from device start
451 * @getchip: 0, if the chip is already selected
452 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * Check, if the block is bad. Either by reading the bad block table or
455 * calling of the scan function.
456 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200457static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
458 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200460 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000461
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200462 if (!chip->bbt)
463 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100466 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200469/**
470 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700471 * @mtd: MTD device structure
472 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200473 *
474 * Helper function for nand_wait_ready used when needing to wait in interrupt
475 * context.
476 */
477static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
478{
479 struct nand_chip *chip = mtd->priv;
480 int i;
481
482 /* Wait for the device to get ready */
483 for (i = 0; i < timeo; i++) {
484 if (chip->dev_ready(mtd))
485 break;
486 touch_softlockup_watchdog();
487 mdelay(1);
488 }
489}
490
Brian Norris7854d3f2011-06-23 14:12:08 -0700491/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100492void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000493{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200494 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100495 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000496
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200497 /* 400ms timeout */
498 if (in_interrupt() || oops_in_progress)
499 return panic_nand_wait_ready(mtd, 400);
500
Richard Purdie8fe833c2006-03-31 02:31:14 -0800501 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700502 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000503 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200504 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800505 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700506 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000507 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800508 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000509}
David Woodhouse4b648b02006-09-25 17:05:24 +0100510EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/**
513 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700514 * @mtd: MTD device structure
515 * @command: the command to be sent
516 * @column: the column address for this command, -1 if none
517 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700519 * Send command to NAND device. This function is used for small page devices
520 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200522static void nand_command(struct mtd_info *mtd, unsigned int command,
523 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200525 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200526 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Brian Norris8b6e50c2011-05-25 14:59:01 -0700528 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (command == NAND_CMD_SEQIN) {
530 int readcmd;
531
Joern Engel28318772006-05-22 23:18:05 +0200532 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200534 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 readcmd = NAND_CMD_READOOB;
536 } else if (column < 256) {
537 /* First 256 bytes --> READ0 */
538 readcmd = NAND_CMD_READ0;
539 } else {
540 column -= 256;
541 readcmd = NAND_CMD_READ1;
542 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200543 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200544 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200546 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Brian Norris8b6e50c2011-05-25 14:59:01 -0700548 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200549 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
550 /* Serially input address */
551 if (column != -1) {
552 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200553 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200554 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200555 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200556 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200558 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200559 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200560 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200561 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200562 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200563 if (chip->chipsize > (32 << 20))
564 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200565 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000567
568 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700569 * Program and erase have their own busy handlers status and sequential
570 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 case NAND_CMD_PAGEPROG:
575 case NAND_CMD_ERASE1:
576 case NAND_CMD_ERASE2:
577 case NAND_CMD_SEQIN:
578 case NAND_CMD_STATUS:
579 return;
580
581 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200582 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200584 udelay(chip->chip_delay);
585 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200586 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200587 chip->cmd_ctrl(mtd,
588 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200589 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
590 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return;
592
David Woodhousee0c7d762006-05-13 18:07:53 +0100593 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000595 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * If we don't have access to the busy pin, we apply the given
597 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100598 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200599 if (!chip->dev_ready) {
600 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700604 /*
605 * Apply this short delay always to ensure that we do wait tWB in
606 * any case on any machine.
607 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100608 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000609
610 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613/**
614 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700615 * @mtd: MTD device structure
616 * @command: the command to be sent
617 * @column: the column address for this command, -1 if none
618 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200620 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700621 * devices. We don't have the separate regions as we have in the small page
622 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200624static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
625 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200627 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* Emulate NAND_CMD_READOOB */
630 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200631 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 command = NAND_CMD_READ0;
633 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000634
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200635 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200636 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200637 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200640 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* Serially input address */
643 if (column != -1) {
644 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200645 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200647 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200649 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200652 chip->cmd_ctrl(mtd, page_addr, ctrl);
653 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200654 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200656 if (chip->chipsize > (128 << 20))
657 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200658 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200661 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000662
663 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700664 * Program and erase have their own busy handlers status, sequential
665 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 case NAND_CMD_CACHEDPROG:
670 case NAND_CMD_PAGEPROG:
671 case NAND_CMD_ERASE1:
672 case NAND_CMD_ERASE2:
673 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200674 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000676 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return;
678
David A. Marlin30f464b2005-01-17 18:35:25 +0000679 case NAND_CMD_STATUS_ERROR:
680 case NAND_CMD_STATUS_ERROR0:
681 case NAND_CMD_STATUS_ERROR1:
682 case NAND_CMD_STATUS_ERROR2:
683 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700684 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200685 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200689 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200691 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200692 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
693 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
694 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
695 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200696 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
697 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return;
699
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200700 case NAND_CMD_RNDOUT:
701 /* No ready / busy check necessary */
702 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
703 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
704 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
705 NAND_NCE | NAND_CTRL_CHANGE);
706 return;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200709 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
710 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
711 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
712 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000713
David Woodhousee0c7d762006-05-13 18:07:53 +0100714 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000716 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700718 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100719 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200720 if (!chip->dev_ready) {
721 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000725
Brian Norris8b6e50c2011-05-25 14:59:01 -0700726 /*
727 * Apply this short delay always to ensure that we do wait tWB in
728 * any case on any machine.
729 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100730 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000731
732 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200736 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700737 * @chip: the nand chip descriptor
738 * @mtd: MTD device structure
739 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200740 *
741 * Used when in panic, no locks are taken.
742 */
743static void panic_nand_get_device(struct nand_chip *chip,
744 struct mtd_info *mtd, int new_state)
745{
Brian Norris7854d3f2011-06-23 14:12:08 -0700746 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200747 chip->controller->active = chip;
748 chip->state = new_state;
749}
750
751/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700753 * @chip: the nand chip descriptor
754 * @mtd: MTD device structure
755 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 *
757 * Get the device and lock it for exclusive access
758 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200759static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200760nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200762 spinlock_t *lock = &chip->controller->lock;
763 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100764 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200765retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100766 spin_lock(lock);
767
vimal singhb8b3ee92009-07-09 20:41:22 +0530768 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200769 if (!chip->controller->active)
770 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200771
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200772 if (chip->controller->active == chip && chip->state == FL_READY) {
773 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100774 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100775 return 0;
776 }
777 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800778 if (chip->controller->active->state == FL_PM_SUSPENDED) {
779 chip->state = FL_PM_SUSPENDED;
780 spin_unlock(lock);
781 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800782 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100783 }
784 set_current_state(TASK_UNINTERRUPTIBLE);
785 add_wait_queue(wq, &wait);
786 spin_unlock(lock);
787 schedule();
788 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 goto retry;
790}
791
792/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700793 * panic_nand_wait - [GENERIC] wait until the command is done
794 * @mtd: MTD device structure
795 * @chip: NAND chip structure
796 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200797 *
798 * Wait for command done. This is a helper function for nand_wait used when
799 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400800 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200801 */
802static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
803 unsigned long timeo)
804{
805 int i;
806 for (i = 0; i < timeo; i++) {
807 if (chip->dev_ready) {
808 if (chip->dev_ready(mtd))
809 break;
810 } else {
811 if (chip->read_byte(mtd) & NAND_STATUS_READY)
812 break;
813 }
814 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200815 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200816}
817
818/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700819 * nand_wait - [DEFAULT] wait until the command is done
820 * @mtd: MTD device structure
821 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700823 * Wait for command done. This applies to erase and program only. Erase can
824 * take up to 400ms and program up to 20ms according to general NAND and
825 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700826 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200827static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829
David Woodhousee0c7d762006-05-13 18:07:53 +0100830 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200831 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100834 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100836 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Richard Purdie8fe833c2006-03-31 02:31:14 -0800838 led_trigger_event(nand_led_trigger, LED_FULL);
839
Brian Norris8b6e50c2011-05-25 14:59:01 -0700840 /*
841 * Apply this short delay always to ensure that we do wait tWB in any
842 * case on any machine.
843 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100844 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200846 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
847 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000848 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200849 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200851 if (in_interrupt() || oops_in_progress)
852 panic_nand_wait(mtd, chip, timeo);
853 else {
854 while (time_before(jiffies, timeo)) {
855 if (chip->dev_ready) {
856 if (chip->dev_ready(mtd))
857 break;
858 } else {
859 if (chip->read_byte(mtd) & NAND_STATUS_READY)
860 break;
861 }
862 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800865 led_trigger_event(nand_led_trigger, LED_OFF);
866
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200867 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return status;
869}
870
871/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700872 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700873 * @mtd: mtd info
874 * @ofs: offset to start unlock from
875 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700876 * @invert: when = 0, unlock the range of blocks within the lower and
877 * upper boundary address
878 * when = 1, unlock the range of blocks outside the boundaries
879 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530880 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700881 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530882 */
883static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
884 uint64_t len, int invert)
885{
886 int ret = 0;
887 int status, page;
888 struct nand_chip *chip = mtd->priv;
889
890 /* Submit address of first page to unlock */
891 page = ofs >> chip->page_shift;
892 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
893
894 /* Submit address of last page to unlock */
895 page = (ofs + len) >> chip->page_shift;
896 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
897 (page | invert) & chip->pagemask);
898
899 /* Call wait ready function */
900 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530901 /* See if device thinks it succeeded */
902 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -0700903 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530904 __func__, status);
905 ret = -EIO;
906 }
907
908 return ret;
909}
910
911/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700912 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700913 * @mtd: mtd info
914 * @ofs: offset to start unlock from
915 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530916 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700917 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530918 */
919int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
920{
921 int ret = 0;
922 int chipnr;
923 struct nand_chip *chip = mtd->priv;
924
Brian Norris289c0522011-07-19 10:06:09 -0700925 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530926 __func__, (unsigned long long)ofs, len);
927
928 if (check_offs_len(mtd, ofs, len))
929 ret = -EINVAL;
930
931 /* Align to last block address if size addresses end of the device */
932 if (ofs + len == mtd->size)
933 len -= mtd->erasesize;
934
935 nand_get_device(chip, mtd, FL_UNLOCKING);
936
937 /* Shift to get chip number */
938 chipnr = ofs >> chip->chip_shift;
939
940 chip->select_chip(mtd, chipnr);
941
942 /* Check, if it is write protected */
943 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700944 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530945 __func__);
946 ret = -EIO;
947 goto out;
948 }
949
950 ret = __nand_unlock(mtd, ofs, len, 0);
951
952out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530953 nand_release_device(mtd);
954
955 return ret;
956}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200957EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530958
959/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700960 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700961 * @mtd: mtd info
962 * @ofs: offset to start unlock from
963 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530964 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700965 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
966 * have this feature, but it allows only to lock all blocks, not for specified
967 * range for block. Implementing 'lock' feature by making use of 'unlock', for
968 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530969 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700970 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530971 */
972int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
973{
974 int ret = 0;
975 int chipnr, status, page;
976 struct nand_chip *chip = mtd->priv;
977
Brian Norris289c0522011-07-19 10:06:09 -0700978 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530979 __func__, (unsigned long long)ofs, len);
980
981 if (check_offs_len(mtd, ofs, len))
982 ret = -EINVAL;
983
984 nand_get_device(chip, mtd, FL_LOCKING);
985
986 /* Shift to get chip number */
987 chipnr = ofs >> chip->chip_shift;
988
989 chip->select_chip(mtd, chipnr);
990
991 /* Check, if it is write protected */
992 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700993 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530994 __func__);
995 status = MTD_ERASE_FAILED;
996 ret = -EIO;
997 goto out;
998 }
999
1000 /* Submit address of first page to lock */
1001 page = ofs >> chip->page_shift;
1002 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1003
1004 /* Call wait ready function */
1005 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301006 /* See if device thinks it succeeded */
1007 if (status & 0x01) {
Brian Norris289c0522011-07-19 10:06:09 -07001008 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301009 __func__, status);
1010 ret = -EIO;
1011 goto out;
1012 }
1013
1014 ret = __nand_unlock(mtd, ofs, len, 0x1);
1015
1016out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301017 nand_release_device(mtd);
1018
1019 return ret;
1020}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001021EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301022
1023/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001024 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001025 * @mtd: mtd info structure
1026 * @chip: nand chip info structure
1027 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001028 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001029 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001030 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001031 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001032 */
1033static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001034 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001035{
1036 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001037 if (oob_required)
1038 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001039 return 0;
1040}
1041
1042/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001043 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001044 * @mtd: mtd info structure
1045 * @chip: nand chip info structure
1046 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001047 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001048 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001049 *
1050 * We need a special oob layout and handling even when OOB isn't used.
1051 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001052static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001053 struct nand_chip *chip, uint8_t *buf,
1054 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001055{
1056 int eccsize = chip->ecc.size;
1057 int eccbytes = chip->ecc.bytes;
1058 uint8_t *oob = chip->oob_poi;
1059 int steps, size;
1060
1061 for (steps = chip->ecc.steps; steps > 0; steps--) {
1062 chip->read_buf(mtd, buf, eccsize);
1063 buf += eccsize;
1064
1065 if (chip->ecc.prepad) {
1066 chip->read_buf(mtd, oob, chip->ecc.prepad);
1067 oob += chip->ecc.prepad;
1068 }
1069
1070 chip->read_buf(mtd, oob, eccbytes);
1071 oob += eccbytes;
1072
1073 if (chip->ecc.postpad) {
1074 chip->read_buf(mtd, oob, chip->ecc.postpad);
1075 oob += chip->ecc.postpad;
1076 }
1077 }
1078
1079 size = mtd->oobsize - (oob - chip->oob_poi);
1080 if (size)
1081 chip->read_buf(mtd, oob, size);
1082
1083 return 0;
1084}
1085
1086/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001087 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001088 * @mtd: mtd info structure
1089 * @chip: nand chip info structure
1090 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001091 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001092 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001093 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001094static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001095 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001097 int i, eccsize = chip->ecc.size;
1098 int eccbytes = chip->ecc.bytes;
1099 int eccsteps = chip->ecc.steps;
1100 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001101 uint8_t *ecc_calc = chip->buffers->ecccalc;
1102 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001103 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001104 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001105
Brian Norris1fbb9382012-05-02 10:14:55 -07001106 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001107
1108 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1109 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1110
1111 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001112 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001113
1114 eccsteps = chip->ecc.steps;
1115 p = buf;
1116
1117 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1118 int stat;
1119
1120 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001121 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001122 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001123 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001124 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001125 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1126 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001127 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001128 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001132 * nand_read_subpage - [REPLACEABLE] software ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001133 * @mtd: mtd info structure
1134 * @chip: nand chip info structure
1135 * @data_offs: offset of requested data within the page
1136 * @readlen: data length
1137 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001138 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001139static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1140 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001141{
1142 int start_step, end_step, num_steps;
1143 uint32_t *eccpos = chip->ecc.layout->eccpos;
1144 uint8_t *p;
1145 int data_col_addr, i, gaps = 0;
1146 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1147 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001148 int index = 0;
Mike Dunn3f91e942012-04-25 12:06:09 -07001149 unsigned int max_bitflips = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001150
Brian Norris7854d3f2011-06-23 14:12:08 -07001151 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001152 start_step = data_offs / chip->ecc.size;
1153 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1154 num_steps = end_step - start_step + 1;
1155
Brian Norris8b6e50c2011-05-25 14:59:01 -07001156 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001157 datafrag_len = num_steps * chip->ecc.size;
1158 eccfrag_len = num_steps * chip->ecc.bytes;
1159
1160 data_col_addr = start_step * chip->ecc.size;
1161 /* If we read not a page aligned data */
1162 if (data_col_addr != 0)
1163 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1164
1165 p = bufpoi + data_col_addr;
1166 chip->read_buf(mtd, p, datafrag_len);
1167
Brian Norris8b6e50c2011-05-25 14:59:01 -07001168 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001169 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1170 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1171
Brian Norris8b6e50c2011-05-25 14:59:01 -07001172 /*
1173 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001174 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001175 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001176 for (i = 0; i < eccfrag_len - 1; i++) {
1177 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1178 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1179 gaps = 1;
1180 break;
1181 }
1182 }
1183 if (gaps) {
1184 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1185 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1186 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001187 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001188 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001189 * about buswidth alignment in read_buf.
1190 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001191 index = start_step * chip->ecc.bytes;
1192
1193 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001194 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001195 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001196 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001197 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001198 aligned_len++;
1199
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001200 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1201 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001202 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1203 }
1204
1205 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001206 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001207
1208 p = bufpoi + data_col_addr;
1209 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1210 int stat;
1211
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001212 stat = chip->ecc.correct(mtd, p,
1213 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001214 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001215 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001216 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001217 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001218 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1219 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001220 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001221 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001222}
1223
1224/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001225 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001226 * @mtd: mtd info structure
1227 * @chip: nand chip info structure
1228 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001229 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001230 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001231 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001232 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001233 */
1234static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001235 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001236{
1237 int i, eccsize = chip->ecc.size;
1238 int eccbytes = chip->ecc.bytes;
1239 int eccsteps = chip->ecc.steps;
1240 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001241 uint8_t *ecc_calc = chip->buffers->ecccalc;
1242 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001243 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001244 unsigned int max_bitflips = 0;
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]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001263 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001264 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001265 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001266 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001267 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1268 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001269 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001270 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001271}
1272
1273/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001274 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001275 * @mtd: mtd info structure
1276 * @chip: nand chip info structure
1277 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001278 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001279 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001280 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001281 * Hardware ECC for large page chips, require OOB to be read first. For this
1282 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1283 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1284 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1285 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001286 */
1287static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001288 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001289{
1290 int i, eccsize = chip->ecc.size;
1291 int eccbytes = chip->ecc.bytes;
1292 int eccsteps = chip->ecc.steps;
1293 uint8_t *p = buf;
1294 uint8_t *ecc_code = chip->buffers->ecccode;
1295 uint32_t *eccpos = chip->ecc.layout->eccpos;
1296 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001297 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001298
1299 /* Read the OOB area first */
1300 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1301 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1302 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1303
1304 for (i = 0; i < chip->ecc.total; i++)
1305 ecc_code[i] = chip->oob_poi[eccpos[i]];
1306
1307 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1308 int stat;
1309
1310 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1311 chip->read_buf(mtd, p, eccsize);
1312 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1313
1314 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Mike Dunn3f91e942012-04-25 12:06:09 -07001315 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001316 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001317 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001318 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001319 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1320 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001321 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001322 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001323}
1324
1325/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001326 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001327 * @mtd: mtd info structure
1328 * @chip: nand chip info structure
1329 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001330 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001331 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001333 * The hw generator calculates the error syndrome automatically. Therefore we
1334 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001335 */
1336static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001337 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001338{
1339 int i, eccsize = chip->ecc.size;
1340 int eccbytes = chip->ecc.bytes;
1341 int eccsteps = chip->ecc.steps;
1342 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001343 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001344 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001345
1346 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1347 int stat;
1348
1349 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1350 chip->read_buf(mtd, p, eccsize);
1351
1352 if (chip->ecc.prepad) {
1353 chip->read_buf(mtd, oob, chip->ecc.prepad);
1354 oob += chip->ecc.prepad;
1355 }
1356
1357 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1358 chip->read_buf(mtd, oob, eccbytes);
1359 stat = chip->ecc.correct(mtd, p, oob, NULL);
1360
Mike Dunn3f91e942012-04-25 12:06:09 -07001361 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001362 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001363 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001364 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001365 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1366 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001367
1368 oob += eccbytes;
1369
1370 if (chip->ecc.postpad) {
1371 chip->read_buf(mtd, oob, chip->ecc.postpad);
1372 oob += chip->ecc.postpad;
1373 }
1374 }
1375
1376 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001377 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001378 if (i)
1379 chip->read_buf(mtd, oob, i);
1380
Mike Dunn3f91e942012-04-25 12:06:09 -07001381 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001382}
1383
1384/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001385 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001386 * @chip: nand chip structure
1387 * @oob: oob destination address
1388 * @ops: oob ops structure
1389 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001390 */
1391static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001392 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001393{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001394 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001395
Brian Norris0612b9d2011-08-30 18:45:40 -07001396 case MTD_OPS_PLACE_OOB:
1397 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001398 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1399 return oob + len;
1400
Brian Norris0612b9d2011-08-30 18:45:40 -07001401 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001402 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001403 uint32_t boffs = 0, roffs = ops->ooboffs;
1404 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001405
Florian Fainellif8ac0412010-09-07 13:23:43 +02001406 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001407 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001408 if (unlikely(roffs)) {
1409 if (roffs >= free->length) {
1410 roffs -= free->length;
1411 continue;
1412 }
1413 boffs = free->offset + roffs;
1414 bytes = min_t(size_t, len,
1415 (free->length - roffs));
1416 roffs = 0;
1417 } else {
1418 bytes = min_t(size_t, len, free->length);
1419 boffs = free->offset;
1420 }
1421 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001422 oob += bytes;
1423 }
1424 return oob;
1425 }
1426 default:
1427 BUG();
1428 }
1429 return NULL;
1430}
1431
1432/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001433 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001434 * @mtd: MTD device structure
1435 * @from: offset to read from
1436 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001437 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001438 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001439 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1441 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001442{
Brian Norrise47f3db2012-05-02 10:14:56 -07001443 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001444 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001445 struct mtd_ecc_stats stats;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001446 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001447 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001448 uint32_t oobreadlen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07001449 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001450 mtd->oobavail : mtd->oobsize;
1451
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001452 uint8_t *bufpoi, *oob, *buf;
Mike Dunnedbc45402012-04-25 12:06:11 -07001453 unsigned int max_bitflips = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001455 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001457 chipnr = (int)(from >> chip->chip_shift);
1458 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001460 realpage = (int)(from >> chip->page_shift);
1461 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001463 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 buf = ops->datbuf;
1466 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001467 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001468
Florian Fainellif8ac0412010-09-07 13:23:43 +02001469 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001470 bytes = min(mtd->writesize - col, readlen);
1471 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001472
Brian Norris8b6e50c2011-05-25 14:59:01 -07001473 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001474 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001475 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Brian Norrisc00a0992012-05-01 17:12:54 -07001477 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Mike Dunnedbc45402012-04-25 12:06:11 -07001479 /*
1480 * Now read the page into the buffer. Absent an error,
1481 * the read methods return max bitflips per ecc step.
1482 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001483 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001484 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001485 oob_required,
1486 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001487 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1488 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001489 ret = chip->ecc.read_subpage(mtd, chip,
1490 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001491 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001492 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001493 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001494 if (ret < 0) {
1495 if (!aligned)
1496 /* Invalidate page cache */
1497 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001498 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001499 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001500
Mike Dunnedbc45402012-04-25 12:06:11 -07001501 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1502
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001503 /* Transfer not aligned data */
1504 if (!aligned) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001505 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norris6d77b9d2011-09-07 13:13:40 -07001506 !(mtd->ecc_stats.failed - stats.failed) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07001507 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001508 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07001509 chip->pagebuf_bitflips = ret;
1510 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07001511 /* Invalidate page cache */
1512 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07001513 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001514 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001516
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001517 buf += bytes;
1518
1519 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001520 int toread = min(oobreadlen, max_oobsize);
1521
1522 if (toread) {
1523 oob = nand_transfer_oob(chip,
1524 oob, ops, toread);
1525 oobreadlen -= toread;
1526 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001527 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001528 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001529 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001530 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07001531 max_bitflips = max_t(unsigned int, max_bitflips,
1532 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001535 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001536
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001537 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001538 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Brian Norris8b6e50c2011-05-25 14:59:01 -07001540 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 col = 0;
1542 /* Increment page address */
1543 realpage++;
1544
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001545 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 /* Check, if we cross a chip boundary */
1547 if (!page) {
1548 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001549 chip->select_chip(mtd, -1);
1550 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001554 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001555 if (oob)
1556 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Mike Dunn3f91e942012-04-25 12:06:09 -07001558 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001559 return ret;
1560
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001561 if (mtd->ecc_stats.failed - stats.failed)
1562 return -EBADMSG;
1563
Mike Dunnedbc45402012-04-25 12:06:11 -07001564 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001565}
1566
1567/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001568 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001569 * @mtd: MTD device structure
1570 * @from: offset to read from
1571 * @len: number of bytes to read
1572 * @retlen: pointer to variable to store the number of read bytes
1573 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001574 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001575 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001576 */
1577static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1578 size_t *retlen, uint8_t *buf)
1579{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001580 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07001581 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001582 int ret;
1583
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001584 nand_get_device(chip, mtd, FL_READING);
Brian Norris4a89ff82011-08-30 18:45:45 -07001585 ops.len = len;
1586 ops.datbuf = buf;
1587 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08001588 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07001589 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07001590 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001591 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001592 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001596 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001597 * @mtd: mtd info structure
1598 * @chip: nand chip info structure
1599 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001600 */
1601static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001602 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001603{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001604 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001605 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001606 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001607}
1608
1609/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001610 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001611 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001612 * @mtd: mtd info structure
1613 * @chip: nand chip info structure
1614 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001615 */
1616static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001617 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001618{
1619 uint8_t *buf = chip->oob_poi;
1620 int length = mtd->oobsize;
1621 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1622 int eccsize = chip->ecc.size;
1623 uint8_t *bufpoi = buf;
1624 int i, toread, sndrnd = 0, pos;
1625
1626 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1627 for (i = 0; i < chip->ecc.steps; i++) {
1628 if (sndrnd) {
1629 pos = eccsize + i * (eccsize + chunk);
1630 if (mtd->writesize > 512)
1631 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1632 else
1633 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1634 } else
1635 sndrnd = 1;
1636 toread = min_t(int, length, chunk);
1637 chip->read_buf(mtd, bufpoi, toread);
1638 bufpoi += toread;
1639 length -= toread;
1640 }
1641 if (length > 0)
1642 chip->read_buf(mtd, bufpoi, length);
1643
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001644 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001645}
1646
1647/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001648 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001649 * @mtd: mtd info structure
1650 * @chip: nand chip info structure
1651 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001652 */
1653static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1654 int page)
1655{
1656 int status = 0;
1657 const uint8_t *buf = chip->oob_poi;
1658 int length = mtd->oobsize;
1659
1660 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1661 chip->write_buf(mtd, buf, length);
1662 /* Send command to program the OOB data */
1663 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1664
1665 status = chip->waitfunc(mtd, chip);
1666
Savin Zlobec0d420f92006-06-21 11:51:20 +02001667 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001668}
1669
1670/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001671 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001672 * with syndrome - only for large page flash
1673 * @mtd: mtd info structure
1674 * @chip: nand chip info structure
1675 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001676 */
1677static int nand_write_oob_syndrome(struct mtd_info *mtd,
1678 struct nand_chip *chip, int page)
1679{
1680 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1681 int eccsize = chip->ecc.size, length = mtd->oobsize;
1682 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1683 const uint8_t *bufpoi = chip->oob_poi;
1684
1685 /*
1686 * data-ecc-data-ecc ... ecc-oob
1687 * or
1688 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1689 */
1690 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1691 pos = steps * (eccsize + chunk);
1692 steps = 0;
1693 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001694 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001695
1696 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1697 for (i = 0; i < steps; i++) {
1698 if (sndcmd) {
1699 if (mtd->writesize <= 512) {
1700 uint32_t fill = 0xFFFFFFFF;
1701
1702 len = eccsize;
1703 while (len > 0) {
1704 int num = min_t(int, len, 4);
1705 chip->write_buf(mtd, (uint8_t *)&fill,
1706 num);
1707 len -= num;
1708 }
1709 } else {
1710 pos = eccsize + i * (eccsize + chunk);
1711 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1712 }
1713 } else
1714 sndcmd = 1;
1715 len = min_t(int, length, chunk);
1716 chip->write_buf(mtd, bufpoi, len);
1717 bufpoi += len;
1718 length -= len;
1719 }
1720 if (length > 0)
1721 chip->write_buf(mtd, bufpoi, length);
1722
1723 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1724 status = chip->waitfunc(mtd, chip);
1725
1726 return status & NAND_STATUS_FAIL ? -EIO : 0;
1727}
1728
1729/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001730 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001731 * @mtd: MTD device structure
1732 * @from: offset to read from
1733 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001735 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001737static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1738 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Brian Norrisc00a0992012-05-01 17:12:54 -07001740 int page, realpage, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001741 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07001742 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03001743 int readlen = ops->ooblen;
1744 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001745 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001746 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Brian Norris289c0522011-07-19 10:06:09 -07001748 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05301749 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Brian Norris041e4572011-06-23 16:45:24 -07001751 stats = mtd->ecc_stats;
1752
Brian Norris0612b9d2011-08-30 18:45:40 -07001753 if (ops->mode == MTD_OPS_AUTO_OOB)
Vitaly Wool70145682006-11-03 18:20:38 +03001754 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001755 else
1756 len = mtd->oobsize;
1757
1758 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001759 pr_debug("%s: attempt to start read outside oob\n",
1760 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001761 return -EINVAL;
1762 }
1763
1764 /* Do not allow reads past end of device */
1765 if (unlikely(from >= mtd->size ||
1766 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1767 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07001768 pr_debug("%s: attempt to read beyond end of device\n",
1769 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001770 return -EINVAL;
1771 }
Vitaly Wool70145682006-11-03 18:20:38 +03001772
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001773 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001774 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001776 /* Shift to get page */
1777 realpage = (int)(from >> chip->page_shift);
1778 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Florian Fainellif8ac0412010-09-07 13:23:43 +02001780 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001781 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001782 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07001783 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001784 ret = chip->ecc.read_oob(mtd, chip, page);
1785
1786 if (ret < 0)
1787 break;
Vitaly Wool70145682006-11-03 18:20:38 +03001788
1789 len = min(len, readlen);
1790 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001791
Vitaly Wool70145682006-11-03 18:20:38 +03001792 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001793 if (!readlen)
1794 break;
1795
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001796 /* Increment page address */
1797 realpage++;
1798
1799 page = realpage & chip->pagemask;
1800 /* Check, if we cross a chip boundary */
1801 if (!page) {
1802 chipnr++;
1803 chip->select_chip(mtd, -1);
1804 chip->select_chip(mtd, chipnr);
1805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03001808 ops->oobretlen = ops->ooblen - readlen;
1809
1810 if (ret < 0)
1811 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07001812
1813 if (mtd->ecc_stats.failed - stats.failed)
1814 return -EBADMSG;
1815
1816 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
1819/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001820 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001821 * @mtd: MTD device structure
1822 * @from: offset to read from
1823 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001825 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001827static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1828 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001830 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001831 int ret = -ENOTSUPP;
1832
1833 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001836 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07001837 pr_debug("%s: attempt to read beyond end of device\n",
1838 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return -EINVAL;
1840 }
1841
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001842 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Florian Fainellif8ac0412010-09-07 13:23:43 +02001844 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07001845 case MTD_OPS_PLACE_OOB:
1846 case MTD_OPS_AUTO_OOB:
1847 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001848 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001849
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001850 default:
1851 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001854 if (!ops->datbuf)
1855 ret = nand_do_read_oob(mtd, from, ops);
1856 else
1857 ret = nand_do_read_ops(mtd, from, ops);
1858
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001859out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001861 return ret;
1862}
1863
1864
1865/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001866 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001867 * @mtd: mtd info structure
1868 * @chip: nand chip info structure
1869 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07001870 * @oob_required: must write chip->oob_poi to OOB
David Brownell52ff49d2009-03-04 12:01:36 -08001871 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001872 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001873 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001874static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001875 const uint8_t *buf, int oob_required)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001876{
1877 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001878 if (oob_required)
1879 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08001880
1881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001884/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001885 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001886 * @mtd: mtd info structure
1887 * @chip: nand chip info structure
1888 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07001889 * @oob_required: must write chip->oob_poi to OOB
David Brownell52ff49d2009-03-04 12:01:36 -08001890 *
1891 * We need a special oob layout and handling even when ECC isn't checked.
1892 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001893static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001894 struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001895 const uint8_t *buf, int oob_required)
David Brownell52ff49d2009-03-04 12:01:36 -08001896{
1897 int eccsize = chip->ecc.size;
1898 int eccbytes = chip->ecc.bytes;
1899 uint8_t *oob = chip->oob_poi;
1900 int steps, size;
1901
1902 for (steps = chip->ecc.steps; steps > 0; steps--) {
1903 chip->write_buf(mtd, buf, eccsize);
1904 buf += eccsize;
1905
1906 if (chip->ecc.prepad) {
1907 chip->write_buf(mtd, oob, chip->ecc.prepad);
1908 oob += chip->ecc.prepad;
1909 }
1910
1911 chip->read_buf(mtd, oob, eccbytes);
1912 oob += eccbytes;
1913
1914 if (chip->ecc.postpad) {
1915 chip->write_buf(mtd, oob, chip->ecc.postpad);
1916 oob += chip->ecc.postpad;
1917 }
1918 }
1919
1920 size = mtd->oobsize - (oob - chip->oob_poi);
1921 if (size)
1922 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08001923
1924 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08001925}
1926/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001927 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001928 * @mtd: mtd info structure
1929 * @chip: nand chip info structure
1930 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07001931 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001932 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001933static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001934 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001935{
1936 int i, eccsize = chip->ecc.size;
1937 int eccbytes = chip->ecc.bytes;
1938 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001939 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001940 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001941 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001942
Brian Norris7854d3f2011-06-23 14:12:08 -07001943 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001944 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1945 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001946
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001947 for (i = 0; i < chip->ecc.total; i++)
1948 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001949
Josh Wufdbad98d2012-06-25 18:07:45 +08001950 return chip->ecc.write_page_raw(mtd, chip, buf, 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001951}
1952
1953/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001954 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001955 * @mtd: mtd info structure
1956 * @chip: nand chip info structure
1957 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07001958 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001959 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001960static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001961 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001962{
1963 int i, eccsize = chip->ecc.size;
1964 int eccbytes = chip->ecc.bytes;
1965 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001966 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001967 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001968 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001969
1970 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1971 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001972 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001973 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1974 }
1975
1976 for (i = 0; i < chip->ecc.total; i++)
1977 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1978
1979 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08001980
1981 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001982}
1983
1984/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001985 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07001986 * @mtd: mtd info structure
1987 * @chip: nand chip info structure
1988 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07001989 * @oob_required: must write chip->oob_poi to OOB
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001990 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001991 * The hw generator calculates the error syndrome automatically. Therefore we
1992 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001993 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001994static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001995 struct nand_chip *chip,
1996 const uint8_t *buf, int oob_required)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001997{
1998 int i, eccsize = chip->ecc.size;
1999 int eccbytes = chip->ecc.bytes;
2000 int eccsteps = chip->ecc.steps;
2001 const uint8_t *p = buf;
2002 uint8_t *oob = chip->oob_poi;
2003
2004 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2005
2006 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2007 chip->write_buf(mtd, p, eccsize);
2008
2009 if (chip->ecc.prepad) {
2010 chip->write_buf(mtd, oob, chip->ecc.prepad);
2011 oob += chip->ecc.prepad;
2012 }
2013
2014 chip->ecc.calculate(mtd, p, oob);
2015 chip->write_buf(mtd, oob, eccbytes);
2016 oob += eccbytes;
2017
2018 if (chip->ecc.postpad) {
2019 chip->write_buf(mtd, oob, chip->ecc.postpad);
2020 oob += chip->ecc.postpad;
2021 }
2022 }
2023
2024 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002025 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002026 if (i)
2027 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002028
2029 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002030}
2031
2032/**
David Woodhouse956e9442006-09-25 17:12:39 +01002033 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002034 * @mtd: MTD device structure
2035 * @chip: NAND chip descriptor
2036 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002037 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002038 * @page: page number to write
2039 * @cached: cached programming
2040 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002041 */
2042static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07002043 const uint8_t *buf, int oob_required, int page,
2044 int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002045{
2046 int status;
2047
2048 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2049
David Woodhouse956e9442006-09-25 17:12:39 +01002050 if (unlikely(raw))
Josh Wufdbad98d2012-06-25 18:07:45 +08002051 status = chip->ecc.write_page_raw(mtd, chip, buf, oob_required);
David Woodhouse956e9442006-09-25 17:12:39 +01002052 else
Josh Wufdbad98d2012-06-25 18:07:45 +08002053 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2054
2055 if (status < 0)
2056 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002057
2058 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002059 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002060 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002061 */
2062 cached = 0;
2063
2064 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2065
2066 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002067 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002068 /*
2069 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002070 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002071 */
2072 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2073 status = chip->errstat(mtd, chip, FL_WRITING, status,
2074 page);
2075
2076 if (status & NAND_STATUS_FAIL)
2077 return -EIO;
2078 } else {
2079 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002080 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002081 }
2082
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002083 return 0;
2084}
2085
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002086/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002087 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002088 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002089 * @oob: oob data buffer
2090 * @len: oob data write length
2091 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002092 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002093static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2094 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002095{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002096 struct nand_chip *chip = mtd->priv;
2097
2098 /*
2099 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2100 * data from a previous OOB read.
2101 */
2102 memset(chip->oob_poi, 0xff, mtd->oobsize);
2103
Florian Fainellif8ac0412010-09-07 13:23:43 +02002104 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002105
Brian Norris0612b9d2011-08-30 18:45:40 -07002106 case MTD_OPS_PLACE_OOB:
2107 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002108 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2109 return oob + len;
2110
Brian Norris0612b9d2011-08-30 18:45:40 -07002111 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002112 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002113 uint32_t boffs = 0, woffs = ops->ooboffs;
2114 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002115
Florian Fainellif8ac0412010-09-07 13:23:43 +02002116 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002117 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002118 if (unlikely(woffs)) {
2119 if (woffs >= free->length) {
2120 woffs -= free->length;
2121 continue;
2122 }
2123 boffs = free->offset + woffs;
2124 bytes = min_t(size_t, len,
2125 (free->length - woffs));
2126 woffs = 0;
2127 } else {
2128 bytes = min_t(size_t, len, free->length);
2129 boffs = free->offset;
2130 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002131 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002132 oob += bytes;
2133 }
2134 return oob;
2135 }
2136 default:
2137 BUG();
2138 }
2139 return NULL;
2140}
2141
Florian Fainellif8ac0412010-09-07 13:23:43 +02002142#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002143
2144/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002145 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002146 * @mtd: MTD device structure
2147 * @to: offset to write to
2148 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002149 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002150 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002151 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002152static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2153 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002154{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002155 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002156 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002157 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002158
2159 uint32_t oobwritelen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07002160 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky782ce792010-02-22 20:39:36 +02002161 mtd->oobavail : mtd->oobsize;
2162
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002163 uint8_t *oob = ops->oobbuf;
2164 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002165 int ret, subpage;
Brian Norrise47f3db2012-05-02 10:14:56 -07002166 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002167
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002168 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002169 if (!writelen)
2170 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002171
Brian Norris8b6e50c2011-05-25 14:59:01 -07002172 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002173 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002174 pr_notice("%s: attempt to write non page aligned data\n",
2175 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002176 return -EINVAL;
2177 }
2178
Thomas Gleixner29072b92006-09-28 15:38:36 +02002179 column = to & (mtd->writesize - 1);
2180 subpage = column || (writelen & (mtd->writesize - 1));
2181
2182 if (subpage && oob)
2183 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002184
Thomas Gleixner6a930962006-06-28 00:11:45 +02002185 chipnr = (int)(to >> chip->chip_shift);
2186 chip->select_chip(mtd, chipnr);
2187
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002188 /* Check, if it is write protected */
2189 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002190 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002191
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002192 realpage = (int)(to >> chip->page_shift);
2193 page = realpage & chip->pagemask;
2194 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2195
2196 /* Invalidate the page cache, when we write to the cached page */
2197 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002198 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002199 chip->pagebuf = -1;
2200
Maxim Levitsky782ce792010-02-22 20:39:36 +02002201 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002202 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002203 return -EINVAL;
2204
Florian Fainellif8ac0412010-09-07 13:23:43 +02002205 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002206 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002207 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002208 uint8_t *wbuf = buf;
2209
Brian Norris8b6e50c2011-05-25 14:59:01 -07002210 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002211 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2212 cached = 0;
2213 bytes = min_t(int, bytes - column, (int) writelen);
2214 chip->pagebuf = -1;
2215 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2216 memcpy(&chip->buffers->databuf[column], buf, bytes);
2217 wbuf = chip->buffers->databuf;
2218 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002219
Maxim Levitsky782ce792010-02-22 20:39:36 +02002220 if (unlikely(oob)) {
2221 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002222 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002223 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002224 } else {
2225 /* We still need to erase leftover OOB data */
2226 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002227 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002228
Brian Norrise47f3db2012-05-02 10:14:56 -07002229 ret = chip->write_page(mtd, chip, wbuf, oob_required, page,
2230 cached, (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002231 if (ret)
2232 break;
2233
2234 writelen -= bytes;
2235 if (!writelen)
2236 break;
2237
Thomas Gleixner29072b92006-09-28 15:38:36 +02002238 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002239 buf += bytes;
2240 realpage++;
2241
2242 page = realpage & chip->pagemask;
2243 /* Check, if we cross a chip boundary */
2244 if (!page) {
2245 chipnr++;
2246 chip->select_chip(mtd, -1);
2247 chip->select_chip(mtd, chipnr);
2248 }
2249 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002250
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002251 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002252 if (unlikely(oob))
2253 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002254 return ret;
2255}
2256
2257/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002258 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002259 * @mtd: MTD device structure
2260 * @to: offset to write to
2261 * @len: number of bytes to write
2262 * @retlen: pointer to variable to store the number of written bytes
2263 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002264 *
2265 * NAND write with ECC. Used when performing writes in interrupt context, this
2266 * may for example be called by mtdoops when writing an oops while in panic.
2267 */
2268static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2269 size_t *retlen, const uint8_t *buf)
2270{
2271 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002272 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002273 int ret;
2274
Brian Norris8b6e50c2011-05-25 14:59:01 -07002275 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002276 panic_nand_wait(mtd, chip, 400);
2277
Brian Norris8b6e50c2011-05-25 14:59:01 -07002278 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002279 panic_nand_get_device(chip, mtd, FL_WRITING);
2280
Brian Norris4a89ff82011-08-30 18:45:45 -07002281 ops.len = len;
2282 ops.datbuf = (uint8_t *)buf;
2283 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08002284 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002285
Brian Norris4a89ff82011-08-30 18:45:45 -07002286 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002287
Brian Norris4a89ff82011-08-30 18:45:45 -07002288 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002289 return ret;
2290}
2291
2292/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002293 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002294 * @mtd: MTD device structure
2295 * @to: offset to write to
2296 * @len: number of bytes to write
2297 * @retlen: pointer to variable to store the number of written bytes
2298 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002300 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002302static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002303 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002305 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002306 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002307 int ret;
2308
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002309 nand_get_device(chip, mtd, FL_WRITING);
Brian Norris4a89ff82011-08-30 18:45:45 -07002310 ops.len = len;
2311 ops.datbuf = (uint8_t *)buf;
2312 ops.oobbuf = NULL;
Huang Shijie11041ae2012-07-03 16:44:14 +08002313 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002314 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002315 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002316 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002317 return ret;
2318}
2319
2320/**
2321 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002322 * @mtd: MTD device structure
2323 * @to: offset to write to
2324 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002325 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002326 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002327 */
2328static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2329 struct mtd_oob_ops *ops)
2330{
Adrian Hunter03736152007-01-31 17:58:29 +02002331 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002332 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Brian Norris289c0522011-07-19 10:06:09 -07002334 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302335 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Brian Norris0612b9d2011-08-30 18:45:40 -07002337 if (ops->mode == MTD_OPS_AUTO_OOB)
Adrian Hunter03736152007-01-31 17:58:29 +02002338 len = chip->ecc.layout->oobavail;
2339 else
2340 len = mtd->oobsize;
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002343 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002344 pr_debug("%s: attempt to write past end of page\n",
2345 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 return -EINVAL;
2347 }
2348
Adrian Hunter03736152007-01-31 17:58:29 +02002349 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002350 pr_debug("%s: attempt to start write outside oob\n",
2351 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002352 return -EINVAL;
2353 }
2354
Jason Liu775adc32011-02-25 13:06:18 +08002355 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002356 if (unlikely(to >= mtd->size ||
2357 ops->ooboffs + ops->ooblen >
2358 ((mtd->size >> chip->page_shift) -
2359 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002360 pr_debug("%s: attempt to write beyond end of device\n",
2361 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002362 return -EINVAL;
2363 }
2364
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002365 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002366 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002368 /* Shift to get page */
2369 page = (int)(to >> chip->page_shift);
2370
2371 /*
2372 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2373 * of my DiskOnChip 2000 test units) will clear the whole data page too
2374 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2375 * it in the doc2000 driver in August 1999. dwmw2.
2376 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002377 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 /* Check, if it is write protected */
2380 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002381 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002384 if (page == chip->pagebuf)
2385 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002387 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002388
Brian Norris0612b9d2011-08-30 18:45:40 -07002389 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002390 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2391 else
2392 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002393
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002394 if (status)
2395 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Vitaly Wool70145682006-11-03 18:20:38 +03002397 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002399 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002400}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002402/**
2403 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002404 * @mtd: MTD device structure
2405 * @to: offset to write to
2406 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002407 */
2408static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2409 struct mtd_oob_ops *ops)
2410{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002411 struct nand_chip *chip = mtd->priv;
2412 int ret = -ENOTSUPP;
2413
2414 ops->retlen = 0;
2415
2416 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002417 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002418 pr_debug("%s: attempt to write beyond end of device\n",
2419 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002420 return -EINVAL;
2421 }
2422
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002423 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002424
Florian Fainellif8ac0412010-09-07 13:23:43 +02002425 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002426 case MTD_OPS_PLACE_OOB:
2427 case MTD_OPS_AUTO_OOB:
2428 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002429 break;
2430
2431 default:
2432 goto out;
2433 }
2434
2435 if (!ops->datbuf)
2436 ret = nand_do_write_oob(mtd, to, ops);
2437 else
2438 ret = nand_do_write_ops(mtd, to, ops);
2439
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002440out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002441 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return ret;
2443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002446 * single_erase_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002447 * @mtd: MTD device structure
2448 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002450 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002452static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002454 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002456 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2457 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
2460/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002461 * multi_erase_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002462 * @mtd: MTD device structure
2463 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002465 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002467static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002469 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002471 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2472 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2473 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2474 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2475 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
2478/**
2479 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002480 * @mtd: MTD device structure
2481 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002483 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002485static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
David Woodhousee0c7d762006-05-13 18:07:53 +01002487 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002489
David A. Marlin30f464b2005-01-17 18:35:25 +00002490#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002492 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002493 * @mtd: MTD device structure
2494 * @instr: erase instruction
2495 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002497 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002499int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2500 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Adrian Hunter69423d92008-12-10 13:37:21 +00002502 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002503 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002504 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002505 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002506 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Brian Norris289c0522011-07-19 10:06:09 -07002508 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2509 __func__, (unsigned long long)instr->addr,
2510 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302512 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002516 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002519 page = (int)(instr->addr >> chip->page_shift);
2520 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002523 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002526 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 /* Check, if it is write protected */
2529 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002530 pr_debug("%s: device is write protected!\n",
2531 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 instr->state = MTD_ERASE_FAILED;
2533 goto erase_exit;
2534 }
2535
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002536 /*
2537 * If BBT requires refresh, set the BBT page mask to see if the BBT
2538 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2539 * can not be matched. This is also done when the bbt is actually
Brian Norris7854d3f2011-06-23 14:12:08 -07002540 * erased to avoid recursive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002541 */
2542 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2543 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 /* Loop through the pages */
2546 len = instr->len;
2547
2548 instr->state = MTD_ERASING;
2549
2550 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01002551 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002552 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2553 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002554 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2555 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 instr->state = MTD_ERASE_FAILED;
2557 goto erase_exit;
2558 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002559
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002560 /*
2561 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002562 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002563 */
2564 if (page <= chip->pagebuf && chip->pagebuf <
2565 (page + pages_per_block))
2566 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002568 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002569
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002570 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002572 /*
2573 * See if operation failed and additional status checks are
2574 * available
2575 */
2576 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2577 status = chip->errstat(mtd, chip, FL_ERASING,
2578 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002581 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002582 pr_debug("%s: failed erase, page 0x%08x\n",
2583 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002585 instr->fail_addr =
2586 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 goto erase_exit;
2588 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002589
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002590 /*
2591 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002592 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002593 */
2594 if (bbt_masked_page != 0xffffffff &&
2595 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002596 rewrite_bbt[chipnr] =
2597 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002600 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 page += pages_per_block;
2602
2603 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002604 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002606 chip->select_chip(mtd, -1);
2607 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002608
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002609 /*
2610 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002611 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002612 */
2613 if (bbt_masked_page != 0xffffffff &&
2614 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2615 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2616 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
2618 }
2619 instr->state = MTD_ERASE_DONE;
2620
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002621erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 /* Deselect and wake up anyone waiting on the device */
2626 nand_release_device(mtd);
2627
David Woodhouse49defc02007-10-06 15:01:59 -04002628 /* Do call back function */
2629 if (!ret)
2630 mtd_erase_callback(instr);
2631
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002632 /*
2633 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002634 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002635 */
2636 if (bbt_masked_page == 0xffffffff || ret)
2637 return ret;
2638
2639 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2640 if (!rewrite_bbt[chipnr])
2641 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002642 /* Update the BBT for chip */
Brian Norris289c0522011-07-19 10:06:09 -07002643 pr_debug("%s: nand_update_bbt (%d:0x%0llx 0x%0x)\n",
2644 __func__, chipnr, rewrite_bbt[chipnr],
2645 chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002646 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002647 }
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 /* Return more or less happy */
2650 return ret;
2651}
2652
2653/**
2654 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002655 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002657 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002659static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002661 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Brian Norris289c0522011-07-19 10:06:09 -07002663 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002666 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002668 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002672 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002673 * @mtd: MTD device structure
2674 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002676static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002678 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
2680
2681/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002682 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002683 * @mtd: MTD device structure
2684 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002686static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002688 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 int ret;
2690
Florian Fainellif8ac0412010-09-07 13:23:43 +02002691 ret = nand_block_isbad(mtd, ofs);
2692 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002693 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 if (ret > 0)
2695 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002696 return ret;
2697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002699 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
2701
2702/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08002703 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
2704 * @mtd: MTD device structure
2705 * @chip: nand chip info structure
2706 * @addr: feature address.
2707 * @subfeature_param: the subfeature parameters, a four bytes array.
2708 */
2709static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
2710 int addr, uint8_t *subfeature_param)
2711{
2712 int status;
2713
2714 if (!chip->onfi_version)
2715 return -EINVAL;
2716
2717 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
2718 chip->write_buf(mtd, subfeature_param, ONFI_SUBFEATURE_PARAM_LEN);
2719 status = chip->waitfunc(mtd, chip);
2720 if (status & NAND_STATUS_FAIL)
2721 return -EIO;
2722 return 0;
2723}
2724
2725/**
2726 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
2727 * @mtd: MTD device structure
2728 * @chip: nand chip info structure
2729 * @addr: feature address.
2730 * @subfeature_param: the subfeature parameters, a four bytes array.
2731 */
2732static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
2733 int addr, uint8_t *subfeature_param)
2734{
2735 if (!chip->onfi_version)
2736 return -EINVAL;
2737
2738 /* clear the sub feature parameters */
2739 memset(subfeature_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
2740
2741 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
2742 chip->read_buf(mtd, subfeature_param, ONFI_SUBFEATURE_PARAM_LEN);
2743 return 0;
2744}
2745
2746/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002747 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002748 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002749 */
2750static int nand_suspend(struct mtd_info *mtd)
2751{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002753
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002754 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002755}
2756
2757/**
2758 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002759 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002760 */
2761static void nand_resume(struct mtd_info *mtd)
2762{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002763 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002764
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002765 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002766 nand_release_device(mtd);
2767 else
Brian Norrisd0370212011-07-19 10:06:08 -07002768 pr_err("%s called for a chip which is not in suspended state\n",
2769 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002770}
2771
Brian Norris8b6e50c2011-05-25 14:59:01 -07002772/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002773static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002774{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002776 if (!chip->chip_delay)
2777 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002780 if (chip->cmdfunc == NULL)
2781 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002784 if (chip->waitfunc == NULL)
2785 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002787 if (!chip->select_chip)
2788 chip->select_chip = nand_select_chip;
2789 if (!chip->read_byte)
2790 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2791 if (!chip->read_word)
2792 chip->read_word = nand_read_word;
2793 if (!chip->block_bad)
2794 chip->block_bad = nand_block_bad;
2795 if (!chip->block_markbad)
2796 chip->block_markbad = nand_default_block_markbad;
2797 if (!chip->write_buf)
2798 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2799 if (!chip->read_buf)
2800 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002801 if (!chip->scan_bbt)
2802 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002803
2804 if (!chip->controller) {
2805 chip->controller = &chip->hwcontrol;
2806 spin_lock_init(&chip->controller->lock);
2807 init_waitqueue_head(&chip->controller->wq);
2808 }
2809
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002810}
2811
Brian Norris8b6e50c2011-05-25 14:59:01 -07002812/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002813static void sanitize_string(uint8_t *s, size_t len)
2814{
2815 ssize_t i;
2816
Brian Norris8b6e50c2011-05-25 14:59:01 -07002817 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002818 s[len - 1] = 0;
2819
Brian Norris8b6e50c2011-05-25 14:59:01 -07002820 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002821 for (i = 0; i < len - 1; i++) {
2822 if (s[i] < ' ' || s[i] > 127)
2823 s[i] = '?';
2824 }
2825
Brian Norris8b6e50c2011-05-25 14:59:01 -07002826 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002827 strim(s);
2828}
2829
2830static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2831{
2832 int i;
2833 while (len--) {
2834 crc ^= *p++ << 8;
2835 for (i = 0; i < 8; i++)
2836 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2837 }
2838
2839 return crc;
2840}
2841
2842/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002843 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002844 */
2845static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002846 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002847{
2848 struct nand_onfi_params *p = &chip->onfi_params;
2849 int i;
2850 int val;
2851
Brian Norris7854d3f2011-06-23 14:12:08 -07002852 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002853 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2854 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2855 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2856 return 0;
2857
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002858 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2859 for (i = 0; i < 3; i++) {
2860 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2861 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2862 le16_to_cpu(p->crc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002863 pr_info("ONFI param page %d valid\n", i);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002864 break;
2865 }
2866 }
2867
2868 if (i == 3)
2869 return 0;
2870
Brian Norris8b6e50c2011-05-25 14:59:01 -07002871 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002872 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002873 if (val & (1 << 5))
2874 chip->onfi_version = 23;
2875 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002876 chip->onfi_version = 22;
2877 else if (val & (1 << 3))
2878 chip->onfi_version = 21;
2879 else if (val & (1 << 2))
2880 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002881 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002882 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002883 else
2884 chip->onfi_version = 0;
2885
2886 if (!chip->onfi_version) {
Brian Norrisd0370212011-07-19 10:06:08 -07002887 pr_info("%s: unsupported ONFI version: %d\n", __func__, val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002888 return 0;
2889 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002890
2891 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2892 sanitize_string(p->model, sizeof(p->model));
2893 if (!mtd->name)
2894 mtd->name = p->model;
2895 mtd->writesize = le32_to_cpu(p->byte_per_page);
2896 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2897 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Matthieu CASTET63795752012-03-19 15:35:25 +01002898 chip->chipsize = le32_to_cpu(p->blocks_per_lun);
2899 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002900 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002901 if (le16_to_cpu(p->features) & 1)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002902 *busw = NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002903
Huang Shijied42b5de2012-02-17 11:22:37 +08002904 pr_info("ONFI flash detected\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002905 return 1;
2906}
2907
2908/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002909 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002910 */
2911static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002912 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002913 int busw,
2914 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002915 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002916{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002917 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002918 u8 id_data[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002921 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Karl Beldanef89a882008-09-15 14:37:29 +02002923 /*
2924 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002925 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002926 */
2927 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002930 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
2932 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002933 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002934 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Brian Norris8b6e50c2011-05-25 14:59:01 -07002936 /*
2937 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002938 * interface concerns can cause random data which looks like a
2939 * possibly credible NAND flash to appear. If the two results do
2940 * not match, ignore the device completely.
2941 */
2942
2943 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2944
Brian Norris4aef9b72012-09-24 20:40:48 -07002945 /* Read entire ID string */
2946 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002947 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002948
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002949 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002950 pr_info("%s: second ID read did not match "
Brian Norrisd0370212011-07-19 10:06:08 -07002951 "%02x,%02x against %02x,%02x\n", __func__,
2952 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002953 return ERR_PTR(-ENODEV);
2954 }
2955
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002956 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002957 type = nand_flash_ids;
2958
2959 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002960 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002961 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002962
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002963 chip->onfi_version = 0;
2964 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002965 /* Check is chip is ONFI compliant */
Brian Norris47450b32012-09-24 20:40:47 -07002966 if (nand_flash_detect_onfi(mtd, chip, &busw))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002967 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002968 }
2969
David Woodhouse5e81e882010-02-26 18:32:56 +00002970 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002971 return ERR_PTR(-ENODEV);
2972
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002973 if (!mtd->name)
2974 mtd->name = type->name;
2975
Adrian Hunter69423d92008-12-10 13:37:21 +00002976 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002977
Huang Shijie12a40a52010-09-27 10:43:53 +08002978 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002979 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002980 busw = chip->init_size(mtd, chip, id_data);
2981 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002982 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002983 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002984 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002985 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002986 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002987
Kevin Cernekee426c4572010-05-04 20:58:03 -07002988 /*
2989 * Field definitions are in the following datasheets:
2990 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002991 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002992 *
2993 * Check for wraparound + Samsung ID + nonzero 6th byte
2994 * to decide what to do.
2995 */
2996 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2997 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002998 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002999 id_data[5] != 0x00) {
3000 /* Calc pagesize */
3001 mtd->writesize = 2048 << (extid & 0x03);
3002 extid >>= 2;
3003 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07003004 switch (extid & 0x03) {
3005 case 1:
3006 mtd->oobsize = 128;
3007 break;
3008 case 2:
3009 mtd->oobsize = 218;
3010 break;
3011 case 3:
3012 mtd->oobsize = 400;
3013 break;
3014 default:
3015 mtd->oobsize = 436;
3016 break;
3017 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003018 extid >>= 2;
3019 /* Calc blocksize */
3020 mtd->erasesize = (128 * 1024) <<
3021 (((extid >> 1) & 0x04) | (extid & 0x03));
3022 busw = 0;
3023 } else {
3024 /* Calc pagesize */
3025 mtd->writesize = 1024 << (extid & 0x03);
3026 extid >>= 2;
3027 /* Calc oobsize */
3028 mtd->oobsize = (8 << (extid & 0x01)) *
3029 (mtd->writesize >> 9);
3030 extid >>= 2;
3031 /* Calc blocksize. Blocksize is multiples of 64KiB */
3032 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3033 extid >>= 2;
3034 /* Get buswidth information */
3035 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3036 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003037 } else {
3038 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003039 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003040 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003041 mtd->erasesize = type->erasesize;
3042 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003043 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003044 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003045
3046 /*
3047 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3048 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003049 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003050 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3051 */
3052 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3053 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3054 id_data[7] == 0x00 && mtd->writesize == 512) {
3055 mtd->erasesize = 128 * 1024;
3056 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3057 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003058 }
Brian Norrisbf7a01b2012-07-13 09:28:24 -07003059 /* Get chip options */
3060 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003061
Brian Norris8b6e50c2011-05-25 14:59:01 -07003062 /*
3063 * Check if chip is not a Samsung device. Do not clear the
3064 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003065 */
3066 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3067 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3068ident_done:
3069
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003070 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003071 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003072 if (nand_manuf_ids[maf_idx].id == *maf_id)
3073 break;
3074 }
3075
3076 /*
3077 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003078 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003079 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003080 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003081 pr_info("NAND device: Manufacturer ID:"
Brian Norrisd0370212011-07-19 10:06:08 -07003082 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
3083 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Brian Norris9a4d4d62011-07-19 10:06:07 -07003084 pr_warn("NAND bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003085 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3086 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003087 return ERR_PTR(-EINVAL);
3088 }
3089
3090 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003091 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003092 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003093 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003094
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003095 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003096 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003097 if (chip->chipsize & 0xffffffff)
3098 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003099 else {
3100 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3101 chip->chip_shift += 32 - 1;
3102 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003103
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003104 chip->badblockbits = 8;
3105
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003106 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003107 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003108 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003109 else
3110 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003111
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003112 /*
3113 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003114 * on Samsung and Hynix MLC devices; stored in first two pages
3115 * of each block on Micron devices with 2KiB pages and on
Brian Norris8c342332011-11-02 13:34:44 -07003116 * SLC Samsung, Hynix, Toshiba, AMD/Spansion, and Macronix.
3117 * All others scan only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003118 */
3119 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3120 (*maf_id == NAND_MFR_SAMSUNG ||
3121 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003122 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003123 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3124 (*maf_id == NAND_MFR_SAMSUNG ||
3125 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003126 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norris8c342332011-11-02 13:34:44 -07003127 *maf_id == NAND_MFR_AMD ||
3128 *maf_id == NAND_MFR_MACRONIX)) ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003129 (mtd->writesize == 2048 &&
3130 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003131 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003132
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003133 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003134 if (chip->options & NAND_4PAGE_ARRAY)
3135 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003136 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003137 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003138
Brian Norris8b6e50c2011-05-25 14:59:01 -07003139 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003140 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3141 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003142
Huang Shijie886bd332012-04-09 11:41:37 +08003143 pr_info("NAND device: Manufacturer ID: 0x%02x, Chip ID: 0x%02x (%s %s),"
3144 " page size: %d, OOB size: %d\n",
3145 *maf_id, *dev_id, nand_manuf_ids[maf_idx].name,
3146 chip->onfi_version ? chip->onfi_params.model : type->name,
3147 mtd->writesize, mtd->oobsize);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003148
3149 return type;
3150}
3151
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003152/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003153 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003154 * @mtd: MTD device structure
3155 * @maxchips: number of chips to scan for
3156 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003157 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003158 * This is the first phase of the normal nand_scan() function. It reads the
3159 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003160 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003161 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003162 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003163int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3164 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003165{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003166 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003167 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003168 struct nand_flash_dev *type;
3169
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003170 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003171 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003172 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003173 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003174
3175 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003176 type = nand_get_flash_type(mtd, chip, busw,
3177 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003178
3179 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003180 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07003181 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003182 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003183 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003186 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003187 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003188 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003189 /* See comment in nand_get_flash_type for reset */
3190 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003192 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003194 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003195 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 break;
3197 }
3198 if (i > 1)
Brian Norris9a4d4d62011-07-19 10:06:07 -07003199 pr_info("%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003202 chip->numchips = i;
3203 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
David Woodhouse3b85c322006-09-25 17:06:53 +01003205 return 0;
3206}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003207EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003208
3209
3210/**
3211 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003212 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003213 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003214 * This is the second phase of the normal nand_scan() function. It fills out
3215 * all the uninitialized function pointers with the defaults and scans for a
3216 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003217 */
3218int nand_scan_tail(struct mtd_info *mtd)
3219{
3220 int i;
3221 struct nand_chip *chip = mtd->priv;
3222
Brian Norrise2414f42012-02-06 13:44:00 -08003223 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
3224 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
3225 !(chip->bbt_options & NAND_BBT_USE_FLASH));
3226
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003227 if (!(chip->options & NAND_OWN_BUFFERS))
3228 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3229 if (!chip->buffers)
3230 return -ENOMEM;
3231
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003232 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003233 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003234
3235 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003236 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003237 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003238 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003239 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003241 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 break;
3243 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003244 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 break;
3246 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003247 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003249 case 128:
3250 chip->ecc.layout = &nand_oob_128;
3251 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003253 pr_warn("No oob scheme defined for oobsize %d\n",
3254 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 BUG();
3256 }
3257 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003258
David Woodhouse956e9442006-09-25 17:12:39 +01003259 if (!chip->write_page)
3260 chip->write_page = nand_write_page;
3261
Huang Shijie7db03ec2012-09-13 14:57:52 +08003262 /* set for ONFI nand */
3263 if (!chip->onfi_set_features)
3264 chip->onfi_set_features = nand_onfi_set_features;
3265 if (!chip->onfi_get_features)
3266 chip->onfi_get_features = nand_onfi_get_features;
3267
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003268 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003269 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003270 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003271 */
David Woodhouse956e9442006-09-25 17:12:39 +01003272
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003273 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003274 case NAND_ECC_HW_OOB_FIRST:
3275 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3276 if (!chip->ecc.calculate || !chip->ecc.correct ||
3277 !chip->ecc.hwctl) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003278 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003279 "hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003280 BUG();
3281 }
3282 if (!chip->ecc.read_page)
3283 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3284
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003285 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003286 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003287 if (!chip->ecc.read_page)
3288 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003289 if (!chip->ecc.write_page)
3290 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003291 if (!chip->ecc.read_page_raw)
3292 chip->ecc.read_page_raw = nand_read_page_raw;
3293 if (!chip->ecc.write_page_raw)
3294 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003295 if (!chip->ecc.read_oob)
3296 chip->ecc.read_oob = nand_read_oob_std;
3297 if (!chip->ecc.write_oob)
3298 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003299
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003300 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003301 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3302 !chip->ecc.hwctl) &&
3303 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003304 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003305 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003306 chip->ecc.write_page == nand_write_page_hwecc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003307 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003308 "hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003309 BUG();
3310 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003311 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003312 if (!chip->ecc.read_page)
3313 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003314 if (!chip->ecc.write_page)
3315 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003316 if (!chip->ecc.read_page_raw)
3317 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3318 if (!chip->ecc.write_page_raw)
3319 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003320 if (!chip->ecc.read_oob)
3321 chip->ecc.read_oob = nand_read_oob_syndrome;
3322 if (!chip->ecc.write_oob)
3323 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003324
Mike Dunne2788c92012-04-25 12:06:10 -07003325 if (mtd->writesize >= chip->ecc.size) {
3326 if (!chip->ecc.strength) {
3327 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
3328 BUG();
3329 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003330 break;
Mike Dunne2788c92012-04-25 12:06:10 -07003331 }
Brian Norris9a4d4d62011-07-19 10:06:07 -07003332 pr_warn("%d byte HW ECC not possible on "
Brian Norrisd0370212011-07-19 10:06:08 -07003333 "%d byte page size, fallback to SW ECC\n",
3334 chip->ecc.size, mtd->writesize);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003335 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003337 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003338 chip->ecc.calculate = nand_calculate_ecc;
3339 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003340 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003341 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003342 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003343 chip->ecc.read_page_raw = nand_read_page_raw;
3344 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003345 chip->ecc.read_oob = nand_read_oob_std;
3346 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003347 if (!chip->ecc.size)
3348 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003349 chip->ecc.bytes = 3;
Mike Dunn6a918ba2012-03-11 14:21:11 -07003350 chip->ecc.strength = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003352
Ivan Djelic193bd402011-03-11 11:05:33 +01003353 case NAND_ECC_SOFT_BCH:
3354 if (!mtd_nand_has_bch()) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003355 pr_warn("CONFIG_MTD_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003356 BUG();
3357 }
3358 chip->ecc.calculate = nand_bch_calculate_ecc;
3359 chip->ecc.correct = nand_bch_correct_data;
3360 chip->ecc.read_page = nand_read_page_swecc;
3361 chip->ecc.read_subpage = nand_read_subpage;
3362 chip->ecc.write_page = nand_write_page_swecc;
3363 chip->ecc.read_page_raw = nand_read_page_raw;
3364 chip->ecc.write_page_raw = nand_write_page_raw;
3365 chip->ecc.read_oob = nand_read_oob_std;
3366 chip->ecc.write_oob = nand_write_oob_std;
3367 /*
3368 * Board driver should supply ecc.size and ecc.bytes values to
3369 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003370 * for details. Otherwise, default to 4 bits for large page
3371 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003372 */
3373 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3374 chip->ecc.size = 512;
3375 chip->ecc.bytes = 7;
3376 }
3377 chip->ecc.priv = nand_bch_init(mtd,
3378 chip->ecc.size,
3379 chip->ecc.bytes,
3380 &chip->ecc.layout);
3381 if (!chip->ecc.priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003382 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003383 BUG();
3384 }
Mike Dunn6a918ba2012-03-11 14:21:11 -07003385 chip->ecc.strength =
Mike Dunne2788c92012-04-25 12:06:10 -07003386 chip->ecc.bytes * 8 / fls(8 * chip->ecc.size);
Ivan Djelic193bd402011-03-11 11:05:33 +01003387 break;
3388
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003389 case NAND_ECC_NONE:
Brian Norris9a4d4d62011-07-19 10:06:07 -07003390 pr_warn("NAND_ECC_NONE selected by board driver. "
Brian Norrisd0370212011-07-19 10:06:08 -07003391 "This is not recommended!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003392 chip->ecc.read_page = nand_read_page_raw;
3393 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003394 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003395 chip->ecc.read_page_raw = nand_read_page_raw;
3396 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003397 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003398 chip->ecc.size = mtd->writesize;
3399 chip->ecc.bytes = 0;
Mike Dunn6a918ba2012-03-11 14:21:11 -07003400 chip->ecc.strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003402
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003404 pr_warn("Invalid NAND_ECC_MODE %d\n", chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003405 BUG();
3406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Brian Norris9ce244b2011-08-30 18:45:37 -07003408 /* For many systems, the standard OOB write also works for raw */
Brian Norrisc46f6482011-08-30 18:45:38 -07003409 if (!chip->ecc.read_oob_raw)
3410 chip->ecc.read_oob_raw = chip->ecc.read_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07003411 if (!chip->ecc.write_oob_raw)
3412 chip->ecc.write_oob_raw = chip->ecc.write_oob;
3413
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003414 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003415 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003416 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003417 */
3418 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003419 for (i = 0; chip->ecc.layout->oobfree[i].length
3420 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003421 chip->ecc.layout->oobavail +=
3422 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003423 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003424
3425 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003426 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003427 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003428 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003429 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003430 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003431 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003432 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003434 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003435
Brian Norris8b6e50c2011-05-25 14:59:01 -07003436 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003437 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3438 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003439 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003440 case 2:
3441 mtd->subpage_sft = 1;
3442 break;
3443 case 4:
3444 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003445 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003446 mtd->subpage_sft = 2;
3447 break;
3448 }
3449 }
3450 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3451
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003452 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003453 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
3455 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003456 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
3458 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003459 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05003461 /* Large page NAND with SOFT_ECC should support subpage reads */
3462 if ((chip->ecc.mode == NAND_ECC_SOFT) && (chip->page_shift > 9))
3463 chip->options |= NAND_SUBPAGE_READ;
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 /* Fill in remaining MTD driver data */
3466 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003467 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3468 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02003469 mtd->_erase = nand_erase;
3470 mtd->_point = NULL;
3471 mtd->_unpoint = NULL;
3472 mtd->_read = nand_read;
3473 mtd->_write = nand_write;
3474 mtd->_panic_write = panic_nand_write;
3475 mtd->_read_oob = nand_read_oob;
3476 mtd->_write_oob = nand_write_oob;
3477 mtd->_sync = nand_sync;
3478 mtd->_lock = NULL;
3479 mtd->_unlock = NULL;
3480 mtd->_suspend = nand_suspend;
3481 mtd->_resume = nand_resume;
3482 mtd->_block_isbad = nand_block_isbad;
3483 mtd->_block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003484 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Mike Dunn6a918ba2012-03-11 14:21:11 -07003486 /* propagate ecc info to mtd_info */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003487 mtd->ecclayout = chip->ecc.layout;
Mike Dunn86c20722012-04-25 12:06:05 -07003488 mtd->ecc_strength = chip->ecc.strength;
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03003489 /*
3490 * Initialize bitflip_threshold to its default prior scan_bbt() call.
3491 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
3492 * properly set.
3493 */
3494 if (!mtd->bitflip_threshold)
3495 mtd->bitflip_threshold = mtd->ecc_strength;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003497 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003498 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003502 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003504EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Brian Norris8b6e50c2011-05-25 14:59:01 -07003506/*
3507 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003508 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003509 * to call us from in-kernel code if the core NAND support is modular.
3510 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003511#ifdef MODULE
3512#define caller_is_module() (1)
3513#else
3514#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003515 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003516#endif
3517
3518/**
3519 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003520 * @mtd: MTD device structure
3521 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003522 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003523 * This fills out all the uninitialized function pointers with the defaults.
3524 * The flash ID is read and the mtd/chip structures are filled with the
3525 * appropriate values. The mtd->owner field must be set to the module of the
3526 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003527 */
3528int nand_scan(struct mtd_info *mtd, int maxchips)
3529{
3530 int ret;
3531
3532 /* Many callers got this wrong, so check for it for a while... */
3533 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07003534 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003535 BUG();
3536 }
3537
David Woodhouse5e81e882010-02-26 18:32:56 +00003538 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003539 if (!ret)
3540 ret = nand_scan_tail(mtd);
3541 return ret;
3542}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003543EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003546 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003547 * @mtd: MTD device structure
3548 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003549void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003551 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Ivan Djelic193bd402011-03-11 11:05:33 +01003553 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3554 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3555
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003556 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Jesper Juhlfa671642005-11-07 01:01:27 -08003558 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003559 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003560 if (!(chip->options & NAND_OWN_BUFFERS))
3561 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003562
3563 /* Free bad block descriptor memory */
3564 if (chip->badblock_pattern && chip->badblock_pattern->options
3565 & NAND_BBT_DYNAMICSTRUCT)
3566 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567}
David Woodhousee0c7d762006-05-13 18:07:53 +01003568EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003569
3570static int __init nand_base_init(void)
3571{
3572 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3573 return 0;
3574}
3575
3576static void __exit nand_base_exit(void)
3577{
3578 led_trigger_unregister_simple(nand_led_trigger);
3579}
3580
3581module_init(nand_base_init);
3582module_exit(nand_base_exit);
3583
David Woodhousee0c7d762006-05-13 18:07:53 +01003584MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003585MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3586MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003587MODULE_DESCRIPTION("Generic NAND flash driver code");