blob: 6a5271256245de51f3374a4cbeafdb2aac4f1b25 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
7 * Basic support for AG-AND chips is provided.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +020010 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020013 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020015 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 * David Woodhouse for adding multichip support
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
19 * rework for 2K page size chips
20 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020021 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Enable cached programming for 2k page size chips
23 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070024 * if we have HW ECC support.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * The AG-AND chips have nice features for speed improvement,
26 * which are not supported yet. Read / program 4 pages in one go.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030027 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License version 2 as
31 * published by the Free Software Foundation.
32 *
33 */
34
David Woodhouse552d9202006-05-14 01:20:46 +010035#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020038#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010045#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/interrupt.h>
47#include <linux/bitops.h>
Richard Purdie8fe833c2006-03-31 02:31:14 -080048#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020049#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/mtd/partitions.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020053static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .eccbytes = 3,
55 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020056 .oobfree = {
57 {.offset = 3,
58 .length = 2},
59 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020060 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020063static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 .eccbytes = 6,
65 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020066 .oobfree = {
67 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020068 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020071static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .eccbytes = 24,
73 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010074 40, 41, 42, 43, 44, 45, 46, 47,
75 48, 49, 50, 51, 52, 53, 54, 55,
76 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020077 .oobfree = {
78 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020079 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Thomas Gleixner81ec5362007-12-12 17:27:03 +010082static struct nand_ecclayout nand_oob_128 = {
83 .eccbytes = 48,
84 .eccpos = {
85 80, 81, 82, 83, 84, 85, 86, 87,
86 88, 89, 90, 91, 92, 93, 94, 95,
87 96, 97, 98, 99, 100, 101, 102, 103,
88 104, 105, 106, 107, 108, 109, 110, 111,
89 112, 113, 114, 115, 116, 117, 118, 119,
90 120, 121, 122, 123, 124, 125, 126, 127},
91 .oobfree = {
92 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020093 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010094};
95
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020096static int nand_get_device(struct nand_chip *chip, struct mtd_info *mtd,
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020097 int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020099static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
100 struct mtd_oob_ops *ops);
101
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200102/*
Joe Perches8e87d782008-02-03 17:22:34 +0200103 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200104 * compiled away when LED support is disabled.
105 */
106DEFINE_LED_TRIGGER(nand_led_trigger);
107
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530108static int check_offs_len(struct mtd_info *mtd,
109 loff_t ofs, uint64_t len)
110{
111 struct nand_chip *chip = mtd->priv;
112 int ret = 0;
113
114 /* Start address must align on block boundary */
115 if (ofs & ((1 << chip->phys_erase_shift) - 1)) {
116 DEBUG(MTD_DEBUG_LEVEL0, "%s: Unaligned address\n", __func__);
117 ret = -EINVAL;
118 }
119
120 /* Length must align on block boundary */
121 if (len & ((1 << chip->phys_erase_shift) - 1)) {
122 DEBUG(MTD_DEBUG_LEVEL0, "%s: Length not block aligned\n",
123 __func__);
124 ret = -EINVAL;
125 }
126
127 /* Do not allow past end of device */
128 if (ofs + len > mtd->size) {
129 DEBUG(MTD_DEBUG_LEVEL0, "%s: Past end of device\n",
130 __func__);
131 ret = -EINVAL;
132 }
133
134 return ret;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/**
138 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700139 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000140 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700141 * Deselect, release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100143static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200145 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* De-select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200148 chip->select_chip(mtd, -1);
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100149
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200150 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200151 spin_lock(&chip->controller->lock);
152 chip->controller->active = NULL;
153 chip->state = FL_READY;
154 wake_up(&chip->controller->wq);
155 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/**
159 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700160 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700162 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200164static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200166 struct nand_chip *chip = mtd->priv;
167 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * nand_read_byte16 - [DEFAULT] read one byte endianess aware from the chip
Brian Norris7854d3f2011-06-23 14:12:08 -0700172 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700173 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700175 * Default read function for 16bit buswidth with endianness conversion.
176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200178static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200180 struct nand_chip *chip = mtd->priv;
181 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700186 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700188 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190static u16 nand_read_word(struct mtd_info *mtd)
191{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200192 struct nand_chip *chip = mtd->priv;
193 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700198 * @mtd: MTD device structure
199 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
201 * Default select function for 1 chip devices.
202 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200203static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200205 struct nand_chip *chip = mtd->priv;
206
207 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200209 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213
214 default:
215 BUG();
216 }
217}
218
219/**
220 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700221 * @mtd: MTD device structure
222 * @buf: data buffer
223 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700225 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200227static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200230 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
David Woodhousee0c7d762006-05-13 18:07:53 +0100232 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200233 writeb(buf[i], chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000237 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700238 * @mtd: MTD device structure
239 * @buf: buffer to store date
240 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700242 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200244static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200247 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
David Woodhousee0c7d762006-05-13 18:07:53 +0100249 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200250 buf[i] = readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000254 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700255 * @mtd: MTD device structure
256 * @buf: buffer containing the data to compare
257 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700259 * Default verify function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200261static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200264 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
David Woodhousee0c7d762006-05-13 18:07:53 +0100266 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200267 if (buf[i] != readb(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 0;
270}
271
272/**
273 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700274 * @mtd: MTD device structure
275 * @buf: data buffer
276 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700278 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200280static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200283 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 *p = (u16 *) buf;
285 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000286
David Woodhousee0c7d762006-05-13 18:07:53 +0100287 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200288 writew(p[i], chip->IO_ADDR_W);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000293 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700294 * @mtd: MTD device structure
295 * @buf: buffer to store date
296 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700298 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200300static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200303 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 u16 *p = (u16 *) buf;
305 len >>= 1;
306
David Woodhousee0c7d762006-05-13 18:07:53 +0100307 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200308 p[i] = readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000312 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700313 * @mtd: MTD device structure
314 * @buf: buffer containing the data to compare
315 * @len: number of bytes to compare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700317 * Default verify function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200319static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 int i;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200322 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 u16 *p = (u16 *) buf;
324 len >>= 1;
325
David Woodhousee0c7d762006-05-13 18:07:53 +0100326 for (i = 0; i < len; i++)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200327 if (p[i] != readw(chip->IO_ADDR_R))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -EFAULT;
329
330 return 0;
331}
332
333/**
334 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700335 * @mtd: MTD device structure
336 * @ofs: offset from device start
337 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000339 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
341static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
342{
343 int page, chipnr, res = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200344 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 u16 bad;
346
Brian Norris5fb15492011-05-31 16:31:21 -0700347 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700348 ofs += mtd->erasesize - mtd->writesize;
349
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100350 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200353 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200355 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200358 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200361 if (chip->options & NAND_BUSWIDTH_16) {
362 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos & 0xFE,
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100363 page);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200364 bad = cpu_to_le16(chip->read_word(mtd));
365 if (chip->badblockpos & 0x1)
Vitaly Wool49196f32005-11-02 16:54:46 +0000366 bad >>= 8;
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200367 else
368 bad &= 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 } else {
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100370 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, page);
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200371 bad = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000373
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200374 if (likely(chip->badblockbits == 8))
375 res = bad != 0xFF;
376 else
377 res = hweight8(bad) < chip->badblockbits;
378
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200379 if (getchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 nand_release_device(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return res;
383}
384
385/**
386 * nand_default_block_markbad - [DEFAULT] mark a block bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700387 * @mtd: MTD device structure
388 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700390 * This is the default implementation, which can be overridden by a hardware
391 * specific driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392*/
393static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
394{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200395 struct nand_chip *chip = mtd->priv;
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200396 uint8_t buf[2] = { 0, 0 };
Brian Norris02ed70b2010-07-21 16:53:47 -0700397 int block, ret, i = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000398
Brian Norris5fb15492011-05-31 16:31:21 -0700399 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700400 ofs += mtd->erasesize - mtd->writesize;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Get block number */
Andre Renaud4226b512007-04-17 13:50:59 -0400403 block = (int)(ofs >> chip->bbt_erase_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200404 if (chip->bbt)
405 chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Brian Norris8b6e50c2011-05-25 14:59:01 -0700407 /* Do we have a flash based bad block table? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700408 if (chip->bbt_options & NAND_BBT_USE_FLASH)
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200409 ret = nand_update_bbt(mtd, ofs);
410 else {
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300411 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412
Brian Norrisa0dc5522011-05-31 16:31:20 -0700413 /*
414 * Write to first two pages if necessary. If we write to more
415 * than one location, the first error encountered quits the
416 * procedure. We write two bytes per location, so we dont have
417 * to mess with 16 bit access.
Brian Norris02ed70b2010-07-21 16:53:47 -0700418 */
419 do {
420 chip->ops.len = chip->ops.ooblen = 2;
421 chip->ops.datbuf = NULL;
422 chip->ops.oobbuf = buf;
423 chip->ops.ooboffs = chip->badblockpos & ~0x01;
424
425 ret = nand_do_write_oob(mtd, ofs, &chip->ops);
426
Brian Norris02ed70b2010-07-21 16:53:47 -0700427 i++;
428 ofs += mtd->writesize;
Brian Norris5fb15492011-05-31 16:31:21 -0700429 } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) &&
Brian Norris02ed70b2010-07-21 16:53:47 -0700430 i < 2);
431
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300432 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200433 }
434 if (!ret)
435 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300436
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000440/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700442 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700444 * Check, if the device is write protected. The function expects, that the
445 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100447static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200449 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200450
Brian Norris8b6e50c2011-05-25 14:59:01 -0700451 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200452 if (chip->options & NAND_BROKEN_XD)
453 return 0;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200456 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
457 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/**
461 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Brian Norris8b6e50c2011-05-25 14:59:01 -0700462 * @mtd: MTD device structure
463 * @ofs: offset from device start
464 * @getchip: 0, if the chip is already selected
465 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
467 * Check, if the block is bad. Either by reading the bad block table or
468 * calling of the scan function.
469 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200470static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
471 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200473 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000474
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200475 if (!chip->bbt)
476 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100479 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200482/**
483 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700484 * @mtd: MTD device structure
485 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200486 *
487 * Helper function for nand_wait_ready used when needing to wait in interrupt
488 * context.
489 */
490static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
491{
492 struct nand_chip *chip = mtd->priv;
493 int i;
494
495 /* Wait for the device to get ready */
496 for (i = 0; i < timeo; i++) {
497 if (chip->dev_ready(mtd))
498 break;
499 touch_softlockup_watchdog();
500 mdelay(1);
501 }
502}
503
Brian Norris7854d3f2011-06-23 14:12:08 -0700504/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100505void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000506{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200507 struct nand_chip *chip = mtd->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100508 unsigned long timeo = jiffies + 2;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000509
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200510 /* 400ms timeout */
511 if (in_interrupt() || oops_in_progress)
512 return panic_nand_wait_ready(mtd, 400);
513
Richard Purdie8fe833c2006-03-31 02:31:14 -0800514 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700515 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000516 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200517 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800518 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700519 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000520 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800521 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000522}
David Woodhouse4b648b02006-09-25 17:05:24 +0100523EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/**
526 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700527 * @mtd: MTD device structure
528 * @command: the command to be sent
529 * @column: the column address for this command, -1 if none
530 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700532 * Send command to NAND device. This function is used for small page devices
533 * (256/512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200535static void nand_command(struct mtd_info *mtd, unsigned int command,
536 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200538 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200539 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Brian Norris8b6e50c2011-05-25 14:59:01 -0700541 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (command == NAND_CMD_SEQIN) {
543 int readcmd;
544
Joern Engel28318772006-05-22 23:18:05 +0200545 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200547 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 readcmd = NAND_CMD_READOOB;
549 } else if (column < 256) {
550 /* First 256 bytes --> READ0 */
551 readcmd = NAND_CMD_READ0;
552 } else {
553 column -= 256;
554 readcmd = NAND_CMD_READ1;
555 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200556 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200557 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200559 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Brian Norris8b6e50c2011-05-25 14:59:01 -0700561 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200562 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
563 /* Serially input address */
564 if (column != -1) {
565 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200566 if (chip->options & NAND_BUSWIDTH_16)
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200567 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200568 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200569 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200571 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200572 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200573 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200574 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200575 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200576 if (chip->chipsize > (32 << 20))
577 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200578 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200579 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000580
581 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700582 * Program and erase have their own busy handlers status and sequential
583 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 case NAND_CMD_PAGEPROG:
588 case NAND_CMD_ERASE1:
589 case NAND_CMD_ERASE2:
590 case NAND_CMD_SEQIN:
591 case NAND_CMD_STATUS:
592 return;
593
594 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200595 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200597 udelay(chip->chip_delay);
598 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200599 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200600 chip->cmd_ctrl(mtd,
601 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200602 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
603 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return;
605
David Woodhousee0c7d762006-05-13 18:07:53 +0100606 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * If we don't have access to the busy pin, we apply the given
610 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100611 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200612 if (!chip->dev_ready) {
613 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700617 /*
618 * Apply this short delay always to ensure that we do wait tWB in
619 * any case on any machine.
620 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100621 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000622
623 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/**
627 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700628 * @mtd: MTD device structure
629 * @command: the command to be sent
630 * @column: the column address for this command, -1 if none
631 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200633 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700634 * devices. We don't have the separate regions as we have in the small page
635 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200637static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
638 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200640 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /* Emulate NAND_CMD_READOOB */
643 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200644 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 command = NAND_CMD_READ0;
646 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000647
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200648 /* Command latch cycle */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200649 chip->cmd_ctrl(mtd, command & 0xff,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200650 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200653 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Serially input address */
656 if (column != -1) {
657 /* Adjust columns for 16 bit buswidth */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200658 if (chip->options & NAND_BUSWIDTH_16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200660 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200661 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200662 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200665 chip->cmd_ctrl(mtd, page_addr, ctrl);
666 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200667 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200669 if (chip->chipsize > (128 << 20))
670 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200671 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200674 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000675
676 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700677 * Program and erase have their own busy handlers status, sequential
678 * in, and deplete1 need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 case NAND_CMD_CACHEDPROG:
683 case NAND_CMD_PAGEPROG:
684 case NAND_CMD_ERASE1:
685 case NAND_CMD_ERASE2:
686 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200687 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000689 case NAND_CMD_DEPLETE1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return;
691
David A. Marlin30f464b2005-01-17 18:35:25 +0000692 case NAND_CMD_STATUS_ERROR:
693 case NAND_CMD_STATUS_ERROR0:
694 case NAND_CMD_STATUS_ERROR1:
695 case NAND_CMD_STATUS_ERROR2:
696 case NAND_CMD_STATUS_ERROR3:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700697 /* Read error status commands require only a short delay */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200698 udelay(chip->chip_delay);
David A. Marlin30f464b2005-01-17 18:35:25 +0000699 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200704 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200705 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
706 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
707 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
708 NAND_NCE | NAND_CTRL_CHANGE);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200709 while (!(chip->read_byte(mtd) & NAND_STATUS_READY))
710 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return;
712
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200713 case NAND_CMD_RNDOUT:
714 /* No ready / busy check necessary */
715 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
716 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
717 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
718 NAND_NCE | NAND_CTRL_CHANGE);
719 return;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200722 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
723 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
724 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
725 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000726
David Woodhousee0c7d762006-05-13 18:07:53 +0100727 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000729 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700731 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100732 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200733 if (!chip->dev_ready) {
734 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000738
Brian Norris8b6e50c2011-05-25 14:59:01 -0700739 /*
740 * Apply this short delay always to ensure that we do wait tWB in
741 * any case on any machine.
742 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100743 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000744
745 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200749 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700750 * @chip: the nand chip descriptor
751 * @mtd: MTD device structure
752 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200753 *
754 * Used when in panic, no locks are taken.
755 */
756static void panic_nand_get_device(struct nand_chip *chip,
757 struct mtd_info *mtd, int new_state)
758{
Brian Norris7854d3f2011-06-23 14:12:08 -0700759 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200760 chip->controller->active = chip;
761 chip->state = new_state;
762}
763
764/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700766 * @chip: the nand chip descriptor
767 * @mtd: MTD device structure
768 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * Get the device and lock it for exclusive access
771 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200772static int
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200773nand_get_device(struct nand_chip *chip, struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200775 spinlock_t *lock = &chip->controller->lock;
776 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100777 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200778retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100779 spin_lock(lock);
780
vimal singhb8b3ee92009-07-09 20:41:22 +0530781 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200782 if (!chip->controller->active)
783 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200784
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200785 if (chip->controller->active == chip && chip->state == FL_READY) {
786 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100787 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100788 return 0;
789 }
790 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800791 if (chip->controller->active->state == FL_PM_SUSPENDED) {
792 chip->state = FL_PM_SUSPENDED;
793 spin_unlock(lock);
794 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800795 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100796 }
797 set_current_state(TASK_UNINTERRUPTIBLE);
798 add_wait_queue(wq, &wait);
799 spin_unlock(lock);
800 schedule();
801 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto retry;
803}
804
805/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700806 * panic_nand_wait - [GENERIC] wait until the command is done
807 * @mtd: MTD device structure
808 * @chip: NAND chip structure
809 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200810 *
811 * Wait for command done. This is a helper function for nand_wait used when
812 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400813 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200814 */
815static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
816 unsigned long timeo)
817{
818 int i;
819 for (i = 0; i < timeo; i++) {
820 if (chip->dev_ready) {
821 if (chip->dev_ready(mtd))
822 break;
823 } else {
824 if (chip->read_byte(mtd) & NAND_STATUS_READY)
825 break;
826 }
827 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200828 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200829}
830
831/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700832 * nand_wait - [DEFAULT] wait until the command is done
833 * @mtd: MTD device structure
834 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700836 * Wait for command done. This applies to erase and program only. Erase can
837 * take up to 400ms and program up to 20ms according to general NAND and
838 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700839 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200840static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842
David Woodhousee0c7d762006-05-13 18:07:53 +0100843 unsigned long timeo = jiffies;
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200844 int status, state = chip->state;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (state == FL_ERASING)
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 timeo += (HZ * 400) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100849 timeo += (HZ * 20) / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Richard Purdie8fe833c2006-03-31 02:31:14 -0800851 led_trigger_event(nand_led_trigger, LED_FULL);
852
Brian Norris8b6e50c2011-05-25 14:59:01 -0700853 /*
854 * Apply this short delay always to ensure that we do wait tWB in any
855 * case on any machine.
856 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100857 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200859 if ((state == FL_ERASING) && (chip->options & NAND_IS_AND))
860 chip->cmdfunc(mtd, NAND_CMD_STATUS_MULTI, -1, -1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000861 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200862 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200864 if (in_interrupt() || oops_in_progress)
865 panic_nand_wait(mtd, chip, timeo);
866 else {
867 while (time_before(jiffies, timeo)) {
868 if (chip->dev_ready) {
869 if (chip->dev_ready(mtd))
870 break;
871 } else {
872 if (chip->read_byte(mtd) & NAND_STATUS_READY)
873 break;
874 }
875 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800878 led_trigger_event(nand_led_trigger, LED_OFF);
879
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200880 status = (int)chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return status;
882}
883
884/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700885 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700886 * @mtd: mtd info
887 * @ofs: offset to start unlock from
888 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700889 * @invert: when = 0, unlock the range of blocks within the lower and
890 * upper boundary address
891 * when = 1, unlock the range of blocks outside the boundaries
892 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530893 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700894 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530895 */
896static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
897 uint64_t len, int invert)
898{
899 int ret = 0;
900 int status, page;
901 struct nand_chip *chip = mtd->priv;
902
903 /* Submit address of first page to unlock */
904 page = ofs >> chip->page_shift;
905 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
906
907 /* Submit address of last page to unlock */
908 page = (ofs + len) >> chip->page_shift;
909 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
910 (page | invert) & chip->pagemask);
911
912 /* Call wait ready function */
913 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530914 /* See if device thinks it succeeded */
915 if (status & 0x01) {
916 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
917 __func__, status);
918 ret = -EIO;
919 }
920
921 return ret;
922}
923
924/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700925 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700926 * @mtd: mtd info
927 * @ofs: offset to start unlock from
928 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530929 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700930 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530931 */
932int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
933{
934 int ret = 0;
935 int chipnr;
936 struct nand_chip *chip = mtd->priv;
937
938 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
939 __func__, (unsigned long long)ofs, len);
940
941 if (check_offs_len(mtd, ofs, len))
942 ret = -EINVAL;
943
944 /* Align to last block address if size addresses end of the device */
945 if (ofs + len == mtd->size)
946 len -= mtd->erasesize;
947
948 nand_get_device(chip, mtd, FL_UNLOCKING);
949
950 /* Shift to get chip number */
951 chipnr = ofs >> chip->chip_shift;
952
953 chip->select_chip(mtd, chipnr);
954
955 /* Check, if it is write protected */
956 if (nand_check_wp(mtd)) {
957 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
958 __func__);
959 ret = -EIO;
960 goto out;
961 }
962
963 ret = __nand_unlock(mtd, ofs, len, 0);
964
965out:
Vimal Singh7d70f332010-02-08 15:50:49 +0530966 nand_release_device(mtd);
967
968 return ret;
969}
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200970EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +0530971
972/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700973 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700974 * @mtd: mtd info
975 * @ofs: offset to start unlock from
976 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530977 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700978 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
979 * have this feature, but it allows only to lock all blocks, not for specified
980 * range for block. Implementing 'lock' feature by making use of 'unlock', for
981 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +0530982 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700983 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530984 */
985int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
986{
987 int ret = 0;
988 int chipnr, status, page;
989 struct nand_chip *chip = mtd->priv;
990
991 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
992 __func__, (unsigned long long)ofs, len);
993
994 if (check_offs_len(mtd, ofs, len))
995 ret = -EINVAL;
996
997 nand_get_device(chip, mtd, FL_LOCKING);
998
999 /* Shift to get chip number */
1000 chipnr = ofs >> chip->chip_shift;
1001
1002 chip->select_chip(mtd, chipnr);
1003
1004 /* Check, if it is write protected */
1005 if (nand_check_wp(mtd)) {
1006 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
1007 __func__);
1008 status = MTD_ERASE_FAILED;
1009 ret = -EIO;
1010 goto out;
1011 }
1012
1013 /* Submit address of first page to lock */
1014 page = ofs >> chip->page_shift;
1015 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1016
1017 /* Call wait ready function */
1018 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301019 /* See if device thinks it succeeded */
1020 if (status & 0x01) {
1021 DEBUG(MTD_DEBUG_LEVEL0, "%s: Error status = 0x%08x\n",
1022 __func__, status);
1023 ret = -EIO;
1024 goto out;
1025 }
1026
1027 ret = __nand_unlock(mtd, ofs, len, 0x1);
1028
1029out:
Vimal Singh7d70f332010-02-08 15:50:49 +05301030 nand_release_device(mtd);
1031
1032 return ret;
1033}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001034EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301035
1036/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001037 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001038 * @mtd: mtd info structure
1039 * @chip: nand chip info structure
1040 * @buf: buffer to store read data
1041 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001042 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001043 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001044 */
1045static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001046 uint8_t *buf, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001047{
1048 chip->read_buf(mtd, buf, mtd->writesize);
1049 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1050 return 0;
1051}
1052
1053/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001054 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001055 * @mtd: mtd info structure
1056 * @chip: nand chip info structure
1057 * @buf: buffer to store read data
1058 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001059 *
1060 * We need a special oob layout and handling even when OOB isn't used.
1061 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001062static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
1063 struct nand_chip *chip,
1064 uint8_t *buf, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001065{
1066 int eccsize = chip->ecc.size;
1067 int eccbytes = chip->ecc.bytes;
1068 uint8_t *oob = chip->oob_poi;
1069 int steps, size;
1070
1071 for (steps = chip->ecc.steps; steps > 0; steps--) {
1072 chip->read_buf(mtd, buf, eccsize);
1073 buf += eccsize;
1074
1075 if (chip->ecc.prepad) {
1076 chip->read_buf(mtd, oob, chip->ecc.prepad);
1077 oob += chip->ecc.prepad;
1078 }
1079
1080 chip->read_buf(mtd, oob, eccbytes);
1081 oob += eccbytes;
1082
1083 if (chip->ecc.postpad) {
1084 chip->read_buf(mtd, oob, chip->ecc.postpad);
1085 oob += chip->ecc.postpad;
1086 }
1087 }
1088
1089 size = mtd->oobsize - (oob - chip->oob_poi);
1090 if (size)
1091 chip->read_buf(mtd, oob, size);
1092
1093 return 0;
1094}
1095
1096/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001097 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001098 * @mtd: mtd info structure
1099 * @chip: nand chip info structure
1100 * @buf: buffer to store read data
1101 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001102 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001103static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001104 uint8_t *buf, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001106 int i, eccsize = chip->ecc.size;
1107 int eccbytes = chip->ecc.bytes;
1108 int eccsteps = chip->ecc.steps;
1109 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001110 uint8_t *ecc_calc = chip->buffers->ecccalc;
1111 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001112 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001113
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001114 chip->ecc.read_page_raw(mtd, chip, buf, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001115
1116 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1117 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1118
1119 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001120 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001121
1122 eccsteps = chip->ecc.steps;
1123 p = buf;
1124
1125 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1126 int stat;
1127
1128 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001129 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001130 mtd->ecc_stats.failed++;
1131 else
1132 mtd->ecc_stats.corrected += stat;
1133 }
1134 return 0;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001135}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001138 * nand_read_subpage - [REPLACEABLE] software ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001139 * @mtd: mtd info structure
1140 * @chip: nand chip info structure
1141 * @data_offs: offset of requested data within the page
1142 * @readlen: data length
1143 * @bufpoi: buffer to store read data
Alexey Korolev3d459552008-05-15 17:23:18 +01001144 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001145static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1146 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi)
Alexey Korolev3d459552008-05-15 17:23:18 +01001147{
1148 int start_step, end_step, num_steps;
1149 uint32_t *eccpos = chip->ecc.layout->eccpos;
1150 uint8_t *p;
1151 int data_col_addr, i, gaps = 0;
1152 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1153 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001154 int index = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001155
Brian Norris7854d3f2011-06-23 14:12:08 -07001156 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001157 start_step = data_offs / chip->ecc.size;
1158 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1159 num_steps = end_step - start_step + 1;
1160
Brian Norris8b6e50c2011-05-25 14:59:01 -07001161 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001162 datafrag_len = num_steps * chip->ecc.size;
1163 eccfrag_len = num_steps * chip->ecc.bytes;
1164
1165 data_col_addr = start_step * chip->ecc.size;
1166 /* If we read not a page aligned data */
1167 if (data_col_addr != 0)
1168 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1169
1170 p = bufpoi + data_col_addr;
1171 chip->read_buf(mtd, p, datafrag_len);
1172
Brian Norris8b6e50c2011-05-25 14:59:01 -07001173 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001174 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1175 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1176
Brian Norris8b6e50c2011-05-25 14:59:01 -07001177 /*
1178 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001179 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001181 for (i = 0; i < eccfrag_len - 1; i++) {
1182 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1183 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1184 gaps = 1;
1185 break;
1186 }
1187 }
1188 if (gaps) {
1189 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1190 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1191 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001192 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001193 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001194 * about buswidth alignment in read_buf.
1195 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001196 index = start_step * chip->ecc.bytes;
1197
1198 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001199 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001200 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001201 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001202 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001203 aligned_len++;
1204
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001205 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1206 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001207 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1208 }
1209
1210 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001211 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001212
1213 p = bufpoi + data_col_addr;
1214 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1215 int stat;
1216
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001217 stat = chip->ecc.correct(mtd, p,
1218 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Baruch Siach12c8eb92010-08-09 07:20:23 +03001219 if (stat < 0)
Alexey Korolev3d459552008-05-15 17:23:18 +01001220 mtd->ecc_stats.failed++;
1221 else
1222 mtd->ecc_stats.corrected += stat;
1223 }
1224 return 0;
1225}
1226
1227/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001228 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001229 * @mtd: mtd info structure
1230 * @chip: nand chip info structure
1231 * @buf: buffer to store read data
1232 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001233 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001234 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001235 */
1236static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001237 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001238{
1239 int i, eccsize = chip->ecc.size;
1240 int eccbytes = chip->ecc.bytes;
1241 int eccsteps = chip->ecc.steps;
1242 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001243 uint8_t *ecc_calc = chip->buffers->ecccalc;
1244 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001245 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001246
1247 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1248 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1249 chip->read_buf(mtd, p, eccsize);
1250 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1251 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001252 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001253
1254 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001255 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001256
1257 eccsteps = chip->ecc.steps;
1258 p = buf;
1259
1260 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1261 int stat;
1262
1263 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001264 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001265 mtd->ecc_stats.failed++;
1266 else
1267 mtd->ecc_stats.corrected += stat;
1268 }
1269 return 0;
1270}
1271
1272/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001273 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001274 * @mtd: mtd info structure
1275 * @chip: nand chip info structure
1276 * @buf: buffer to store read data
1277 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001278 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001279 * Hardware ECC for large page chips, require OOB to be read first. For this
1280 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1281 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1282 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1283 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001284 */
1285static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
1286 struct nand_chip *chip, uint8_t *buf, int page)
1287{
1288 int i, eccsize = chip->ecc.size;
1289 int eccbytes = chip->ecc.bytes;
1290 int eccsteps = chip->ecc.steps;
1291 uint8_t *p = buf;
1292 uint8_t *ecc_code = chip->buffers->ecccode;
1293 uint32_t *eccpos = chip->ecc.layout->eccpos;
1294 uint8_t *ecc_calc = chip->buffers->ecccalc;
1295
1296 /* Read the OOB area first */
1297 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1298 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1299 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1300
1301 for (i = 0; i < chip->ecc.total; i++)
1302 ecc_code[i] = chip->oob_poi[eccpos[i]];
1303
1304 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1305 int stat;
1306
1307 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1308 chip->read_buf(mtd, p, eccsize);
1309 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1310
1311 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
1312 if (stat < 0)
1313 mtd->ecc_stats.failed++;
1314 else
1315 mtd->ecc_stats.corrected += stat;
1316 }
1317 return 0;
1318}
1319
1320/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001321 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001322 * @mtd: mtd info structure
1323 * @chip: nand chip info structure
1324 * @buf: buffer to store read data
1325 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001326 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001327 * The hw generator calculates the error syndrome automatically. Therefore we
1328 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001329 */
1330static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001331 uint8_t *buf, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332{
1333 int i, eccsize = chip->ecc.size;
1334 int eccbytes = chip->ecc.bytes;
1335 int eccsteps = chip->ecc.steps;
1336 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001337 uint8_t *oob = chip->oob_poi;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001338
1339 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1340 int stat;
1341
1342 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1343 chip->read_buf(mtd, p, eccsize);
1344
1345 if (chip->ecc.prepad) {
1346 chip->read_buf(mtd, oob, chip->ecc.prepad);
1347 oob += chip->ecc.prepad;
1348 }
1349
1350 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1351 chip->read_buf(mtd, oob, eccbytes);
1352 stat = chip->ecc.correct(mtd, p, oob, NULL);
1353
Matt Reimerc32b8dc2007-10-17 14:33:23 -07001354 if (stat < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001355 mtd->ecc_stats.failed++;
1356 else
1357 mtd->ecc_stats.corrected += stat;
1358
1359 oob += eccbytes;
1360
1361 if (chip->ecc.postpad) {
1362 chip->read_buf(mtd, oob, chip->ecc.postpad);
1363 oob += chip->ecc.postpad;
1364 }
1365 }
1366
1367 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001368 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001369 if (i)
1370 chip->read_buf(mtd, oob, i);
1371
1372 return 0;
1373}
1374
1375/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001376 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001377 * @chip: nand chip structure
1378 * @oob: oob destination address
1379 * @ops: oob ops structure
1380 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001381 */
1382static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001383 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001384{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001385 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001386
1387 case MTD_OOB_PLACE:
1388 case MTD_OOB_RAW:
1389 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1390 return oob + len;
1391
1392 case MTD_OOB_AUTO: {
1393 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001394 uint32_t boffs = 0, roffs = ops->ooboffs;
1395 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001396
Florian Fainellif8ac0412010-09-07 13:23:43 +02001397 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001398 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001399 if (unlikely(roffs)) {
1400 if (roffs >= free->length) {
1401 roffs -= free->length;
1402 continue;
1403 }
1404 boffs = free->offset + roffs;
1405 bytes = min_t(size_t, len,
1406 (free->length - roffs));
1407 roffs = 0;
1408 } else {
1409 bytes = min_t(size_t, len, free->length);
1410 boffs = free->offset;
1411 }
1412 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001413 oob += bytes;
1414 }
1415 return oob;
1416 }
1417 default:
1418 BUG();
1419 }
1420 return NULL;
1421}
1422
1423/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001424 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001425 * @mtd: MTD device structure
1426 * @from: offset to read from
1427 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001428 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001429 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001430 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001431static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1432 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001433{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001434 int chipnr, page, realpage, col, bytes, aligned;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001435 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001436 struct mtd_ecc_stats stats;
1437 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
1438 int sndcmd = 1;
1439 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001440 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001441 uint32_t oobreadlen = ops->ooblen;
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001442 uint32_t max_oobsize = ops->mode == MTD_OOB_AUTO ?
1443 mtd->oobavail : mtd->oobsize;
1444
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001445 uint8_t *bufpoi, *oob, *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001447 stats = mtd->ecc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001449 chipnr = (int)(from >> chip->chip_shift);
1450 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001452 realpage = (int)(from >> chip->page_shift);
1453 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001455 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001457 buf = ops->datbuf;
1458 oob = ops->oobbuf;
1459
Florian Fainellif8ac0412010-09-07 13:23:43 +02001460 while (1) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001461 bytes = min(mtd->writesize - col, readlen);
1462 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001463
Brian Norris8b6e50c2011-05-25 14:59:01 -07001464 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001465 if (realpage != chip->pagebuf || oob) {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001466 bufpoi = aligned ? buf : chip->buffers->databuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001468 if (likely(sndcmd)) {
1469 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
1470 sndcmd = 0;
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001473 /* Now read the page into the buffer */
David Woodhouse956e9442006-09-25 17:12:39 +01001474 if (unlikely(ops->mode == MTD_OOB_RAW))
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001475 ret = chip->ecc.read_page_raw(mtd, chip,
1476 bufpoi, page);
Alexey Korolev3d459552008-05-15 17:23:18 +01001477 else if (!aligned && NAND_SUBPAGE_READ(chip) && !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001478 ret = chip->ecc.read_subpage(mtd, chip,
1479 col, bytes, bufpoi);
David Woodhouse956e9442006-09-25 17:12:39 +01001480 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001481 ret = chip->ecc.read_page(mtd, chip, bufpoi,
1482 page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001483 if (ret < 0)
David Woodhousee0c7d762006-05-13 18:07:53 +01001484 break;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001485
1486 /* Transfer not aligned data */
1487 if (!aligned) {
Artem Bityutskiyc1194c72010-09-03 22:01:16 +03001488 if (!NAND_SUBPAGE_READ(chip) && !oob &&
1489 !(mtd->ecc_stats.failed - stats.failed))
Alexey Korolev3d459552008-05-15 17:23:18 +01001490 chip->pagebuf = realpage;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001491 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001493
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001494 buf += bytes;
1495
1496 if (unlikely(oob)) {
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001497
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001498 int toread = min(oobreadlen, max_oobsize);
1499
1500 if (toread) {
1501 oob = nand_transfer_oob(chip,
1502 oob, ops, toread);
1503 oobreadlen -= toread;
1504 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001505 }
1506
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001507 if (!(chip->options & NAND_NO_READRDY)) {
1508 /*
1509 * Apply delay or wait for ready/busy pin. Do
1510 * this before the AUTOINCR check, so no
1511 * problems arise if a chip which does auto
1512 * increment is marked as NOAUTOINCR by the
1513 * board driver.
1514 */
1515 if (!chip->dev_ready)
1516 udelay(chip->chip_delay);
1517 else
1518 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001520 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001521 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001522 buf += bytes;
1523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001525 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001526
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001527 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Brian Norris8b6e50c2011-05-25 14:59:01 -07001530 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 col = 0;
1532 /* Increment page address */
1533 realpage++;
1534
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001535 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 /* Check, if we cross a chip boundary */
1537 if (!page) {
1538 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001539 chip->select_chip(mtd, -1);
1540 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001542
Brian Norris8b6e50c2011-05-25 14:59:01 -07001543 /*
1544 * Check, if the chip supports auto page increment or if we
1545 * have hit a block boundary.
David Woodhousee0c7d762006-05-13 18:07:53 +01001546 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001547 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001548 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001551 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001552 if (oob)
1553 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001555 if (ret)
1556 return ret;
1557
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001558 if (mtd->ecc_stats.failed - stats.failed)
1559 return -EBADMSG;
1560
1561 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001562}
1563
1564/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001565 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001566 * @mtd: MTD device structure
1567 * @from: offset to read from
1568 * @len: number of bytes to read
1569 * @retlen: pointer to variable to store the number of read bytes
1570 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001571 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001572 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001573 */
1574static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1575 size_t *retlen, uint8_t *buf)
1576{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001577 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001578 int ret;
1579
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001580 /* Do not allow reads past end of device */
1581 if ((from + len) > mtd->size)
1582 return -EINVAL;
1583 if (!len)
1584 return 0;
1585
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001586 nand_get_device(chip, mtd, FL_READING);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001587
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001588 chip->ops.len = len;
1589 chip->ops.datbuf = buf;
1590 chip->ops.oobbuf = NULL;
1591
1592 ret = nand_do_read_ops(mtd, from, &chip->ops);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001593
Richard Purdie7fd5aec2006-08-27 01:23:33 -07001594 *retlen = chip->ops.retlen;
1595
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001596 nand_release_device(mtd);
1597
1598 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
1601/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001602 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001603 * @mtd: mtd info structure
1604 * @chip: nand chip info structure
1605 * @page: page number to read
1606 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001607 */
1608static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1609 int page, int sndcmd)
1610{
1611 if (sndcmd) {
1612 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1613 sndcmd = 0;
1614 }
1615 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1616 return sndcmd;
1617}
1618
1619/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001620 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001621 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001622 * @mtd: mtd info structure
1623 * @chip: nand chip info structure
1624 * @page: page number to read
1625 * @sndcmd: flag whether to issue read command or not
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001626 */
1627static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1628 int page, int sndcmd)
1629{
1630 uint8_t *buf = chip->oob_poi;
1631 int length = mtd->oobsize;
1632 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1633 int eccsize = chip->ecc.size;
1634 uint8_t *bufpoi = buf;
1635 int i, toread, sndrnd = 0, pos;
1636
1637 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1638 for (i = 0; i < chip->ecc.steps; i++) {
1639 if (sndrnd) {
1640 pos = eccsize + i * (eccsize + chunk);
1641 if (mtd->writesize > 512)
1642 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1643 else
1644 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1645 } else
1646 sndrnd = 1;
1647 toread = min_t(int, length, chunk);
1648 chip->read_buf(mtd, bufpoi, toread);
1649 bufpoi += toread;
1650 length -= toread;
1651 }
1652 if (length > 0)
1653 chip->read_buf(mtd, bufpoi, length);
1654
1655 return 1;
1656}
1657
1658/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001659 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001660 * @mtd: mtd info structure
1661 * @chip: nand chip info structure
1662 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001663 */
1664static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1665 int page)
1666{
1667 int status = 0;
1668 const uint8_t *buf = chip->oob_poi;
1669 int length = mtd->oobsize;
1670
1671 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1672 chip->write_buf(mtd, buf, length);
1673 /* Send command to program the OOB data */
1674 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1675
1676 status = chip->waitfunc(mtd, chip);
1677
Savin Zlobec0d420f92006-06-21 11:51:20 +02001678 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001679}
1680
1681/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001682 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001683 * with syndrome - only for large page flash
1684 * @mtd: mtd info structure
1685 * @chip: nand chip info structure
1686 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001687 */
1688static int nand_write_oob_syndrome(struct mtd_info *mtd,
1689 struct nand_chip *chip, int page)
1690{
1691 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1692 int eccsize = chip->ecc.size, length = mtd->oobsize;
1693 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1694 const uint8_t *bufpoi = chip->oob_poi;
1695
1696 /*
1697 * data-ecc-data-ecc ... ecc-oob
1698 * or
1699 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1700 */
1701 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1702 pos = steps * (eccsize + chunk);
1703 steps = 0;
1704 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001705 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001706
1707 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1708 for (i = 0; i < steps; i++) {
1709 if (sndcmd) {
1710 if (mtd->writesize <= 512) {
1711 uint32_t fill = 0xFFFFFFFF;
1712
1713 len = eccsize;
1714 while (len > 0) {
1715 int num = min_t(int, len, 4);
1716 chip->write_buf(mtd, (uint8_t *)&fill,
1717 num);
1718 len -= num;
1719 }
1720 } else {
1721 pos = eccsize + i * (eccsize + chunk);
1722 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1723 }
1724 } else
1725 sndcmd = 1;
1726 len = min_t(int, length, chunk);
1727 chip->write_buf(mtd, bufpoi, len);
1728 bufpoi += len;
1729 length -= len;
1730 }
1731 if (length > 0)
1732 chip->write_buf(mtd, bufpoi, length);
1733
1734 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1735 status = chip->waitfunc(mtd, chip);
1736
1737 return status & NAND_STATUS_FAIL ? -EIO : 0;
1738}
1739
1740/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001741 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001742 * @mtd: MTD device structure
1743 * @from: offset to read from
1744 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001746 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001748static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1749 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001751 int page, realpage, chipnr, sndcmd = 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001752 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07001753 struct mtd_ecc_stats stats;
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001754 int blkcheck = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
Vitaly Wool70145682006-11-03 18:20:38 +03001755 int readlen = ops->ooblen;
1756 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001757 uint8_t *buf = ops->oobbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
vimal singh20d8e242009-07-07 15:49:49 +05301759 DEBUG(MTD_DEBUG_LEVEL3, "%s: from = 0x%08Lx, len = %i\n",
1760 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Brian Norris041e4572011-06-23 16:45:24 -07001762 stats = mtd->ecc_stats;
1763
Adrian Hunter03736152007-01-31 17:58:29 +02001764 if (ops->mode == MTD_OOB_AUTO)
Vitaly Wool70145682006-11-03 18:20:38 +03001765 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02001766 else
1767 len = mtd->oobsize;
1768
1769 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301770 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start read "
1771 "outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001772 return -EINVAL;
1773 }
1774
1775 /* Do not allow reads past end of device */
1776 if (unlikely(from >= mtd->size ||
1777 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1778 (from >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05301779 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read beyond end "
1780 "of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02001781 return -EINVAL;
1782 }
Vitaly Wool70145682006-11-03 18:20:38 +03001783
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001784 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001785 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001787 /* Shift to get page */
1788 realpage = (int)(from >> chip->page_shift);
1789 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Florian Fainellif8ac0412010-09-07 13:23:43 +02001791 while (1) {
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001792 sndcmd = chip->ecc.read_oob(mtd, chip, page, sndcmd);
Vitaly Wool70145682006-11-03 18:20:38 +03001793
1794 len = min(len, readlen);
1795 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001796
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001797 if (!(chip->options & NAND_NO_READRDY)) {
1798 /*
1799 * Apply delay or wait for ready/busy pin. Do this
1800 * before the AUTOINCR check, so no problems arise if a
1801 * chip which does auto increment is marked as
1802 * NOAUTOINCR by the board driver.
Thomas Gleixner19870da2005-07-15 14:53:51 +01001803 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001804 if (!chip->dev_ready)
1805 udelay(chip->chip_delay);
Thomas Gleixner19870da2005-07-15 14:53:51 +01001806 else
1807 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001809
Vitaly Wool70145682006-11-03 18:20:38 +03001810 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02001811 if (!readlen)
1812 break;
1813
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001814 /* Increment page address */
1815 realpage++;
1816
1817 page = realpage & chip->pagemask;
1818 /* Check, if we cross a chip boundary */
1819 if (!page) {
1820 chipnr++;
1821 chip->select_chip(mtd, -1);
1822 chip->select_chip(mtd, chipnr);
1823 }
1824
Brian Norris8b6e50c2011-05-25 14:59:01 -07001825 /*
1826 * Check, if the chip supports auto page increment or if we
1827 * have hit a block boundary.
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02001828 */
1829 if (!NAND_CANAUTOINCR(chip) || !(page & blkcheck))
1830 sndcmd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832
Vitaly Wool70145682006-11-03 18:20:38 +03001833 ops->oobretlen = ops->ooblen;
Brian Norris041e4572011-06-23 16:45:24 -07001834
1835 if (mtd->ecc_stats.failed - stats.failed)
1836 return -EBADMSG;
1837
1838 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001842 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07001843 * @mtd: MTD device structure
1844 * @from: offset to read from
1845 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001847 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001849static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1850 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001852 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001853 int ret = -ENOTSUPP;
1854
1855 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03001858 if (ops->datbuf && (from + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05301859 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt read "
1860 "beyond end of device\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return -EINVAL;
1862 }
1863
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001864 nand_get_device(chip, mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Florian Fainellif8ac0412010-09-07 13:23:43 +02001866 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001867 case MTD_OOB_PLACE:
1868 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001869 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001870 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001871
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001872 default:
1873 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001876 if (!ops->datbuf)
1877 ret = nand_do_read_oob(mtd, from, ops);
1878 else
1879 ret = nand_do_read_ops(mtd, from, ops);
1880
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001881out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001883 return ret;
1884}
1885
1886
1887/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001888 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001889 * @mtd: mtd info structure
1890 * @chip: nand chip info structure
1891 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001892 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001893 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001894 */
1895static void nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1896 const uint8_t *buf)
1897{
1898 chip->write_buf(mtd, buf, mtd->writesize);
1899 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001902/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001903 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001904 * @mtd: mtd info structure
1905 * @chip: nand chip info structure
1906 * @buf: data buffer
David Brownell52ff49d2009-03-04 12:01:36 -08001907 *
1908 * We need a special oob layout and handling even when ECC isn't checked.
1909 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001910static void nand_write_page_raw_syndrome(struct mtd_info *mtd,
1911 struct nand_chip *chip,
1912 const uint8_t *buf)
David Brownell52ff49d2009-03-04 12:01:36 -08001913{
1914 int eccsize = chip->ecc.size;
1915 int eccbytes = chip->ecc.bytes;
1916 uint8_t *oob = chip->oob_poi;
1917 int steps, size;
1918
1919 for (steps = chip->ecc.steps; steps > 0; steps--) {
1920 chip->write_buf(mtd, buf, eccsize);
1921 buf += eccsize;
1922
1923 if (chip->ecc.prepad) {
1924 chip->write_buf(mtd, oob, chip->ecc.prepad);
1925 oob += chip->ecc.prepad;
1926 }
1927
1928 chip->read_buf(mtd, oob, eccbytes);
1929 oob += eccbytes;
1930
1931 if (chip->ecc.postpad) {
1932 chip->write_buf(mtd, oob, chip->ecc.postpad);
1933 oob += chip->ecc.postpad;
1934 }
1935 }
1936
1937 size = mtd->oobsize - (oob - chip->oob_poi);
1938 if (size)
1939 chip->write_buf(mtd, oob, size);
1940}
1941/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001942 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001943 * @mtd: mtd info structure
1944 * @chip: nand chip info structure
1945 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001946 */
1947static void nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1948 const uint8_t *buf)
1949{
1950 int i, eccsize = chip->ecc.size;
1951 int eccbytes = chip->ecc.bytes;
1952 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001953 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001954 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001955 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001956
Brian Norris7854d3f2011-06-23 14:12:08 -07001957 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001958 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1959 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001960
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001961 for (i = 0; i < chip->ecc.total; i++)
1962 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001963
Thomas Gleixner90424de2007-04-05 11:44:05 +02001964 chip->ecc.write_page_raw(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001965}
1966
1967/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001968 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001969 * @mtd: mtd info structure
1970 * @chip: nand chip info structure
1971 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001972 */
1973static void nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1974 const uint8_t *buf)
1975{
1976 int i, eccsize = chip->ecc.size;
1977 int eccbytes = chip->ecc.bytes;
1978 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001979 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001980 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01001981 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001982
1983 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1984 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01001985 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001986 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1987 }
1988
1989 for (i = 0; i < chip->ecc.total; i++)
1990 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1991
1992 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1993}
1994
1995/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001996 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07001997 * @mtd: mtd info structure
1998 * @chip: nand chip info structure
1999 * @buf: data buffer
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002000 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002001 * The hw generator calculates the error syndrome automatically. Therefore we
2002 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002003 */
2004static void nand_write_page_syndrome(struct mtd_info *mtd,
2005 struct nand_chip *chip, const uint8_t *buf)
2006{
2007 int i, eccsize = chip->ecc.size;
2008 int eccbytes = chip->ecc.bytes;
2009 int eccsteps = chip->ecc.steps;
2010 const uint8_t *p = buf;
2011 uint8_t *oob = chip->oob_poi;
2012
2013 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2014
2015 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2016 chip->write_buf(mtd, p, eccsize);
2017
2018 if (chip->ecc.prepad) {
2019 chip->write_buf(mtd, oob, chip->ecc.prepad);
2020 oob += chip->ecc.prepad;
2021 }
2022
2023 chip->ecc.calculate(mtd, p, oob);
2024 chip->write_buf(mtd, oob, eccbytes);
2025 oob += eccbytes;
2026
2027 if (chip->ecc.postpad) {
2028 chip->write_buf(mtd, oob, chip->ecc.postpad);
2029 oob += chip->ecc.postpad;
2030 }
2031 }
2032
2033 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002034 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002035 if (i)
2036 chip->write_buf(mtd, oob, i);
2037}
2038
2039/**
David Woodhouse956e9442006-09-25 17:12:39 +01002040 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002041 * @mtd: MTD device structure
2042 * @chip: NAND chip descriptor
2043 * @buf: the data to write
2044 * @page: page number to write
2045 * @cached: cached programming
2046 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002047 */
2048static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
David Woodhouse956e9442006-09-25 17:12:39 +01002049 const uint8_t *buf, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002050{
2051 int status;
2052
2053 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2054
David Woodhouse956e9442006-09-25 17:12:39 +01002055 if (unlikely(raw))
2056 chip->ecc.write_page_raw(mtd, chip, buf);
2057 else
2058 chip->ecc.write_page(mtd, chip, buf);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002059
2060 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002061 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002062 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002063 */
2064 cached = 0;
2065
2066 if (!cached || !(chip->options & NAND_CACHEPRG)) {
2067
2068 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002069 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002070 /*
2071 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002072 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002073 */
2074 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2075 status = chip->errstat(mtd, chip, FL_WRITING, status,
2076 page);
2077
2078 if (status & NAND_STATUS_FAIL)
2079 return -EIO;
2080 } else {
2081 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002082 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002083 }
2084
2085#ifdef CONFIG_MTD_NAND_VERIFY_WRITE
2086 /* Send command to read back the data */
2087 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2088
2089 if (chip->verify_buf(mtd, buf, mtd->writesize))
2090 return -EIO;
2091#endif
2092 return 0;
2093}
2094
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002095/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002096 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002097 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002098 * @oob: oob data buffer
2099 * @len: oob data write length
2100 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002101 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002102static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2103 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002104{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002105 struct nand_chip *chip = mtd->priv;
2106
2107 /*
2108 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2109 * data from a previous OOB read.
2110 */
2111 memset(chip->oob_poi, 0xff, mtd->oobsize);
2112
Florian Fainellif8ac0412010-09-07 13:23:43 +02002113 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002114
2115 case MTD_OOB_PLACE:
2116 case MTD_OOB_RAW:
2117 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2118 return oob + len;
2119
2120 case MTD_OOB_AUTO: {
2121 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002122 uint32_t boffs = 0, woffs = ops->ooboffs;
2123 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002124
Florian Fainellif8ac0412010-09-07 13:23:43 +02002125 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002126 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002127 if (unlikely(woffs)) {
2128 if (woffs >= free->length) {
2129 woffs -= free->length;
2130 continue;
2131 }
2132 boffs = free->offset + woffs;
2133 bytes = min_t(size_t, len,
2134 (free->length - woffs));
2135 woffs = 0;
2136 } else {
2137 bytes = min_t(size_t, len, free->length);
2138 boffs = free->offset;
2139 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002140 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002141 oob += bytes;
2142 }
2143 return oob;
2144 }
2145 default:
2146 BUG();
2147 }
2148 return NULL;
2149}
2150
Florian Fainellif8ac0412010-09-07 13:23:43 +02002151#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002152
2153/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002154 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002155 * @mtd: MTD device structure
2156 * @to: offset to write to
2157 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002158 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002159 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002160 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002161static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2162 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002163{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002164 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002165 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002166 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002167
2168 uint32_t oobwritelen = ops->ooblen;
2169 uint32_t oobmaxlen = ops->mode == MTD_OOB_AUTO ?
2170 mtd->oobavail : mtd->oobsize;
2171
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002172 uint8_t *oob = ops->oobbuf;
2173 uint8_t *buf = ops->datbuf;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002174 int ret, subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002175
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002176 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002177 if (!writelen)
2178 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002179
Brian Norris8b6e50c2011-05-25 14:59:01 -07002180 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002181 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002182 pr_notice("%s: attempt to write non page aligned data\n",
2183 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002184 return -EINVAL;
2185 }
2186
Thomas Gleixner29072b92006-09-28 15:38:36 +02002187 column = to & (mtd->writesize - 1);
2188 subpage = column || (writelen & (mtd->writesize - 1));
2189
2190 if (subpage && oob)
2191 return -EINVAL;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002192
Thomas Gleixner6a930962006-06-28 00:11:45 +02002193 chipnr = (int)(to >> chip->chip_shift);
2194 chip->select_chip(mtd, chipnr);
2195
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002196 /* Check, if it is write protected */
2197 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002198 return -EIO;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002199
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002200 realpage = (int)(to >> chip->page_shift);
2201 page = realpage & chip->pagemask;
2202 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2203
2204 /* Invalidate the page cache, when we write to the cached page */
2205 if (to <= (chip->pagebuf << chip->page_shift) &&
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002206 (chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002207 chip->pagebuf = -1;
2208
Maxim Levitsky782ce792010-02-22 20:39:36 +02002209 /* Don't allow multipage oob writes with offset */
Jon Poveycdcf12b2010-09-30 20:41:34 +09002210 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen))
Maxim Levitsky782ce792010-02-22 20:39:36 +02002211 return -EINVAL;
2212
Florian Fainellif8ac0412010-09-07 13:23:43 +02002213 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002214 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002215 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002216 uint8_t *wbuf = buf;
2217
Brian Norris8b6e50c2011-05-25 14:59:01 -07002218 /* Partial page write? */
Thomas Gleixner29072b92006-09-28 15:38:36 +02002219 if (unlikely(column || writelen < (mtd->writesize - 1))) {
2220 cached = 0;
2221 bytes = min_t(int, bytes - column, (int) writelen);
2222 chip->pagebuf = -1;
2223 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2224 memcpy(&chip->buffers->databuf[column], buf, bytes);
2225 wbuf = chip->buffers->databuf;
2226 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002227
Maxim Levitsky782ce792010-02-22 20:39:36 +02002228 if (unlikely(oob)) {
2229 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002230 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002231 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002232 } else {
2233 /* We still need to erase leftover OOB data */
2234 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002235 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002236
Thomas Gleixner29072b92006-09-28 15:38:36 +02002237 ret = chip->write_page(mtd, chip, wbuf, page, cached,
David Woodhouse956e9442006-09-25 17:12:39 +01002238 (ops->mode == MTD_OOB_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002239 if (ret)
2240 break;
2241
2242 writelen -= bytes;
2243 if (!writelen)
2244 break;
2245
Thomas Gleixner29072b92006-09-28 15:38:36 +02002246 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002247 buf += bytes;
2248 realpage++;
2249
2250 page = realpage & chip->pagemask;
2251 /* Check, if we cross a chip boundary */
2252 if (!page) {
2253 chipnr++;
2254 chip->select_chip(mtd, -1);
2255 chip->select_chip(mtd, chipnr);
2256 }
2257 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002258
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002259 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002260 if (unlikely(oob))
2261 ops->oobretlen = ops->ooblen;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002262 return ret;
2263}
2264
2265/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002266 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002267 * @mtd: MTD device structure
2268 * @to: offset to write to
2269 * @len: number of bytes to write
2270 * @retlen: pointer to variable to store the number of written bytes
2271 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002272 *
2273 * NAND write with ECC. Used when performing writes in interrupt context, this
2274 * may for example be called by mtdoops when writing an oops while in panic.
2275 */
2276static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2277 size_t *retlen, const uint8_t *buf)
2278{
2279 struct nand_chip *chip = mtd->priv;
2280 int ret;
2281
2282 /* Do not allow reads past end of device */
2283 if ((to + len) > mtd->size)
2284 return -EINVAL;
2285 if (!len)
2286 return 0;
2287
Brian Norris8b6e50c2011-05-25 14:59:01 -07002288 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002289 panic_nand_wait(mtd, chip, 400);
2290
Brian Norris8b6e50c2011-05-25 14:59:01 -07002291 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002292 panic_nand_get_device(chip, mtd, FL_WRITING);
2293
2294 chip->ops.len = len;
2295 chip->ops.datbuf = (uint8_t *)buf;
2296 chip->ops.oobbuf = NULL;
2297
2298 ret = nand_do_write_ops(mtd, to, &chip->ops);
2299
2300 *retlen = chip->ops.retlen;
2301 return ret;
2302}
2303
2304/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002305 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002306 * @mtd: MTD device structure
2307 * @to: offset to write to
2308 * @len: number of bytes to write
2309 * @retlen: pointer to variable to store the number of written bytes
2310 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002312 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002314static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002315 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002317 struct nand_chip *chip = mtd->priv;
2318 int ret;
2319
2320 /* Do not allow reads past end of device */
2321 if ((to + len) > mtd->size)
2322 return -EINVAL;
2323 if (!len)
2324 return 0;
2325
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002326 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002327
2328 chip->ops.len = len;
2329 chip->ops.datbuf = (uint8_t *)buf;
2330 chip->ops.oobbuf = NULL;
2331
2332 ret = nand_do_write_ops(mtd, to, &chip->ops);
2333
Richard Purdie7fd5aec2006-08-27 01:23:33 -07002334 *retlen = chip->ops.retlen;
2335
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002336 nand_release_device(mtd);
2337
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002338 return ret;
2339}
2340
2341/**
2342 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002343 * @mtd: MTD device structure
2344 * @to: offset to write to
2345 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002346 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002347 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002348 */
2349static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2350 struct mtd_oob_ops *ops)
2351{
Adrian Hunter03736152007-01-31 17:58:29 +02002352 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002353 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
vimal singh20d8e242009-07-07 15:49:49 +05302355 DEBUG(MTD_DEBUG_LEVEL3, "%s: to = 0x%08x, len = %i\n",
2356 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Adrian Hunter03736152007-01-31 17:58:29 +02002358 if (ops->mode == MTD_OOB_AUTO)
2359 len = chip->ecc.layout->oobavail;
2360 else
2361 len = mtd->oobsize;
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002364 if ((ops->ooboffs + ops->ooblen) > len) {
vimal singh20d8e242009-07-07 15:49:49 +05302365 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to write "
2366 "past end of page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 return -EINVAL;
2368 }
2369
Adrian Hunter03736152007-01-31 17:58:29 +02002370 if (unlikely(ops->ooboffs >= len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302371 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt to start "
2372 "write outside oob\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002373 return -EINVAL;
2374 }
2375
Jason Liu775adc32011-02-25 13:06:18 +08002376 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002377 if (unlikely(to >= mtd->size ||
2378 ops->ooboffs + ops->ooblen >
2379 ((mtd->size >> chip->page_shift) -
2380 (to >> chip->page_shift)) * len)) {
vimal singh20d8e242009-07-07 15:49:49 +05302381 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2382 "end of device\n", __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002383 return -EINVAL;
2384 }
2385
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002386 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002387 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002389 /* Shift to get page */
2390 page = (int)(to >> chip->page_shift);
2391
2392 /*
2393 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2394 * of my DiskOnChip 2000 test units) will clear the whole data page too
2395 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2396 * it in the doc2000 driver in August 1999. dwmw2.
2397 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002398 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 /* Check, if it is write protected */
2401 if (nand_check_wp(mtd))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002402 return -EROFS;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002405 if (page == chip->pagebuf)
2406 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002408 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002409 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002410
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002411 if (status)
2412 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Vitaly Wool70145682006-11-03 18:20:38 +03002414 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002416 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002417}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002419/**
2420 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002421 * @mtd: MTD device structure
2422 * @to: offset to write to
2423 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002424 */
2425static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2426 struct mtd_oob_ops *ops)
2427{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002428 struct nand_chip *chip = mtd->priv;
2429 int ret = -ENOTSUPP;
2430
2431 ops->retlen = 0;
2432
2433 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002434 if (ops->datbuf && (to + ops->len) > mtd->size) {
vimal singh20d8e242009-07-07 15:49:49 +05302435 DEBUG(MTD_DEBUG_LEVEL0, "%s: Attempt write beyond "
2436 "end of device\n", __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002437 return -EINVAL;
2438 }
2439
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002440 nand_get_device(chip, mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002441
Florian Fainellif8ac0412010-09-07 13:23:43 +02002442 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002443 case MTD_OOB_PLACE:
2444 case MTD_OOB_AUTO:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002445 case MTD_OOB_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002446 break;
2447
2448 default:
2449 goto out;
2450 }
2451
2452 if (!ops->datbuf)
2453 ret = nand_do_write_oob(mtd, to, ops);
2454 else
2455 ret = nand_do_write_ops(mtd, to, ops);
2456
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002457out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002458 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return ret;
2460}
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002463 * single_erase_cmd - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002464 * @mtd: MTD device structure
2465 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002467 * Standard erase command for NAND chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002469static void single_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002471 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002473 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2474 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
2477/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002478 * multi_erase_cmd - [GENERIC] AND specific block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002479 * @mtd: MTD device structure
2480 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002482 * AND multi block erase command function. Erase 4 consecutive blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002484static void multi_erase_cmd(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002486 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002488 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2489 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2490 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page++);
2491 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2492 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
2495/**
2496 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002497 * @mtd: MTD device structure
2498 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002500 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002502static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
David Woodhousee0c7d762006-05-13 18:07:53 +01002504 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002506
David A. Marlin30f464b2005-01-17 18:35:25 +00002507#define BBT_PAGE_MASK 0xffffff3f
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002509 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002510 * @mtd: MTD device structure
2511 * @instr: erase instruction
2512 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002514 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002516int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2517 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Adrian Hunter69423d92008-12-10 13:37:21 +00002519 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002520 struct nand_chip *chip = mtd->priv;
Florian Fainellif8ac0412010-09-07 13:23:43 +02002521 loff_t rewrite_bbt[NAND_MAX_CHIPS] = {0};
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002522 unsigned int bbt_masked_page = 0xffffffff;
Adrian Hunter69423d92008-12-10 13:37:21 +00002523 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
vimal singh20d8e242009-07-07 15:49:49 +05302525 DEBUG(MTD_DEBUG_LEVEL3, "%s: start = 0x%012llx, len = %llu\n",
2526 __func__, (unsigned long long)instr->addr,
2527 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302529 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Adrian Hunterbb0eb212008-08-12 12:40:50 +03002532 instr->fail_addr = MTD_FAIL_ADDR_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002535 nand_get_device(chip, mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002538 page = (int)(instr->addr >> chip->page_shift);
2539 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
2541 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002542 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002545 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 /* Check, if it is write protected */
2548 if (nand_check_wp(mtd)) {
vimal singh20d8e242009-07-07 15:49:49 +05302549 DEBUG(MTD_DEBUG_LEVEL0, "%s: Device is write protected!!!\n",
2550 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 instr->state = MTD_ERASE_FAILED;
2552 goto erase_exit;
2553 }
2554
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002555 /*
2556 * If BBT requires refresh, set the BBT page mask to see if the BBT
2557 * should be rewritten. Otherwise the mask is set to 0xffffffff which
2558 * can not be matched. This is also done when the bbt is actually
Brian Norris7854d3f2011-06-23 14:12:08 -07002559 * erased to avoid recursive updates.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002560 */
2561 if (chip->options & BBT_AUTO_REFRESH && !allowbbt)
2562 bbt_masked_page = chip->bbt_td->pages[chipnr] & BBT_PAGE_MASK;
David A. Marlin30f464b2005-01-17 18:35:25 +00002563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 /* Loop through the pages */
2565 len = instr->len;
2566
2567 instr->state = MTD_ERASING;
2568
2569 while (len) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002570 /* Heck if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002571 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2572 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002573 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2574 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 instr->state = MTD_ERASE_FAILED;
2576 goto erase_exit;
2577 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002578
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002579 /*
2580 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002581 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002582 */
2583 if (page <= chip->pagebuf && chip->pagebuf <
2584 (page + pages_per_block))
2585 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002587 chip->erase_cmd(mtd, page & chip->pagemask);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002588
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002589 status = chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002591 /*
2592 * See if operation failed and additional status checks are
2593 * available
2594 */
2595 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2596 status = chip->errstat(mtd, chip, FL_ERASING,
2597 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002600 if (status & NAND_STATUS_FAIL) {
vimal singh20d8e242009-07-07 15:49:49 +05302601 DEBUG(MTD_DEBUG_LEVEL0, "%s: Failed erase, "
2602 "page 0x%08x\n", __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002604 instr->fail_addr =
2605 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 goto erase_exit;
2607 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002608
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002609 /*
2610 * If BBT requires refresh, set the BBT rewrite flag to the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002611 * page being erased.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002612 */
2613 if (bbt_masked_page != 0xffffffff &&
2614 (page & BBT_PAGE_MASK) == bbt_masked_page)
Adrian Hunter69423d92008-12-10 13:37:21 +00002615 rewrite_bbt[chipnr] =
2616 ((loff_t)page << chip->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 /* Increment page address and decrement length */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002619 len -= (1 << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 page += pages_per_block;
2621
2622 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002623 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002625 chip->select_chip(mtd, -1);
2626 chip->select_chip(mtd, chipnr);
David A. Marlin30f464b2005-01-17 18:35:25 +00002627
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002628 /*
2629 * If BBT requires refresh and BBT-PERCHIP, set the BBT
Brian Norris8b6e50c2011-05-25 14:59:01 -07002630 * page mask to see if this BBT should be rewritten.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002631 */
2632 if (bbt_masked_page != 0xffffffff &&
2633 (chip->bbt_td->options & NAND_BBT_PERCHIP))
2634 bbt_masked_page = chip->bbt_td->pages[chipnr] &
2635 BBT_PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
2637 }
2638 instr->state = MTD_ERASE_DONE;
2639
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002640erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 /* Deselect and wake up anyone waiting on the device */
2645 nand_release_device(mtd);
2646
David Woodhouse49defc02007-10-06 15:01:59 -04002647 /* Do call back function */
2648 if (!ret)
2649 mtd_erase_callback(instr);
2650
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002651 /*
2652 * If BBT requires refresh and erase was successful, rewrite any
Brian Norris8b6e50c2011-05-25 14:59:01 -07002653 * selected bad block tables.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002654 */
2655 if (bbt_masked_page == 0xffffffff || ret)
2656 return ret;
2657
2658 for (chipnr = 0; chipnr < chip->numchips; chipnr++) {
2659 if (!rewrite_bbt[chipnr])
2660 continue;
Brian Norris8b6e50c2011-05-25 14:59:01 -07002661 /* Update the BBT for chip */
vimal singh20d8e242009-07-07 15:49:49 +05302662 DEBUG(MTD_DEBUG_LEVEL0, "%s: nand_update_bbt "
2663 "(%d:0x%0llx 0x%0x)\n", __func__, chipnr,
2664 rewrite_bbt[chipnr], chip->bbt_td->pages[chipnr]);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002665 nand_update_bbt(mtd, rewrite_bbt[chipnr]);
David A. Marlin30f464b2005-01-17 18:35:25 +00002666 }
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 /* Return more or less happy */
2669 return ret;
2670}
2671
2672/**
2673 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002674 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002676 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002678static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002680 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
vimal singh20d8e242009-07-07 15:49:49 +05302682 DEBUG(MTD_DEBUG_LEVEL3, "%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 /* Grab the lock and see if the device is available */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002685 nand_get_device(chip, mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002687 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688}
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002691 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002692 * @mtd: MTD device structure
2693 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002695static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 /* Check for invalid offset */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002698 if (offs > mtd->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 return -EINVAL;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002700
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002701 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
2704/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002705 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002706 * @mtd: MTD device structure
2707 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002709static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002711 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 int ret;
2713
Florian Fainellif8ac0412010-09-07 13:23:43 +02002714 ret = nand_block_isbad(mtd, ofs);
2715 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002716 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (ret > 0)
2718 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01002719 return ret;
2720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002722 return chip->block_markbad(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723}
2724
2725/**
Vitaly Wool962034f2005-09-15 14:58:53 +01002726 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002727 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002728 */
2729static int nand_suspend(struct mtd_info *mtd)
2730{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002731 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002732
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002733 return nand_get_device(chip, mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01002734}
2735
2736/**
2737 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07002738 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01002739 */
2740static void nand_resume(struct mtd_info *mtd)
2741{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002742 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01002743
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002744 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01002745 nand_release_device(mtd);
2746 else
Brian Norrisd0370212011-07-19 10:06:08 -07002747 pr_err("%s called for a chip which is not in suspended state\n",
2748 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01002749}
2750
Brian Norris8b6e50c2011-05-25 14:59:01 -07002751/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002753{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002755 if (!chip->chip_delay)
2756 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002759 if (chip->cmdfunc == NULL)
2760 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002763 if (chip->waitfunc == NULL)
2764 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002766 if (!chip->select_chip)
2767 chip->select_chip = nand_select_chip;
2768 if (!chip->read_byte)
2769 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2770 if (!chip->read_word)
2771 chip->read_word = nand_read_word;
2772 if (!chip->block_bad)
2773 chip->block_bad = nand_block_bad;
2774 if (!chip->block_markbad)
2775 chip->block_markbad = nand_default_block_markbad;
2776 if (!chip->write_buf)
2777 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
2778 if (!chip->read_buf)
2779 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
2780 if (!chip->verify_buf)
2781 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
2782 if (!chip->scan_bbt)
2783 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002784
2785 if (!chip->controller) {
2786 chip->controller = &chip->hwcontrol;
2787 spin_lock_init(&chip->controller->lock);
2788 init_waitqueue_head(&chip->controller->wq);
2789 }
2790
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002791}
2792
Brian Norris8b6e50c2011-05-25 14:59:01 -07002793/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002794static void sanitize_string(uint8_t *s, size_t len)
2795{
2796 ssize_t i;
2797
Brian Norris8b6e50c2011-05-25 14:59:01 -07002798 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002799 s[len - 1] = 0;
2800
Brian Norris8b6e50c2011-05-25 14:59:01 -07002801 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002802 for (i = 0; i < len - 1; i++) {
2803 if (s[i] < ' ' || s[i] > 127)
2804 s[i] = '?';
2805 }
2806
Brian Norris8b6e50c2011-05-25 14:59:01 -07002807 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002808 strim(s);
2809}
2810
2811static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
2812{
2813 int i;
2814 while (len--) {
2815 crc ^= *p++ << 8;
2816 for (i = 0; i < 8; i++)
2817 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
2818 }
2819
2820 return crc;
2821}
2822
2823/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002824 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002825 */
2826static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002827 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002828{
2829 struct nand_onfi_params *p = &chip->onfi_params;
2830 int i;
2831 int val;
2832
Brian Norris7854d3f2011-06-23 14:12:08 -07002833 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002834 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2835 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2836 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2837 return 0;
2838
Brian Norris9a4d4d62011-07-19 10:06:07 -07002839 pr_info("ONFI flash detected\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002840 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2841 for (i = 0; i < 3; i++) {
2842 chip->read_buf(mtd, (uint8_t *)p, sizeof(*p));
2843 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
2844 le16_to_cpu(p->crc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002845 pr_info("ONFI param page %d valid\n", i);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002846 break;
2847 }
2848 }
2849
2850 if (i == 3)
2851 return 0;
2852
Brian Norris8b6e50c2011-05-25 14:59:01 -07002853 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002854 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002855 if (val & (1 << 5))
2856 chip->onfi_version = 23;
2857 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002858 chip->onfi_version = 22;
2859 else if (val & (1 << 3))
2860 chip->onfi_version = 21;
2861 else if (val & (1 << 2))
2862 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002863 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002864 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08002865 else
2866 chip->onfi_version = 0;
2867
2868 if (!chip->onfi_version) {
Brian Norrisd0370212011-07-19 10:06:08 -07002869 pr_info("%s: unsupported ONFI version: %d\n", __func__, val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08002870 return 0;
2871 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002872
2873 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2874 sanitize_string(p->model, sizeof(p->model));
2875 if (!mtd->name)
2876 mtd->name = p->model;
2877 mtd->writesize = le32_to_cpu(p->byte_per_page);
2878 mtd->erasesize = le32_to_cpu(p->pages_per_block) * mtd->writesize;
2879 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
David Woodhouse4ccb3b42010-12-03 16:36:34 +00002880 chip->chipsize = (uint64_t)le32_to_cpu(p->blocks_per_lun) * mtd->erasesize;
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002881 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002882 if (le16_to_cpu(p->features) & 1)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002883 *busw = NAND_BUSWIDTH_16;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002884
2885 chip->options &= ~NAND_CHIPOPTIONS_MSK;
2886 chip->options |= (NAND_NO_READRDY |
2887 NAND_NO_AUTOINCR) & NAND_CHIPOPTIONS_MSK;
2888
2889 return 1;
2890}
2891
2892/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07002893 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002894 */
2895static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002896 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002897 int busw,
2898 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00002899 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002900{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002901 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07002902 u8 id_data[8];
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002903 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002906 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Karl Beldanef89a882008-09-15 14:37:29 +02002908 /*
2909 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002910 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02002911 */
2912 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002915 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
2917 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002918 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002919 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Brian Norris8b6e50c2011-05-25 14:59:01 -07002921 /*
2922 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01002923 * interface concerns can cause random data which looks like a
2924 * possibly credible NAND flash to appear. If the two results do
2925 * not match, ignore the device completely.
2926 */
2927
2928 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2929
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002930 for (i = 0; i < 2; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002931 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01002932
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002933 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07002934 pr_info("%s: second ID read did not match "
Brian Norrisd0370212011-07-19 10:06:08 -07002935 "%02x,%02x against %02x,%02x\n", __func__,
2936 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01002937 return ERR_PTR(-ENODEV);
2938 }
2939
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002940 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00002941 type = nand_flash_ids;
2942
2943 for (; type->name != NULL; type++)
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002944 if (*dev_id == type->id)
Florian Fainellif8ac0412010-09-07 13:23:43 +02002945 break;
David Woodhouse5e81e882010-02-26 18:32:56 +00002946
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002947 chip->onfi_version = 0;
2948 if (!type->name || !type->pagesize) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002949 /* Check is chip is ONFI compliant */
Matthieu CASTET08c248f2011-06-26 18:26:55 +02002950 ret = nand_flash_detect_onfi(mtd, chip, &busw);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02002951 if (ret)
2952 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02002953 }
2954
2955 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
2956
2957 /* Read entire ID string */
2958
2959 for (i = 0; i < 8; i++)
2960 id_data[i] = chip->read_byte(mtd);
2961
David Woodhouse5e81e882010-02-26 18:32:56 +00002962 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002963 return ERR_PTR(-ENODEV);
2964
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02002965 if (!mtd->name)
2966 mtd->name = type->name;
2967
Adrian Hunter69423d92008-12-10 13:37:21 +00002968 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002969
Huang Shijie12a40a52010-09-27 10:43:53 +08002970 if (!type->pagesize && chip->init_size) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002971 /* Set the pagesize, oobsize, erasesize by the driver */
Huang Shijie12a40a52010-09-27 10:43:53 +08002972 busw = chip->init_size(mtd, chip, id_data);
2973 } else if (!type->pagesize) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002974 int extid;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002975 /* The 3rd id byte holds MLC / multichip data */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002976 chip->cellinfo = id_data[2];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002977 /* The 4th id byte is the important one */
Kevin Cernekee426c4572010-05-04 20:58:03 -07002978 extid = id_data[3];
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02002979
Kevin Cernekee426c4572010-05-04 20:58:03 -07002980 /*
2981 * Field definitions are in the following datasheets:
2982 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norris34c5bf62010-08-20 10:50:43 -07002983 * New style (6 byte ID): Samsung K9GBG08U0M (p.40)
Kevin Cernekee426c4572010-05-04 20:58:03 -07002984 *
2985 * Check for wraparound + Samsung ID + nonzero 6th byte
2986 * to decide what to do.
2987 */
2988 if (id_data[0] == id_data[6] && id_data[1] == id_data[7] &&
2989 id_data[0] == NAND_MFR_SAMSUNG &&
Tilman Sauerbeckcfe3fda2010-08-20 14:01:47 -07002990 (chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
Kevin Cernekee426c4572010-05-04 20:58:03 -07002991 id_data[5] != 0x00) {
2992 /* Calc pagesize */
2993 mtd->writesize = 2048 << (extid & 0x03);
2994 extid >>= 2;
2995 /* Calc oobsize */
Brian Norris34c5bf62010-08-20 10:50:43 -07002996 switch (extid & 0x03) {
2997 case 1:
2998 mtd->oobsize = 128;
2999 break;
3000 case 2:
3001 mtd->oobsize = 218;
3002 break;
3003 case 3:
3004 mtd->oobsize = 400;
3005 break;
3006 default:
3007 mtd->oobsize = 436;
3008 break;
3009 }
Kevin Cernekee426c4572010-05-04 20:58:03 -07003010 extid >>= 2;
3011 /* Calc blocksize */
3012 mtd->erasesize = (128 * 1024) <<
3013 (((extid >> 1) & 0x04) | (extid & 0x03));
3014 busw = 0;
3015 } else {
3016 /* Calc pagesize */
3017 mtd->writesize = 1024 << (extid & 0x03);
3018 extid >>= 2;
3019 /* Calc oobsize */
3020 mtd->oobsize = (8 << (extid & 0x01)) *
3021 (mtd->writesize >> 9);
3022 extid >>= 2;
3023 /* Calc blocksize. Blocksize is multiples of 64KiB */
3024 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3025 extid >>= 2;
3026 /* Get buswidth information */
3027 busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
3028 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003029 } else {
3030 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003031 * Old devices have chip data hardcoded in the device id table.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003032 */
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003033 mtd->erasesize = type->erasesize;
3034 mtd->writesize = type->pagesize;
Thomas Gleixner4cbb9b82006-05-23 12:37:31 +02003035 mtd->oobsize = mtd->writesize / 32;
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003036 busw = type->options & NAND_BUSWIDTH_16;
Brian Norris2173bae2010-08-19 08:11:02 -07003037
3038 /*
3039 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3040 * some Spansion chips have erasesize that conflicts with size
Brian Norris8b6e50c2011-05-25 14:59:01 -07003041 * listed in nand_ids table.
Brian Norris2173bae2010-08-19 08:11:02 -07003042 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3043 */
3044 if (*maf_id == NAND_MFR_AMD && id_data[4] != 0x00 &&
3045 id_data[5] == 0x00 && id_data[6] == 0x00 &&
3046 id_data[7] == 0x00 && mtd->writesize == 512) {
3047 mtd->erasesize = 128 * 1024;
3048 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3049 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003050 }
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003051 /* Get chip options, preserve non chip based options */
3052 chip->options &= ~NAND_CHIPOPTIONS_MSK;
3053 chip->options |= type->options & NAND_CHIPOPTIONS_MSK;
3054
Brian Norris8b6e50c2011-05-25 14:59:01 -07003055 /*
3056 * Check if chip is not a Samsung device. Do not clear the
3057 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003058 */
3059 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3060 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3061ident_done:
3062
3063 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003064 * Set chip as a default. Board drivers can override it, if necessary.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003065 */
3066 chip->options |= NAND_NO_AUTOINCR;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003067
3068 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003069 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003070 if (nand_manuf_ids[maf_idx].id == *maf_id)
3071 break;
3072 }
3073
3074 /*
3075 * Check, if buswidth is correct. Hardware drivers should set
Brian Norris8b6e50c2011-05-25 14:59:01 -07003076 * chip correct!
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003077 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003078 if (busw != (chip->options & NAND_BUSWIDTH_16)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003079 pr_info("NAND device: Manufacturer ID:"
Brian Norrisd0370212011-07-19 10:06:08 -07003080 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id,
3081 *dev_id, nand_manuf_ids[maf_idx].name, mtd->name);
Brian Norris9a4d4d62011-07-19 10:06:07 -07003082 pr_warn("NAND bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003083 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3084 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003085 return ERR_PTR(-EINVAL);
3086 }
3087
3088 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003089 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003090 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003091 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003092
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003093 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003094 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003095 if (chip->chipsize & 0xffffffff)
3096 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003097 else {
3098 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3099 chip->chip_shift += 32 - 1;
3100 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003101
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003102 chip->badblockbits = 8;
3103
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003104 /* Set the bad block position */
Brian Norris065a1ed2010-08-18 11:25:04 -07003105 if (mtd->writesize > 512 || (busw & NAND_BUSWIDTH_16))
Brian Norrisc7b28e22010-07-13 15:13:00 -07003106 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
Brian Norris065a1ed2010-08-18 11:25:04 -07003107 else
3108 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003109
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003110 /*
3111 * Bad block marker is stored in the last page of each block
Brian Norrisc7b28e22010-07-13 15:13:00 -07003112 * on Samsung and Hynix MLC devices; stored in first two pages
3113 * of each block on Micron devices with 2KiB pages and on
Brian Norris13ed7ae2010-08-20 12:36:12 -07003114 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
3115 * only the first page.
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -07003116 */
3117 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3118 (*maf_id == NAND_MFR_SAMSUNG ||
3119 *maf_id == NAND_MFR_HYNIX))
Brian Norris5fb15492011-05-31 16:31:21 -07003120 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003121 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
3122 (*maf_id == NAND_MFR_SAMSUNG ||
3123 *maf_id == NAND_MFR_HYNIX ||
Brian Norris13ed7ae2010-08-20 12:36:12 -07003124 *maf_id == NAND_MFR_TOSHIBA ||
Brian Norrisc7b28e22010-07-13 15:13:00 -07003125 *maf_id == NAND_MFR_AMD)) ||
3126 (mtd->writesize == 2048 &&
3127 *maf_id == NAND_MFR_MICRON))
Brian Norris5fb15492011-05-31 16:31:21 -07003128 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
Brian Norrisc7b28e22010-07-13 15:13:00 -07003129
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003130 /* Check for AND chips with 4 page planes */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003131 if (chip->options & NAND_4PAGE_ARRAY)
3132 chip->erase_cmd = multi_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003133 else
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003134 chip->erase_cmd = single_erase_cmd;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003135
Brian Norris8b6e50c2011-05-25 14:59:01 -07003136 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003137 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3138 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003139
Brian Norris9a4d4d62011-07-19 10:06:07 -07003140 pr_info("NAND device: Manufacturer ID:"
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003141 " 0x%02x, Chip ID: 0x%02x (%s %s)\n", *maf_id, *dev_id,
3142 nand_manuf_ids[maf_idx].name,
Brian Norris0b524fb2010-12-12 00:23:32 -08003143 chip->onfi_version ? chip->onfi_params.model : type->name);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003144
3145 return type;
3146}
3147
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003148/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003149 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003150 * @mtd: MTD device structure
3151 * @maxchips: number of chips to scan for
3152 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003153 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003154 * This is the first phase of the normal nand_scan() function. It reads the
3155 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003156 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003157 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003158 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003159int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3160 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003161{
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003162 int i, busw, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003163 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003164 struct nand_flash_dev *type;
3165
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003166 /* Get buswidth to select the correct functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003167 busw = chip->options & NAND_BUSWIDTH_16;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003168 /* Set the default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003169 nand_set_defaults(chip, busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003170
3171 /* Read the flash type */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003172 type = nand_get_flash_type(mtd, chip, busw,
3173 &nand_maf_id, &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003174
3175 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003176 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07003177 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003178 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003179 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 }
3181
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003182 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01003183 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003184 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02003185 /* See comment in nand_get_flash_type for reset */
3186 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003188 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003190 if (nand_maf_id != chip->read_byte(mtd) ||
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003191 nand_dev_id != chip->read_byte(mtd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 break;
3193 }
3194 if (i > 1)
Brian Norris9a4d4d62011-07-19 10:06:07 -07003195 pr_info("%d NAND chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003198 chip->numchips = i;
3199 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
David Woodhouse3b85c322006-09-25 17:06:53 +01003201 return 0;
3202}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003203EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01003204
3205
3206/**
3207 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003208 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01003209 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003210 * This is the second phase of the normal nand_scan() function. It fills out
3211 * all the uninitialized function pointers with the defaults and scans for a
3212 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01003213 */
3214int nand_scan_tail(struct mtd_info *mtd)
3215{
3216 int i;
3217 struct nand_chip *chip = mtd->priv;
3218
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003219 if (!(chip->options & NAND_OWN_BUFFERS))
3220 chip->buffers = kmalloc(sizeof(*chip->buffers), GFP_KERNEL);
3221 if (!chip->buffers)
3222 return -ENOMEM;
3223
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01003224 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01003225 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003226
3227 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003228 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003229 */
Ivan Djelic193bd402011-03-11 11:05:33 +01003230 if (!chip->ecc.layout && (chip->ecc.mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003231 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 case 8:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003233 chip->ecc.layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 break;
3235 case 16:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003236 chip->ecc.layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 break;
3238 case 64:
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003239 chip->ecc.layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003241 case 128:
3242 chip->ecc.layout = &nand_oob_128;
3243 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003245 pr_warn("No oob scheme defined for oobsize %d\n",
3246 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 BUG();
3248 }
3249 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003250
David Woodhouse956e9442006-09-25 17:12:39 +01003251 if (!chip->write_page)
3252 chip->write_page = nand_write_page;
3253
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003254 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003255 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003256 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01003257 */
David Woodhouse956e9442006-09-25 17:12:39 +01003258
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003259 switch (chip->ecc.mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003260 case NAND_ECC_HW_OOB_FIRST:
3261 /* Similar to NAND_ECC_HW, but a separate read_page handle */
3262 if (!chip->ecc.calculate || !chip->ecc.correct ||
3263 !chip->ecc.hwctl) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003264 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003265 "hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07003266 BUG();
3267 }
3268 if (!chip->ecc.read_page)
3269 chip->ecc.read_page = nand_read_page_hwecc_oob_first;
3270
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003271 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07003272 /* Use standard hwecc read page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003273 if (!chip->ecc.read_page)
3274 chip->ecc.read_page = nand_read_page_hwecc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003275 if (!chip->ecc.write_page)
3276 chip->ecc.write_page = nand_write_page_hwecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003277 if (!chip->ecc.read_page_raw)
3278 chip->ecc.read_page_raw = nand_read_page_raw;
3279 if (!chip->ecc.write_page_raw)
3280 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003281 if (!chip->ecc.read_oob)
3282 chip->ecc.read_oob = nand_read_oob_std;
3283 if (!chip->ecc.write_oob)
3284 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003285
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003286 case NAND_ECC_HW_SYNDROME:
Scott Wood78b65172007-12-13 11:15:28 -06003287 if ((!chip->ecc.calculate || !chip->ecc.correct ||
3288 !chip->ecc.hwctl) &&
3289 (!chip->ecc.read_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003290 chip->ecc.read_page == nand_read_page_hwecc ||
Scott Wood78b65172007-12-13 11:15:28 -06003291 !chip->ecc.write_page ||
Scott Wood1c45f602008-01-16 10:36:03 -06003292 chip->ecc.write_page == nand_write_page_hwecc)) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003293 pr_warn("No ECC functions supplied; "
Brian Norrisd0370212011-07-19 10:06:08 -07003294 "hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003295 BUG();
3296 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07003297 /* Use standard syndrome read/write page function? */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003298 if (!chip->ecc.read_page)
3299 chip->ecc.read_page = nand_read_page_syndrome;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003300 if (!chip->ecc.write_page)
3301 chip->ecc.write_page = nand_write_page_syndrome;
David Brownell52ff49d2009-03-04 12:01:36 -08003302 if (!chip->ecc.read_page_raw)
3303 chip->ecc.read_page_raw = nand_read_page_raw_syndrome;
3304 if (!chip->ecc.write_page_raw)
3305 chip->ecc.write_page_raw = nand_write_page_raw_syndrome;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003306 if (!chip->ecc.read_oob)
3307 chip->ecc.read_oob = nand_read_oob_syndrome;
3308 if (!chip->ecc.write_oob)
3309 chip->ecc.write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003310
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003311 if (mtd->writesize >= chip->ecc.size)
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003312 break;
Brian Norris9a4d4d62011-07-19 10:06:07 -07003313 pr_warn("%d byte HW ECC not possible on "
Brian Norrisd0370212011-07-19 10:06:08 -07003314 "%d byte page size, fallback to SW ECC\n",
3315 chip->ecc.size, mtd->writesize);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003316 chip->ecc.mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003318 case NAND_ECC_SOFT:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003319 chip->ecc.calculate = nand_calculate_ecc;
3320 chip->ecc.correct = nand_correct_data;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003321 chip->ecc.read_page = nand_read_page_swecc;
Alexey Korolev3d459552008-05-15 17:23:18 +01003322 chip->ecc.read_subpage = nand_read_subpage;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003323 chip->ecc.write_page = nand_write_page_swecc;
David Brownell52ff49d2009-03-04 12:01:36 -08003324 chip->ecc.read_page_raw = nand_read_page_raw;
3325 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003326 chip->ecc.read_oob = nand_read_oob_std;
3327 chip->ecc.write_oob = nand_write_oob_std;
Singh, Vimal9a732902008-12-12 00:10:57 +00003328 if (!chip->ecc.size)
3329 chip->ecc.size = 256;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003330 chip->ecc.bytes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003332
Ivan Djelic193bd402011-03-11 11:05:33 +01003333 case NAND_ECC_SOFT_BCH:
3334 if (!mtd_nand_has_bch()) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003335 pr_warn("CONFIG_MTD_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003336 BUG();
3337 }
3338 chip->ecc.calculate = nand_bch_calculate_ecc;
3339 chip->ecc.correct = nand_bch_correct_data;
3340 chip->ecc.read_page = nand_read_page_swecc;
3341 chip->ecc.read_subpage = nand_read_subpage;
3342 chip->ecc.write_page = nand_write_page_swecc;
3343 chip->ecc.read_page_raw = nand_read_page_raw;
3344 chip->ecc.write_page_raw = nand_write_page_raw;
3345 chip->ecc.read_oob = nand_read_oob_std;
3346 chip->ecc.write_oob = nand_write_oob_std;
3347 /*
3348 * Board driver should supply ecc.size and ecc.bytes values to
3349 * select how many bits are correctable; see nand_bch_init()
Brian Norris8b6e50c2011-05-25 14:59:01 -07003350 * for details. Otherwise, default to 4 bits for large page
3351 * devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01003352 */
3353 if (!chip->ecc.size && (mtd->oobsize >= 64)) {
3354 chip->ecc.size = 512;
3355 chip->ecc.bytes = 7;
3356 }
3357 chip->ecc.priv = nand_bch_init(mtd,
3358 chip->ecc.size,
3359 chip->ecc.bytes,
3360 &chip->ecc.layout);
3361 if (!chip->ecc.priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003362 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01003363 BUG();
3364 }
3365 break;
3366
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003367 case NAND_ECC_NONE:
Brian Norris9a4d4d62011-07-19 10:06:07 -07003368 pr_warn("NAND_ECC_NONE selected by board driver. "
Brian Norrisd0370212011-07-19 10:06:08 -07003369 "This is not recommended!\n");
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02003370 chip->ecc.read_page = nand_read_page_raw;
3371 chip->ecc.write_page = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003372 chip->ecc.read_oob = nand_read_oob_std;
David Brownell52ff49d2009-03-04 12:01:36 -08003373 chip->ecc.read_page_raw = nand_read_page_raw;
3374 chip->ecc.write_page_raw = nand_write_page_raw;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02003375 chip->ecc.write_oob = nand_write_oob_std;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003376 chip->ecc.size = mtd->writesize;
3377 chip->ecc.bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 break;
David Woodhouse956e9442006-09-25 17:12:39 +01003379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 default:
Brian Norrisd0370212011-07-19 10:06:08 -07003381 pr_warn("Invalid NAND_ECC_MODE %d\n", chip->ecc.mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003382 BUG();
3383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003385 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003386 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07003387 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003388 */
3389 chip->ecc.layout->oobavail = 0;
David Brownell81d19b02009-04-21 19:51:20 -07003390 for (i = 0; chip->ecc.layout->oobfree[i].length
3391 && i < ARRAY_SIZE(chip->ecc.layout->oobfree); i++)
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003392 chip->ecc.layout->oobavail +=
3393 chip->ecc.layout->oobfree[i].length;
Vitaly Wool1f922672007-03-06 16:56:34 +03003394 mtd->oobavail = chip->ecc.layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003395
3396 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003397 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07003398 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003399 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003400 chip->ecc.steps = mtd->writesize / chip->ecc.size;
Florian Fainellif8ac0412010-09-07 13:23:43 +02003401 if (chip->ecc.steps * chip->ecc.size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07003402 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02003403 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02003405 chip->ecc.total = chip->ecc.steps * chip->ecc.bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003406
Brian Norris8b6e50c2011-05-25 14:59:01 -07003407 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Thomas Gleixner29072b92006-09-28 15:38:36 +02003408 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
3409 !(chip->cellinfo & NAND_CI_CELLTYPE_MSK)) {
Florian Fainellif8ac0412010-09-07 13:23:43 +02003410 switch (chip->ecc.steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02003411 case 2:
3412 mtd->subpage_sft = 1;
3413 break;
3414 case 4:
3415 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01003416 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02003417 mtd->subpage_sft = 2;
3418 break;
3419 }
3420 }
3421 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3422
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02003423 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003424 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
3426 /* De-select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003427 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
3429 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003430 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
3432 /* Fill in remaining MTD driver data */
3433 mtd->type = MTD_NANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02003434 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3435 MTD_CAP_NANDFLASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 mtd->erase = nand_erase;
3437 mtd->point = NULL;
3438 mtd->unpoint = NULL;
3439 mtd->read = nand_read;
3440 mtd->write = nand_write;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02003441 mtd->panic_write = panic_nand_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 mtd->read_oob = nand_read_oob;
3443 mtd->write_oob = nand_write_oob;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 mtd->sync = nand_sync;
3445 mtd->lock = NULL;
3446 mtd->unlock = NULL;
Vitaly Wool962034f2005-09-15 14:58:53 +01003447 mtd->suspend = nand_suspend;
3448 mtd->resume = nand_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 mtd->block_isbad = nand_block_isbad;
3450 mtd->block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01003451 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02003453 /* propagate ecc.layout to mtd_info */
3454 mtd->ecclayout = chip->ecc.layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003456 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003457 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00003458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
3460 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003461 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003463EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
Brian Norris8b6e50c2011-05-25 14:59:01 -07003465/*
3466 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003467 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07003468 * to call us from in-kernel code if the core NAND support is modular.
3469 */
David Woodhouse3b85c322006-09-25 17:06:53 +01003470#ifdef MODULE
3471#define caller_is_module() (1)
3472#else
3473#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06003474 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01003475#endif
3476
3477/**
3478 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003479 * @mtd: MTD device structure
3480 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01003481 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003482 * This fills out all the uninitialized function pointers with the defaults.
3483 * The flash ID is read and the mtd/chip structures are filled with the
3484 * appropriate values. The mtd->owner field must be set to the module of the
3485 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01003486 */
3487int nand_scan(struct mtd_info *mtd, int maxchips)
3488{
3489 int ret;
3490
3491 /* Many callers got this wrong, so check for it for a while... */
3492 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07003493 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01003494 BUG();
3495 }
3496
David Woodhouse5e81e882010-02-26 18:32:56 +00003497 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01003498 if (!ret)
3499 ret = nand_scan_tail(mtd);
3500 return ret;
3501}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003502EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01003503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00003505 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003506 * @mtd: MTD device structure
3507 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003508void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003510 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511
Ivan Djelic193bd402011-03-11 11:05:33 +01003512 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
3513 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
3514
Jamie Iles5ffcaf32011-05-23 10:22:46 +01003515 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
Jesper Juhlfa671642005-11-07 01:01:27 -08003517 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003518 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01003519 if (!(chip->options & NAND_OWN_BUFFERS))
3520 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07003521
3522 /* Free bad block descriptor memory */
3523 if (chip->badblock_pattern && chip->badblock_pattern->options
3524 & NAND_BBT_DYNAMICSTRUCT)
3525 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526}
David Woodhousee0c7d762006-05-13 18:07:53 +01003527EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08003528
3529static int __init nand_base_init(void)
3530{
3531 led_trigger_register_simple("nand-disk", &nand_led_trigger);
3532 return 0;
3533}
3534
3535static void __exit nand_base_exit(void)
3536{
3537 led_trigger_unregister_simple(nand_led_trigger);
3538}
3539
3540module_init(nand_base_init);
3541module_exit(nand_base_exit);
3542
David Woodhousee0c7d762006-05-13 18:07:53 +01003543MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003544MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
3545MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01003546MODULE_DESCRIPTION("Generic NAND flash driver code");