blob: 13fcddc8a10e56a696be79d33f0eecafb807259d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Overview:
3 * This is the generic MTD driver for NAND flash devices. It should be
4 * capable of working with almost all NAND chips currently available.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Additional technical information is available on
maximilian attems8b2b4032007-07-28 13:07:16 +02007 * http://www.linux-mtd.infradead.org/doc/nand.html
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020010 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020012 * Credits:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000013 * David Woodhouse for adding multichip support
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
16 * rework for 2K page size chips
17 *
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +020018 * TODO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Enable cached programming for 2k page size chips
20 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Brian Norris7854d3f2011-06-23 14:12:08 -070021 * if we have HW ECC support.
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +030022 * BBT table is not serialized, has to be fixed
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License version 2 as
26 * published by the Free Software Foundation.
27 *
28 */
29
Ezequiel Garcia20171642013-11-25 08:30:31 -030030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
David Woodhouse552d9202006-05-14 01:20:46 +010032#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
34#include <linux/errno.h>
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +020035#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sched.h>
37#include <linux/slab.h>
Kamal Dasu66507c72014-05-01 20:51:19 -040038#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/mtd/mtd.h>
41#include <linux/mtd/nand.h>
42#include <linux/mtd/nand_ecc.h>
Ivan Djelic193bd402011-03-11 11:05:33 +010043#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/interrupt.h>
45#include <linux/bitops.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020046#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/mtd/partitions.h>
Brian Norris5844fee2015-01-23 00:22:27 -080048#include <linux/of_mtd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020051static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .eccbytes = 3,
53 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020054 .oobfree = {
55 {.offset = 3,
56 .length = 2},
57 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020058 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020061static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .eccbytes = 6,
63 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020064 .oobfree = {
65 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020066 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020069static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .eccbytes = 24,
71 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010072 40, 41, 42, 43, 44, 45, 46, 47,
73 48, 49, 50, 51, 52, 53, 54, 55,
74 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020075 .oobfree = {
76 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020077 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Thomas Gleixner81ec5362007-12-12 17:27:03 +010080static struct nand_ecclayout nand_oob_128 = {
81 .eccbytes = 48,
82 .eccpos = {
83 80, 81, 82, 83, 84, 85, 86, 87,
84 88, 89, 90, 91, 92, 93, 94, 95,
85 96, 97, 98, 99, 100, 101, 102, 103,
86 104, 105, 106, 107, 108, 109, 110, 111,
87 112, 113, 114, 115, 116, 117, 118, 119,
88 120, 121, 122, 123, 124, 125, 126, 127},
89 .oobfree = {
90 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020091 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010092};
93
Huang Shijie6a8214a2012-11-19 14:43:30 +080094static int nand_get_device(struct mtd_info *mtd, int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020096static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
97 struct mtd_oob_ops *ops);
98
Vimal Singh6fe5a6a2010-02-03 14:12:24 +053099static int check_offs_len(struct mtd_info *mtd,
100 loff_t ofs, uint64_t len)
101{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100102 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530103 int ret = 0;
104
105 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300106 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700107 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530108 ret = -EINVAL;
109 }
110
111 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300112 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700113 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530114 ret = -EINVAL;
115 }
116
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530117 return ret;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/**
121 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700122 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000123 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800124 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100126static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100128 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200130 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200131 spin_lock(&chip->controller->lock);
132 chip->controller->active = NULL;
133 chip->state = FL_READY;
134 wake_up(&chip->controller->wq);
135 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138/**
139 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700140 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700142 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200144static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100146 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200147 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/**
Masanari Iida064a7692012-11-09 23:20:58 +0900151 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700152 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700154 * Default read function for 16bit buswidth with endianness conversion.
155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200157static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100159 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200160 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700165 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700167 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169static u16 nand_read_word(struct mtd_info *mtd)
170{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100171 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200172 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700177 * @mtd: MTD device structure
178 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 *
180 * Default select function for 1 chip devices.
181 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200182static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100184 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200185
186 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200188 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
190 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 break;
192
193 default:
194 BUG();
195 }
196}
197
198/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100199 * nand_write_byte - [DEFAULT] write single byte to chip
200 * @mtd: MTD device structure
201 * @byte: value to write
202 *
203 * Default function to write a byte to I/O[7:0]
204 */
205static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
206{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100207 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100208
209 chip->write_buf(mtd, &byte, 1);
210}
211
212/**
213 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
214 * @mtd: MTD device structure
215 * @byte: value to write
216 *
217 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
218 */
219static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
220{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100221 struct nand_chip *chip = mtd_to_nand(mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100222 uint16_t word = byte;
223
224 /*
225 * It's not entirely clear what should happen to I/O[15:8] when writing
226 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
227 *
228 * When the host supports a 16-bit bus width, only data is
229 * transferred at the 16-bit width. All address and command line
230 * transfers shall use only the lower 8-bits of the data bus. During
231 * command transfers, the host may place any value on the upper
232 * 8-bits of the data bus. During address transfers, the host shall
233 * set the upper 8-bits of the data bus to 00h.
234 *
235 * One user of the write_byte callback is nand_onfi_set_features. The
236 * four parameters are specified to be written to I/O[7:0], but this is
237 * neither an address nor a command transfer. Let's assume a 0 on the
238 * upper I/O lines is OK.
239 */
240 chip->write_buf(mtd, (uint8_t *)&word, 2);
241}
242
243/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700245 * @mtd: MTD device structure
246 * @buf: data buffer
247 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700249 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200251static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100253 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Alexander Shiyan76413832013-04-13 09:32:13 +0400255 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
258/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000259 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700260 * @mtd: MTD device structure
261 * @buf: buffer to store date
262 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700264 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200266static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100268 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Alexander Shiyan76413832013-04-13 09:32:13 +0400270 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700275 * @mtd: MTD device structure
276 * @buf: data buffer
277 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700279 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200281static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100283 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000285
Alexander Shiyan76413832013-04-13 09:32:13 +0400286 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000290 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700291 * @mtd: MTD device structure
292 * @buf: buffer to store date
293 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700295 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200297static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100299 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Alexander Shiyan76413832013-04-13 09:32:13 +0400302 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700307 * @mtd: MTD device structure
308 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000310 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530312static int nand_block_bad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Archit Taneja9f3e0422016-02-03 14:29:49 +0530314 int page, res = 0, i = 0;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100315 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u16 bad;
317
Brian Norris5fb15492011-05-31 16:31:21 -0700318 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700319 ofs += mtd->erasesize - mtd->writesize;
320
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100321 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
322
Brian Norriscdbec052012-01-13 18:11:48 -0800323 do {
324 if (chip->options & NAND_BUSWIDTH_16) {
325 chip->cmdfunc(mtd, NAND_CMD_READOOB,
326 chip->badblockpos & 0xFE, page);
327 bad = cpu_to_le16(chip->read_word(mtd));
328 if (chip->badblockpos & 0x1)
329 bad >>= 8;
330 else
331 bad &= 0xFF;
332 } else {
333 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
334 page);
335 bad = chip->read_byte(mtd);
336 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000337
Brian Norriscdbec052012-01-13 18:11:48 -0800338 if (likely(chip->badblockbits == 8))
339 res = bad != 0xFF;
340 else
341 res = hweight8(bad) < chip->badblockbits;
342 ofs += mtd->writesize;
343 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
344 i++;
345 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return res;
348}
349
350/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700351 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700352 * @mtd: MTD device structure
353 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700355 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700356 * specific driver. It provides the details for writing a bad block marker to a
357 * block.
358 */
359static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
360{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100361 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris5a0edb22013-07-30 17:52:58 -0700362 struct mtd_oob_ops ops;
363 uint8_t buf[2] = { 0, 0 };
364 int ret = 0, res, i = 0;
365
Brian Norris0ec56dc2015-02-28 02:02:30 -0800366 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700367 ops.oobbuf = buf;
368 ops.ooboffs = chip->badblockpos;
369 if (chip->options & NAND_BUSWIDTH_16) {
370 ops.ooboffs &= ~0x01;
371 ops.len = ops.ooblen = 2;
372 } else {
373 ops.len = ops.ooblen = 1;
374 }
375 ops.mode = MTD_OPS_PLACE_OOB;
376
377 /* Write to first/last page(s) if necessary */
378 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
379 ofs += mtd->erasesize - mtd->writesize;
380 do {
381 res = nand_do_write_oob(mtd, ofs, &ops);
382 if (!ret)
383 ret = res;
384
385 i++;
386 ofs += mtd->writesize;
387 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
388
389 return ret;
390}
391
392/**
393 * nand_block_markbad_lowlevel - mark a block bad
394 * @mtd: MTD device structure
395 * @ofs: offset from device start
396 *
397 * This function performs the generic NAND bad block marking steps (i.e., bad
398 * block table(s) and/or marker(s)). We only allow the hardware driver to
399 * specify how to write bad block markers to OOB (chip->block_markbad).
400 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700401 * We try operations in the following order:
Brian Norrise2414f42012-02-06 13:44:00 -0800402 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700403 * (2) write bad block marker to OOB area of affected block (unless flag
404 * NAND_BBT_NO_OOB_BBM is present)
405 * (3) update the BBT
406 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800407 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700409static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100411 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -0700412 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000413
Brian Norrisb32843b2013-07-30 17:52:59 -0700414 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800415 struct erase_info einfo;
416
417 /* Attempt erase before marking OOB */
418 memset(&einfo, 0, sizeof(einfo));
419 einfo.mtd = mtd;
420 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300421 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800422 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800423
Brian Norrisb32843b2013-07-30 17:52:59 -0700424 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800425 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700426 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300427 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200428 }
Brian Norrise2414f42012-02-06 13:44:00 -0800429
Brian Norrisb32843b2013-07-30 17:52:59 -0700430 /* Mark block bad in BBT */
431 if (chip->bbt) {
432 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800433 if (!ret)
434 ret = res;
435 }
436
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200437 if (!ret)
438 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300439
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200440 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000443/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700445 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700447 * Check, if the device is write protected. The function expects, that the
448 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100450static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100452 struct nand_chip *chip = mtd_to_nand(mtd);
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200453
Brian Norris8b6e50c2011-05-25 14:59:01 -0700454 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200455 if (chip->options & NAND_BROKEN_XD)
456 return 0;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200459 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
460 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800464 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700465 * @mtd: MTD device structure
466 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300467 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800468 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300469 */
470static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
471{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100472 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300473
474 if (!chip->bbt)
475 return 0;
476 /* Return info from the table */
477 return nand_isreserved_bbt(mtd, ofs);
478}
479
480/**
481 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
482 * @mtd: MTD device structure
483 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700484 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *
486 * Check, if the block is bad. Either by reading the bad block table or
487 * calling of the scan function.
488 */
Archit Taneja9f3e0422016-02-03 14:29:49 +0530489static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100491 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000492
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200493 if (!chip->bbt)
Archit Taneja9f3e0422016-02-03 14:29:49 +0530494 return chip->block_bad(mtd, ofs);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100497 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200500/**
501 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700502 * @mtd: MTD device structure
503 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200504 *
505 * Helper function for nand_wait_ready used when needing to wait in interrupt
506 * context.
507 */
508static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
509{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100510 struct nand_chip *chip = mtd_to_nand(mtd);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200511 int i;
512
513 /* Wait for the device to get ready */
514 for (i = 0; i < timeo; i++) {
515 if (chip->dev_ready(mtd))
516 break;
517 touch_softlockup_watchdog();
518 mdelay(1);
519 }
520}
521
Alex Smithb70af9b2015-10-06 14:52:07 +0100522/**
523 * nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
524 * @mtd: MTD device structure
525 *
526 * Wait for the ready pin after a command, and warn if a timeout occurs.
527 */
David Woodhouse4b648b02006-09-25 17:05:24 +0100528void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000529{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100530 struct nand_chip *chip = mtd_to_nand(mtd);
Alex Smithb70af9b2015-10-06 14:52:07 +0100531 unsigned long timeo = 400;
Thomas Gleixner3b887752005-02-22 21:56:49 +0000532
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200533 if (in_interrupt() || oops_in_progress)
Alex Smithb70af9b2015-10-06 14:52:07 +0100534 return panic_nand_wait_ready(mtd, timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200535
Brian Norris7854d3f2011-06-23 14:12:08 -0700536 /* Wait until command is processed or timeout occurs */
Alex Smithb70af9b2015-10-06 14:52:07 +0100537 timeo = jiffies + msecs_to_jiffies(timeo);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000538 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200539 if (chip->dev_ready(mtd))
Ezequiel Garcia4c7e0542016-04-12 17:46:41 -0300540 return;
Alex Smithb70af9b2015-10-06 14:52:07 +0100541 cond_resched();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000542 } while (time_before(jiffies, timeo));
Alex Smithb70af9b2015-10-06 14:52:07 +0100543
Brian Norris9ebfdf52016-03-04 17:19:23 -0800544 if (!chip->dev_ready(mtd))
545 pr_warn_ratelimited("timeout while waiting for chip to become ready\n");
Thomas Gleixner3b887752005-02-22 21:56:49 +0000546}
David Woodhouse4b648b02006-09-25 17:05:24 +0100547EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200550 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
551 * @mtd: MTD device structure
552 * @timeo: Timeout in ms
553 *
554 * Wait for status ready (i.e. command done) or timeout.
555 */
556static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
557{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100558 register struct nand_chip *chip = mtd_to_nand(mtd);
Roger Quadros60c70d62015-02-23 17:26:39 +0200559
560 timeo = jiffies + msecs_to_jiffies(timeo);
561 do {
562 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
563 break;
564 touch_softlockup_watchdog();
565 } while (time_before(jiffies, timeo));
566};
567
568/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700570 * @mtd: MTD device structure
571 * @command: the command to be sent
572 * @column: the column address for this command, -1 if none
573 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700575 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200576 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200578static void nand_command(struct mtd_info *mtd, unsigned int command,
579 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100581 register struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200582 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Brian Norris8b6e50c2011-05-25 14:59:01 -0700584 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (command == NAND_CMD_SEQIN) {
586 int readcmd;
587
Joern Engel28318772006-05-22 23:18:05 +0200588 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200590 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 readcmd = NAND_CMD_READOOB;
592 } else if (column < 256) {
593 /* First 256 bytes --> READ0 */
594 readcmd = NAND_CMD_READ0;
595 } else {
596 column -= 256;
597 readcmd = NAND_CMD_READ1;
598 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200599 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200600 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200602 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Brian Norris8b6e50c2011-05-25 14:59:01 -0700604 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200605 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
606 /* Serially input address */
607 if (column != -1) {
608 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800609 if (chip->options & NAND_BUSWIDTH_16 &&
610 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200611 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200612 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200613 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200615 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200616 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200617 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200618 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200619 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200620 if (chip->chipsize > (32 << 20))
621 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200622 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200623 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000624
625 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700626 * Program and erase have their own busy handlers status and sequential
627 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 case NAND_CMD_PAGEPROG:
632 case NAND_CMD_ERASE1:
633 case NAND_CMD_ERASE2:
634 case NAND_CMD_SEQIN:
635 case NAND_CMD_STATUS:
636 return;
637
638 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200639 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200641 udelay(chip->chip_delay);
642 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200643 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200644 chip->cmd_ctrl(mtd,
645 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200646 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
647 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return;
649
David Woodhousee0c7d762006-05-13 18:07:53 +0100650 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000652 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * If we don't have access to the busy pin, we apply the given
654 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100655 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200656 if (!chip->dev_ready) {
657 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700661 /*
662 * Apply this short delay always to ensure that we do wait tWB in
663 * any case on any machine.
664 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100665 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000666
667 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670/**
671 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700672 * @mtd: MTD device structure
673 * @command: the command to be sent
674 * @column: the column address for this command, -1 if none
675 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200677 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700678 * devices. We don't have the separate regions as we have in the small page
679 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200681static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
682 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100684 register struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 /* Emulate NAND_CMD_READOOB */
687 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200688 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 command = NAND_CMD_READ0;
690 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000691
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200692 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400693 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200696 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* Serially input address */
699 if (column != -1) {
700 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800701 if (chip->options & NAND_BUSWIDTH_16 &&
702 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200704 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200705 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200706 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200709 chip->cmd_ctrl(mtd, page_addr, ctrl);
710 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200711 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200713 if (chip->chipsize > (128 << 20))
714 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200715 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200718 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000719
720 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700721 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100722 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000723 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 case NAND_CMD_CACHEDPROG:
727 case NAND_CMD_PAGEPROG:
728 case NAND_CMD_ERASE1:
729 case NAND_CMD_ERASE2:
730 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200731 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000733 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200736 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200738 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200739 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
740 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
741 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
742 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200743 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
744 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return;
746
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200747 case NAND_CMD_RNDOUT:
748 /* No ready / busy check necessary */
749 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
750 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
751 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
752 NAND_NCE | NAND_CTRL_CHANGE);
753 return;
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200756 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
757 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
758 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
759 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000760
David Woodhousee0c7d762006-05-13 18:07:53 +0100761 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000763 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700765 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100766 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200767 if (!chip->dev_ready) {
768 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000772
Brian Norris8b6e50c2011-05-25 14:59:01 -0700773 /*
774 * Apply this short delay always to ensure that we do wait tWB in
775 * any case on any machine.
776 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100777 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000778
779 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200783 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700784 * @chip: the nand chip descriptor
785 * @mtd: MTD device structure
786 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200787 *
788 * Used when in panic, no locks are taken.
789 */
790static void panic_nand_get_device(struct nand_chip *chip,
791 struct mtd_info *mtd, int new_state)
792{
Brian Norris7854d3f2011-06-23 14:12:08 -0700793 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200794 chip->controller->active = chip;
795 chip->state = new_state;
796}
797
798/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700800 * @mtd: MTD device structure
801 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 *
803 * Get the device and lock it for exclusive access
804 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200805static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800806nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100808 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200809 spinlock_t *lock = &chip->controller->lock;
810 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100811 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200812retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100813 spin_lock(lock);
814
vimal singhb8b3ee92009-07-09 20:41:22 +0530815 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200816 if (!chip->controller->active)
817 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200818
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200819 if (chip->controller->active == chip && chip->state == FL_READY) {
820 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100821 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100822 return 0;
823 }
824 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800825 if (chip->controller->active->state == FL_PM_SUSPENDED) {
826 chip->state = FL_PM_SUSPENDED;
827 spin_unlock(lock);
828 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800829 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100830 }
831 set_current_state(TASK_UNINTERRUPTIBLE);
832 add_wait_queue(wq, &wait);
833 spin_unlock(lock);
834 schedule();
835 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 goto retry;
837}
838
839/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700840 * panic_nand_wait - [GENERIC] wait until the command is done
841 * @mtd: MTD device structure
842 * @chip: NAND chip structure
843 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200844 *
845 * Wait for command done. This is a helper function for nand_wait used when
846 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400847 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200848 */
849static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
850 unsigned long timeo)
851{
852 int i;
853 for (i = 0; i < timeo; i++) {
854 if (chip->dev_ready) {
855 if (chip->dev_ready(mtd))
856 break;
857 } else {
858 if (chip->read_byte(mtd) & NAND_STATUS_READY)
859 break;
860 }
861 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200862 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200863}
864
865/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700866 * nand_wait - [DEFAULT] wait until the command is done
867 * @mtd: MTD device structure
868 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 *
Alex Smithb70af9b2015-10-06 14:52:07 +0100870 * Wait for command done. This applies to erase and program only.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700871 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200872static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874
Alex Smithb70af9b2015-10-06 14:52:07 +0100875 int status;
876 unsigned long timeo = 400;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Brian Norris8b6e50c2011-05-25 14:59:01 -0700878 /*
879 * Apply this short delay always to ensure that we do wait tWB in any
880 * case on any machine.
881 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100882 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Artem Bityutskiy14c65782013-03-04 14:21:34 +0200884 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200886 if (in_interrupt() || oops_in_progress)
887 panic_nand_wait(mtd, chip, timeo);
888 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +0800889 timeo = jiffies + msecs_to_jiffies(timeo);
Alex Smithb70af9b2015-10-06 14:52:07 +0100890 do {
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200891 if (chip->dev_ready) {
892 if (chip->dev_ready(mtd))
893 break;
894 } else {
895 if (chip->read_byte(mtd) & NAND_STATUS_READY)
896 break;
897 }
898 cond_resched();
Alex Smithb70af9b2015-10-06 14:52:07 +0100899 } while (time_before(jiffies, timeo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800901
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200902 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +0100903 /* This can happen if in case of timeout or buggy dev_ready */
904 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return status;
906}
907
908/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700909 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700910 * @mtd: mtd info
911 * @ofs: offset to start unlock from
912 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700913 * @invert: when = 0, unlock the range of blocks within the lower and
914 * upper boundary address
915 * when = 1, unlock the range of blocks outside the boundaries
916 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530917 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700918 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530919 */
920static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
921 uint64_t len, int invert)
922{
923 int ret = 0;
924 int status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100925 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +0530926
927 /* Submit address of first page to unlock */
928 page = ofs >> chip->page_shift;
929 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
930
931 /* Submit address of last page to unlock */
932 page = (ofs + len) >> chip->page_shift;
933 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
934 (page | invert) & chip->pagemask);
935
936 /* Call wait ready function */
937 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530938 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -0400939 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -0700940 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530941 __func__, status);
942 ret = -EIO;
943 }
944
945 return ret;
946}
947
948/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700949 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700950 * @mtd: mtd info
951 * @ofs: offset to start unlock from
952 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530953 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700954 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530955 */
956int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
957{
958 int ret = 0;
959 int chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100960 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +0530961
Brian Norris289c0522011-07-19 10:06:09 -0700962 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530963 __func__, (unsigned long long)ofs, len);
964
965 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -0800966 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +0530967
968 /* Align to last block address if size addresses end of the device */
969 if (ofs + len == mtd->size)
970 len -= mtd->erasesize;
971
Huang Shijie6a8214a2012-11-19 14:43:30 +0800972 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +0530973
974 /* Shift to get chip number */
975 chipnr = ofs >> chip->chip_shift;
976
977 chip->select_chip(mtd, chipnr);
978
White Ding57d3a9a2014-07-24 00:10:45 +0800979 /*
980 * Reset the chip.
981 * If we want to check the WP through READ STATUS and check the bit 7
982 * we must reset the chip
983 * some operation can also clear the bit 7 of status register
984 * eg. erase/program a locked block
985 */
986 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
987
Vimal Singh7d70f332010-02-08 15:50:49 +0530988 /* Check, if it is write protected */
989 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -0700990 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530991 __func__);
992 ret = -EIO;
993 goto out;
994 }
995
996 ret = __nand_unlock(mtd, ofs, len, 0);
997
998out:
Huang Shijieb0bb6902012-11-19 14:43:29 +0800999 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301000 nand_release_device(mtd);
1001
1002 return ret;
1003}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001004EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301005
1006/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001007 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001008 * @mtd: mtd info
1009 * @ofs: offset to start unlock from
1010 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301011 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001012 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1013 * have this feature, but it allows only to lock all blocks, not for specified
1014 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1015 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301016 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001017 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301018 */
1019int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1020{
1021 int ret = 0;
1022 int chipnr, status, page;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001023 struct nand_chip *chip = mtd_to_nand(mtd);
Vimal Singh7d70f332010-02-08 15:50:49 +05301024
Brian Norris289c0522011-07-19 10:06:09 -07001025 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301026 __func__, (unsigned long long)ofs, len);
1027
1028 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001029 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301030
Huang Shijie6a8214a2012-11-19 14:43:30 +08001031 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301032
1033 /* Shift to get chip number */
1034 chipnr = ofs >> chip->chip_shift;
1035
1036 chip->select_chip(mtd, chipnr);
1037
White Ding57d3a9a2014-07-24 00:10:45 +08001038 /*
1039 * Reset the chip.
1040 * If we want to check the WP through READ STATUS and check the bit 7
1041 * we must reset the chip
1042 * some operation can also clear the bit 7 of status register
1043 * eg. erase/program a locked block
1044 */
1045 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1046
Vimal Singh7d70f332010-02-08 15:50:49 +05301047 /* Check, if it is write protected */
1048 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001049 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301050 __func__);
1051 status = MTD_ERASE_FAILED;
1052 ret = -EIO;
1053 goto out;
1054 }
1055
1056 /* Submit address of first page to lock */
1057 page = ofs >> chip->page_shift;
1058 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1059
1060 /* Call wait ready function */
1061 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301062 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001063 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001064 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301065 __func__, status);
1066 ret = -EIO;
1067 goto out;
1068 }
1069
1070 ret = __nand_unlock(mtd, ofs, len, 0x1);
1071
1072out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001073 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301074 nand_release_device(mtd);
1075
1076 return ret;
1077}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001078EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301079
1080/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001081 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1082 * @buf: buffer to test
1083 * @len: buffer length
1084 * @bitflips_threshold: maximum number of bitflips
1085 *
1086 * Check if a buffer contains only 0xff, which means the underlying region
1087 * has been erased and is ready to be programmed.
1088 * The bitflips_threshold specify the maximum number of bitflips before
1089 * considering the region is not erased.
1090 * Note: The logic of this function has been extracted from the memweight
1091 * implementation, except that nand_check_erased_buf function exit before
1092 * testing the whole buffer if the number of bitflips exceed the
1093 * bitflips_threshold value.
1094 *
1095 * Returns a positive number of bitflips less than or equal to
1096 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1097 * threshold.
1098 */
1099static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1100{
1101 const unsigned char *bitmap = buf;
1102 int bitflips = 0;
1103 int weight;
1104
1105 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1106 len--, bitmap++) {
1107 weight = hweight8(*bitmap);
1108 bitflips += BITS_PER_BYTE - weight;
1109 if (unlikely(bitflips > bitflips_threshold))
1110 return -EBADMSG;
1111 }
1112
1113 for (; len >= sizeof(long);
1114 len -= sizeof(long), bitmap += sizeof(long)) {
1115 weight = hweight_long(*((unsigned long *)bitmap));
1116 bitflips += BITS_PER_LONG - weight;
1117 if (unlikely(bitflips > bitflips_threshold))
1118 return -EBADMSG;
1119 }
1120
1121 for (; len > 0; len--, bitmap++) {
1122 weight = hweight8(*bitmap);
1123 bitflips += BITS_PER_BYTE - weight;
1124 if (unlikely(bitflips > bitflips_threshold))
1125 return -EBADMSG;
1126 }
1127
1128 return bitflips;
1129}
1130
1131/**
1132 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1133 * 0xff data
1134 * @data: data buffer to test
1135 * @datalen: data length
1136 * @ecc: ECC buffer
1137 * @ecclen: ECC length
1138 * @extraoob: extra OOB buffer
1139 * @extraooblen: extra OOB length
1140 * @bitflips_threshold: maximum number of bitflips
1141 *
1142 * Check if a data buffer and its associated ECC and OOB data contains only
1143 * 0xff pattern, which means the underlying region has been erased and is
1144 * ready to be programmed.
1145 * The bitflips_threshold specify the maximum number of bitflips before
1146 * considering the region as not erased.
1147 *
1148 * Note:
1149 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1150 * different from the NAND page size. When fixing bitflips, ECC engines will
1151 * report the number of errors per chunk, and the NAND core infrastructure
1152 * expect you to return the maximum number of bitflips for the whole page.
1153 * This is why you should always use this function on a single chunk and
1154 * not on the whole page. After checking each chunk you should update your
1155 * max_bitflips value accordingly.
1156 * 2/ When checking for bitflips in erased pages you should not only check
1157 * the payload data but also their associated ECC data, because a user might
1158 * have programmed almost all bits to 1 but a few. In this case, we
1159 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1160 * this case.
1161 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1162 * data are protected by the ECC engine.
1163 * It could also be used if you support subpages and want to attach some
1164 * extra OOB data to an ECC chunk.
1165 *
1166 * Returns a positive number of bitflips less than or equal to
1167 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1168 * threshold. In case of success, the passed buffers are filled with 0xff.
1169 */
1170int nand_check_erased_ecc_chunk(void *data, int datalen,
1171 void *ecc, int ecclen,
1172 void *extraoob, int extraooblen,
1173 int bitflips_threshold)
1174{
1175 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1176
1177 data_bitflips = nand_check_erased_buf(data, datalen,
1178 bitflips_threshold);
1179 if (data_bitflips < 0)
1180 return data_bitflips;
1181
1182 bitflips_threshold -= data_bitflips;
1183
1184 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1185 if (ecc_bitflips < 0)
1186 return ecc_bitflips;
1187
1188 bitflips_threshold -= ecc_bitflips;
1189
1190 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1191 bitflips_threshold);
1192 if (extraoob_bitflips < 0)
1193 return extraoob_bitflips;
1194
1195 if (data_bitflips)
1196 memset(data, 0xff, datalen);
1197
1198 if (ecc_bitflips)
1199 memset(ecc, 0xff, ecclen);
1200
1201 if (extraoob_bitflips)
1202 memset(extraoob, 0xff, extraooblen);
1203
1204 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1205}
1206EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1207
1208/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001209 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001210 * @mtd: mtd info structure
1211 * @chip: nand chip info structure
1212 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001213 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001214 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001215 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001216 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001217 */
1218static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001219 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001220{
1221 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001222 if (oob_required)
1223 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001224 return 0;
1225}
1226
1227/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001228 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
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
Brian Norris1fbb9382012-05-02 10:14:55 -07001232 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001233 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001234 *
1235 * We need a special oob layout and handling even when OOB isn't used.
1236 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001237static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001238 struct nand_chip *chip, uint8_t *buf,
1239 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001240{
1241 int eccsize = chip->ecc.size;
1242 int eccbytes = chip->ecc.bytes;
1243 uint8_t *oob = chip->oob_poi;
1244 int steps, size;
1245
1246 for (steps = chip->ecc.steps; steps > 0; steps--) {
1247 chip->read_buf(mtd, buf, eccsize);
1248 buf += eccsize;
1249
1250 if (chip->ecc.prepad) {
1251 chip->read_buf(mtd, oob, chip->ecc.prepad);
1252 oob += chip->ecc.prepad;
1253 }
1254
1255 chip->read_buf(mtd, oob, eccbytes);
1256 oob += eccbytes;
1257
1258 if (chip->ecc.postpad) {
1259 chip->read_buf(mtd, oob, chip->ecc.postpad);
1260 oob += chip->ecc.postpad;
1261 }
1262 }
1263
1264 size = mtd->oobsize - (oob - chip->oob_poi);
1265 if (size)
1266 chip->read_buf(mtd, oob, size);
1267
1268 return 0;
1269}
1270
1271/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001272 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001273 * @mtd: mtd info structure
1274 * @chip: nand chip info structure
1275 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001276 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001277 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001278 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001279static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001280 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001282 int i, eccsize = chip->ecc.size;
1283 int eccbytes = chip->ecc.bytes;
1284 int eccsteps = chip->ecc.steps;
1285 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001286 uint8_t *ecc_calc = chip->buffers->ecccalc;
1287 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001288 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001289 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001290
Brian Norris1fbb9382012-05-02 10:14:55 -07001291 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001292
1293 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1294 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1295
1296 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001297 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001298
1299 eccsteps = chip->ecc.steps;
1300 p = buf;
1301
1302 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1303 int stat;
1304
1305 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001306 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001307 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001308 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001309 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001310 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1311 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001312 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001313 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001314}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301317 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001318 * @mtd: mtd info structure
1319 * @chip: nand chip info structure
1320 * @data_offs: offset of requested data within the page
1321 * @readlen: data length
1322 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001323 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001324 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001325static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001326 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1327 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001328{
1329 int start_step, end_step, num_steps;
1330 uint32_t *eccpos = chip->ecc.layout->eccpos;
1331 uint8_t *p;
1332 int data_col_addr, i, gaps = 0;
1333 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1334 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Ron4a4163c2014-03-16 04:01:07 +10301335 int index;
Mike Dunn3f91e942012-04-25 12:06:09 -07001336 unsigned int max_bitflips = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001337
Brian Norris7854d3f2011-06-23 14:12:08 -07001338 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001339 start_step = data_offs / chip->ecc.size;
1340 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1341 num_steps = end_step - start_step + 1;
Ron4a4163c2014-03-16 04:01:07 +10301342 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001343
Brian Norris8b6e50c2011-05-25 14:59:01 -07001344 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001345 datafrag_len = num_steps * chip->ecc.size;
1346 eccfrag_len = num_steps * chip->ecc.bytes;
1347
1348 data_col_addr = start_step * chip->ecc.size;
1349 /* If we read not a page aligned data */
1350 if (data_col_addr != 0)
1351 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1352
1353 p = bufpoi + data_col_addr;
1354 chip->read_buf(mtd, p, datafrag_len);
1355
Brian Norris8b6e50c2011-05-25 14:59:01 -07001356 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001357 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1358 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1359
Brian Norris8b6e50c2011-05-25 14:59:01 -07001360 /*
1361 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001362 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001363 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001364 for (i = 0; i < eccfrag_len - 1; i++) {
Ron47570bb12014-03-16 04:01:08 +10301365 if (eccpos[i + index] + 1 != eccpos[i + index + 1]) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001366 gaps = 1;
1367 break;
1368 }
1369 }
1370 if (gaps) {
1371 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1372 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1373 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001374 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001375 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001376 * about buswidth alignment in read_buf.
1377 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001378 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001379 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001380 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001381 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001382 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001383 aligned_len++;
1384
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001385 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1386 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001387 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1388 }
1389
1390 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001391 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001392
1393 p = bufpoi + data_col_addr;
1394 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1395 int stat;
1396
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001397 stat = chip->ecc.correct(mtd, p,
1398 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001399 if (stat == -EBADMSG &&
1400 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1401 /* check for empty pages with bitflips */
1402 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1403 &chip->buffers->ecccode[i],
1404 chip->ecc.bytes,
1405 NULL, 0,
1406 chip->ecc.strength);
1407 }
1408
Mike Dunn3f91e942012-04-25 12:06:09 -07001409 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001410 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001411 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001412 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001413 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1414 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001415 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001416 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001417}
1418
1419/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001420 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001421 * @mtd: mtd info structure
1422 * @chip: nand chip info structure
1423 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001424 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001425 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001426 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001427 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001428 */
1429static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001430 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001431{
1432 int i, eccsize = chip->ecc.size;
1433 int eccbytes = chip->ecc.bytes;
1434 int eccsteps = chip->ecc.steps;
1435 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001436 uint8_t *ecc_calc = chip->buffers->ecccalc;
1437 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001438 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001439 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001440
1441 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1442 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1443 chip->read_buf(mtd, p, eccsize);
1444 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1445 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001446 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001447
1448 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001449 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001450
1451 eccsteps = chip->ecc.steps;
1452 p = buf;
1453
1454 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1455 int stat;
1456
1457 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001458 if (stat == -EBADMSG &&
1459 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1460 /* check for empty pages with bitflips */
1461 stat = nand_check_erased_ecc_chunk(p, eccsize,
1462 &ecc_code[i], eccbytes,
1463 NULL, 0,
1464 chip->ecc.strength);
1465 }
1466
Mike Dunn3f91e942012-04-25 12:06:09 -07001467 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001468 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001469 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001470 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001471 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1472 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001473 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001474 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001475}
1476
1477/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001478 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001479 * @mtd: mtd info structure
1480 * @chip: nand chip info structure
1481 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001482 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001483 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001484 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001485 * Hardware ECC for large page chips, require OOB to be read first. For this
1486 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1487 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1488 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1489 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001490 */
1491static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001492 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001493{
1494 int i, eccsize = chip->ecc.size;
1495 int eccbytes = chip->ecc.bytes;
1496 int eccsteps = chip->ecc.steps;
1497 uint8_t *p = buf;
1498 uint8_t *ecc_code = chip->buffers->ecccode;
1499 uint32_t *eccpos = chip->ecc.layout->eccpos;
1500 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001501 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001502
1503 /* Read the OOB area first */
1504 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1505 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1506 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1507
1508 for (i = 0; i < chip->ecc.total; i++)
1509 ecc_code[i] = chip->oob_poi[eccpos[i]];
1510
1511 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1512 int stat;
1513
1514 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1515 chip->read_buf(mtd, p, eccsize);
1516 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1517
1518 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001519 if (stat == -EBADMSG &&
1520 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1521 /* check for empty pages with bitflips */
1522 stat = nand_check_erased_ecc_chunk(p, eccsize,
1523 &ecc_code[i], eccbytes,
1524 NULL, 0,
1525 chip->ecc.strength);
1526 }
1527
Mike Dunn3f91e942012-04-25 12:06:09 -07001528 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001529 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001530 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001531 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001532 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1533 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001534 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001535 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001536}
1537
1538/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001539 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001540 * @mtd: mtd info structure
1541 * @chip: nand chip info structure
1542 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001543 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001544 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001545 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001546 * The hw generator calculates the error syndrome automatically. Therefore we
1547 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001548 */
1549static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001550 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001551{
1552 int i, eccsize = chip->ecc.size;
1553 int eccbytes = chip->ecc.bytes;
1554 int eccsteps = chip->ecc.steps;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001555 int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001556 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001557 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001558 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001559
1560 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1561 int stat;
1562
1563 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1564 chip->read_buf(mtd, p, eccsize);
1565
1566 if (chip->ecc.prepad) {
1567 chip->read_buf(mtd, oob, chip->ecc.prepad);
1568 oob += chip->ecc.prepad;
1569 }
1570
1571 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1572 chip->read_buf(mtd, oob, eccbytes);
1573 stat = chip->ecc.correct(mtd, p, oob, NULL);
1574
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001575 oob += eccbytes;
1576
1577 if (chip->ecc.postpad) {
1578 chip->read_buf(mtd, oob, chip->ecc.postpad);
1579 oob += chip->ecc.postpad;
1580 }
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +01001581
1582 if (stat == -EBADMSG &&
1583 (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) {
1584 /* check for empty pages with bitflips */
1585 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size,
1586 oob - eccpadbytes,
1587 eccpadbytes,
1588 NULL, 0,
1589 chip->ecc.strength);
1590 }
1591
1592 if (stat < 0) {
1593 mtd->ecc_stats.failed++;
1594 } else {
1595 mtd->ecc_stats.corrected += stat;
1596 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1597 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001598 }
1599
1600 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001601 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001602 if (i)
1603 chip->read_buf(mtd, oob, i);
1604
Mike Dunn3f91e942012-04-25 12:06:09 -07001605 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001606}
1607
1608/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001609 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001610 * @chip: nand chip structure
1611 * @oob: oob destination address
1612 * @ops: oob ops structure
1613 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001614 */
1615static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001616 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001617{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001618 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001619
Brian Norris0612b9d2011-08-30 18:45:40 -07001620 case MTD_OPS_PLACE_OOB:
1621 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001622 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1623 return oob + len;
1624
Brian Norris0612b9d2011-08-30 18:45:40 -07001625 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001626 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001627 uint32_t boffs = 0, roffs = ops->ooboffs;
1628 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001629
Florian Fainellif8ac0412010-09-07 13:23:43 +02001630 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001631 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001632 if (unlikely(roffs)) {
1633 if (roffs >= free->length) {
1634 roffs -= free->length;
1635 continue;
1636 }
1637 boffs = free->offset + roffs;
1638 bytes = min_t(size_t, len,
1639 (free->length - roffs));
1640 roffs = 0;
1641 } else {
1642 bytes = min_t(size_t, len, free->length);
1643 boffs = free->offset;
1644 }
1645 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001646 oob += bytes;
1647 }
1648 return oob;
1649 }
1650 default:
1651 BUG();
1652 }
1653 return NULL;
1654}
1655
1656/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001657 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1658 * @mtd: MTD device structure
1659 * @retry_mode: the retry mode to use
1660 *
1661 * Some vendors supply a special command to shift the Vt threshold, to be used
1662 * when there are too many bitflips in a page (i.e., ECC error). After setting
1663 * a new threshold, the host should retry reading the page.
1664 */
1665static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1666{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001667 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norrisba84fb52014-01-03 15:13:33 -08001668
1669 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1670
1671 if (retry_mode >= chip->read_retries)
1672 return -EINVAL;
1673
1674 if (!chip->setup_read_retry)
1675 return -EOPNOTSUPP;
1676
1677 return chip->setup_read_retry(mtd, retry_mode);
1678}
1679
1680/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001681 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001682 * @mtd: MTD device structure
1683 * @from: offset to read from
1684 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001685 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001686 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001687 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001688static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1689 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001690{
Brian Norrise47f3db2012-05-02 10:14:56 -07001691 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Boris BREZILLON862eba52015-12-01 12:03:03 +01001692 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001693 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001694 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001695 uint32_t oobreadlen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01001696 uint32_t max_oobsize = mtd_oobavail(mtd, ops);
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001697
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001698 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04001699 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07001700 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08001701 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08001702 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001704 chipnr = (int)(from >> chip->chip_shift);
1705 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001707 realpage = (int)(from >> chip->page_shift);
1708 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001710 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001712 buf = ops->datbuf;
1713 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001714 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001715
Florian Fainellif8ac0412010-09-07 13:23:43 +02001716 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08001717 unsigned int ecc_failures = mtd->ecc_stats.failed;
1718
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001719 bytes = min(mtd->writesize - col, readlen);
1720 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001721
Kamal Dasu66507c72014-05-01 20:51:19 -04001722 if (!aligned)
1723 use_bufpoi = 1;
1724 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1725 use_bufpoi = !virt_addr_valid(buf);
1726 else
1727 use_bufpoi = 0;
1728
Brian Norris8b6e50c2011-05-25 14:59:01 -07001729 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001730 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001731 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1732
1733 if (use_bufpoi && aligned)
1734 pr_debug("%s: using read bounce buffer for buf@%p\n",
1735 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Brian Norrisba84fb52014-01-03 15:13:33 -08001737read_retry:
Brian Norrisc00a0992012-05-01 17:12:54 -07001738 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Mike Dunnedbc45402012-04-25 12:06:11 -07001740 /*
1741 * Now read the page into the buffer. Absent an error,
1742 * the read methods return max bitflips per ecc step.
1743 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001744 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001745 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001746 oob_required,
1747 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001748 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1749 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001750 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001751 col, bytes, bufpoi,
1752 page);
David Woodhouse956e9442006-09-25 17:12:39 +01001753 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001754 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001755 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001756 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001757 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07001758 /* Invalidate page cache */
1759 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001760 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001761 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001762
Mike Dunnedbc45402012-04-25 12:06:11 -07001763 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1764
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001765 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001766 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001767 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08001768 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07001769 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001770 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07001771 chip->pagebuf_bitflips = ret;
1772 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07001773 /* Invalidate page cache */
1774 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07001775 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001776 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001778
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001779 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001780 int toread = min(oobreadlen, max_oobsize);
1781
1782 if (toread) {
1783 oob = nand_transfer_oob(chip,
1784 oob, ops, toread);
1785 oobreadlen -= toread;
1786 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001787 }
Brian Norris5bc7c332013-03-13 09:51:31 -07001788
1789 if (chip->options & NAND_NEED_READRDY) {
1790 /* Apply delay or wait for ready/busy pin */
1791 if (!chip->dev_ready)
1792 udelay(chip->chip_delay);
1793 else
1794 nand_wait_ready(mtd);
1795 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08001796
Brian Norrisba84fb52014-01-03 15:13:33 -08001797 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08001798 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08001799 retry_mode++;
1800 ret = nand_setup_read_retry(mtd,
1801 retry_mode);
1802 if (ret < 0)
1803 break;
1804
1805 /* Reset failures; retry */
1806 mtd->ecc_stats.failed = ecc_failures;
1807 goto read_retry;
1808 } else {
1809 /* No more retry modes; real failure */
1810 ecc_fail = true;
1811 }
1812 }
1813
1814 buf += bytes;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001815 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001816 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001817 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07001818 max_bitflips = max_t(unsigned int, max_bitflips,
1819 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001822 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001823
Brian Norrisba84fb52014-01-03 15:13:33 -08001824 /* Reset to retry mode 0 */
1825 if (retry_mode) {
1826 ret = nand_setup_read_retry(mtd, 0);
1827 if (ret < 0)
1828 break;
1829 retry_mode = 0;
1830 }
1831
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001832 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001833 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Brian Norris8b6e50c2011-05-25 14:59:01 -07001835 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 col = 0;
1837 /* Increment page address */
1838 realpage++;
1839
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001840 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 /* Check, if we cross a chip boundary */
1842 if (!page) {
1843 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001844 chip->select_chip(mtd, -1);
1845 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08001848 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001850 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001851 if (oob)
1852 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Mike Dunn3f91e942012-04-25 12:06:09 -07001854 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001855 return ret;
1856
Brian Norrisb72f3df2013-12-03 11:04:14 -08001857 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001858 return -EBADMSG;
1859
Mike Dunnedbc45402012-04-25 12:06:11 -07001860 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001861}
1862
1863/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001864 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001865 * @mtd: MTD device structure
1866 * @from: offset to read from
1867 * @len: number of bytes to read
1868 * @retlen: pointer to variable to store the number of read bytes
1869 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001870 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001871 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001872 */
1873static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1874 size_t *retlen, uint8_t *buf)
1875{
Brian Norris4a89ff82011-08-30 18:45:45 -07001876 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001877 int ret;
1878
Huang Shijie6a8214a2012-11-19 14:43:30 +08001879 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08001880 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07001881 ops.len = len;
1882 ops.datbuf = buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08001883 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07001884 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07001885 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001886 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
1890/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001891 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001892 * @mtd: mtd info structure
1893 * @chip: nand chip info structure
1894 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001895 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001896int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001897{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001898 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001899 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001900 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001901}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001902EXPORT_SYMBOL(nand_read_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001903
1904/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001905 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001906 * with syndromes
Brian Norris8b6e50c2011-05-25 14:59:01 -07001907 * @mtd: mtd info structure
1908 * @chip: nand chip info structure
1909 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001910 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001911int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1912 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001913{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001914 int length = mtd->oobsize;
1915 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1916 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02001917 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001918 int i, toread, sndrnd = 0, pos;
1919
1920 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1921 for (i = 0; i < chip->ecc.steps; i++) {
1922 if (sndrnd) {
1923 pos = eccsize + i * (eccsize + chunk);
1924 if (mtd->writesize > 512)
1925 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1926 else
1927 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1928 } else
1929 sndrnd = 1;
1930 toread = min_t(int, length, chunk);
1931 chip->read_buf(mtd, bufpoi, toread);
1932 bufpoi += toread;
1933 length -= toread;
1934 }
1935 if (length > 0)
1936 chip->read_buf(mtd, bufpoi, length);
1937
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001938 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001939}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001940EXPORT_SYMBOL(nand_read_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001941
1942/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001943 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001944 * @mtd: mtd info structure
1945 * @chip: nand chip info structure
1946 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001947 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001948int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001949{
1950 int status = 0;
1951 const uint8_t *buf = chip->oob_poi;
1952 int length = mtd->oobsize;
1953
1954 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1955 chip->write_buf(mtd, buf, length);
1956 /* Send command to program the OOB data */
1957 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1958
1959 status = chip->waitfunc(mtd, chip);
1960
Savin Zlobec0d420f92006-06-21 11:51:20 +02001961 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001962}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001963EXPORT_SYMBOL(nand_write_oob_std);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001964
1965/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001966 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001967 * with syndrome - only for large page flash
1968 * @mtd: mtd info structure
1969 * @chip: nand chip info structure
1970 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001971 */
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001972int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1973 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001974{
1975 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1976 int eccsize = chip->ecc.size, length = mtd->oobsize;
1977 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1978 const uint8_t *bufpoi = chip->oob_poi;
1979
1980 /*
1981 * data-ecc-data-ecc ... ecc-oob
1982 * or
1983 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1984 */
1985 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1986 pos = steps * (eccsize + chunk);
1987 steps = 0;
1988 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001989 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001990
1991 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1992 for (i = 0; i < steps; i++) {
1993 if (sndcmd) {
1994 if (mtd->writesize <= 512) {
1995 uint32_t fill = 0xFFFFFFFF;
1996
1997 len = eccsize;
1998 while (len > 0) {
1999 int num = min_t(int, len, 4);
2000 chip->write_buf(mtd, (uint8_t *)&fill,
2001 num);
2002 len -= num;
2003 }
2004 } else {
2005 pos = eccsize + i * (eccsize + chunk);
2006 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
2007 }
2008 } else
2009 sndcmd = 1;
2010 len = min_t(int, length, chunk);
2011 chip->write_buf(mtd, bufpoi, len);
2012 bufpoi += len;
2013 length -= len;
2014 }
2015 if (length > 0)
2016 chip->write_buf(mtd, bufpoi, length);
2017
2018 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2019 status = chip->waitfunc(mtd, chip);
2020
2021 return status & NAND_STATUS_FAIL ? -EIO : 0;
2022}
Boris Brezillon9d02fc22015-08-26 16:08:12 +02002023EXPORT_SYMBOL(nand_write_oob_syndrome);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002024
2025/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002026 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002027 * @mtd: MTD device structure
2028 * @from: offset to read from
2029 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002031 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002033static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2034 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Brian Norrisc00a0992012-05-01 17:12:54 -07002036 int page, realpage, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002037 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris041e4572011-06-23 16:45:24 -07002038 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002039 int readlen = ops->ooblen;
2040 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002041 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002042 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Brian Norris289c0522011-07-19 10:06:09 -07002044 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302045 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Brian Norris041e4572011-06-23 16:45:24 -07002047 stats = mtd->ecc_stats;
2048
Boris BREZILLON29f10582016-03-07 10:46:52 +01002049 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002050
2051 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002052 pr_debug("%s: attempt to start read outside oob\n",
2053 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002054 return -EINVAL;
2055 }
2056
2057 /* Do not allow reads past end of device */
2058 if (unlikely(from >= mtd->size ||
2059 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2060 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002061 pr_debug("%s: attempt to read beyond end of device\n",
2062 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002063 return -EINVAL;
2064 }
Vitaly Wool70145682006-11-03 18:20:38 +03002065
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002066 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002067 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002069 /* Shift to get page */
2070 realpage = (int)(from >> chip->page_shift);
2071 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Florian Fainellif8ac0412010-09-07 13:23:43 +02002073 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002074 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002075 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002076 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002077 ret = chip->ecc.read_oob(mtd, chip, page);
2078
2079 if (ret < 0)
2080 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002081
2082 len = min(len, readlen);
2083 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002084
Brian Norris5bc7c332013-03-13 09:51:31 -07002085 if (chip->options & NAND_NEED_READRDY) {
2086 /* Apply delay or wait for ready/busy pin */
2087 if (!chip->dev_ready)
2088 udelay(chip->chip_delay);
2089 else
2090 nand_wait_ready(mtd);
2091 }
2092
Vitaly Wool70145682006-11-03 18:20:38 +03002093 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002094 if (!readlen)
2095 break;
2096
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002097 /* Increment page address */
2098 realpage++;
2099
2100 page = realpage & chip->pagemask;
2101 /* Check, if we cross a chip boundary */
2102 if (!page) {
2103 chipnr++;
2104 chip->select_chip(mtd, -1);
2105 chip->select_chip(mtd, chipnr);
2106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002108 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002110 ops->oobretlen = ops->ooblen - readlen;
2111
2112 if (ret < 0)
2113 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002114
2115 if (mtd->ecc_stats.failed - stats.failed)
2116 return -EBADMSG;
2117
2118 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
2121/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002122 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002123 * @mtd: MTD device structure
2124 * @from: offset to read from
2125 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002127 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002129static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2130 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002132 int ret = -ENOTSUPP;
2133
2134 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002137 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002138 pr_debug("%s: attempt to read beyond end of device\n",
2139 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 return -EINVAL;
2141 }
2142
Huang Shijie6a8214a2012-11-19 14:43:30 +08002143 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Florian Fainellif8ac0412010-09-07 13:23:43 +02002145 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002146 case MTD_OPS_PLACE_OOB:
2147 case MTD_OPS_AUTO_OOB:
2148 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002149 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002150
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002151 default:
2152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002155 if (!ops->datbuf)
2156 ret = nand_do_read_oob(mtd, from, ops);
2157 else
2158 ret = nand_do_read_ops(mtd, from, ops);
2159
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002160out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002162 return ret;
2163}
2164
2165
2166/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002167 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002168 * @mtd: mtd info structure
2169 * @chip: nand chip info structure
2170 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002171 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002172 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002173 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002174 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002175 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002176static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002177 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002178{
2179 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002180 if (oob_required)
2181 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002182
2183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
2185
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002186/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002187 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002188 * @mtd: mtd info structure
2189 * @chip: nand chip info structure
2190 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002191 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002192 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002193 *
2194 * We need a special oob layout and handling even when ECC isn't checked.
2195 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002196static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002197 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002198 const uint8_t *buf, int oob_required,
2199 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002200{
2201 int eccsize = chip->ecc.size;
2202 int eccbytes = chip->ecc.bytes;
2203 uint8_t *oob = chip->oob_poi;
2204 int steps, size;
2205
2206 for (steps = chip->ecc.steps; steps > 0; steps--) {
2207 chip->write_buf(mtd, buf, eccsize);
2208 buf += eccsize;
2209
2210 if (chip->ecc.prepad) {
2211 chip->write_buf(mtd, oob, chip->ecc.prepad);
2212 oob += chip->ecc.prepad;
2213 }
2214
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002215 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002216 oob += eccbytes;
2217
2218 if (chip->ecc.postpad) {
2219 chip->write_buf(mtd, oob, chip->ecc.postpad);
2220 oob += chip->ecc.postpad;
2221 }
2222 }
2223
2224 size = mtd->oobsize - (oob - chip->oob_poi);
2225 if (size)
2226 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002227
2228 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002229}
2230/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002231 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002232 * @mtd: mtd info structure
2233 * @chip: nand chip info structure
2234 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002235 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002236 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002237 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002238static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002239 const uint8_t *buf, int oob_required,
2240 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002241{
2242 int i, eccsize = chip->ecc.size;
2243 int eccbytes = chip->ecc.bytes;
2244 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002245 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002246 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002247 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002248
Brian Norris7854d3f2011-06-23 14:12:08 -07002249 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002250 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2251 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002252
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002253 for (i = 0; i < chip->ecc.total; i++)
2254 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002255
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002256 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002257}
2258
2259/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002260 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002261 * @mtd: mtd info structure
2262 * @chip: nand chip info structure
2263 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002264 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002265 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002266 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002267static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002268 const uint8_t *buf, int oob_required,
2269 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002270{
2271 int i, eccsize = chip->ecc.size;
2272 int eccbytes = chip->ecc.bytes;
2273 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002274 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002275 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002276 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002277
2278 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2279 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002280 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002281 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2282 }
2283
2284 for (i = 0; i < chip->ecc.total; i++)
2285 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2286
2287 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002288
2289 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002290}
2291
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302292
2293/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002294 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302295 * @mtd: mtd info structure
2296 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002297 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302298 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002299 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302300 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002301 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302302 */
2303static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2304 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002305 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002306 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302307{
2308 uint8_t *oob_buf = chip->oob_poi;
2309 uint8_t *ecc_calc = chip->buffers->ecccalc;
2310 int ecc_size = chip->ecc.size;
2311 int ecc_bytes = chip->ecc.bytes;
2312 int ecc_steps = chip->ecc.steps;
2313 uint32_t *eccpos = chip->ecc.layout->eccpos;
2314 uint32_t start_step = offset / ecc_size;
2315 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2316 int oob_bytes = mtd->oobsize / ecc_steps;
2317 int step, i;
2318
2319 for (step = 0; step < ecc_steps; step++) {
2320 /* configure controller for WRITE access */
2321 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2322
2323 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002324 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302325
2326 /* mask ECC of un-touched subpages by padding 0xFF */
2327 if ((step < start_step) || (step > end_step))
2328 memset(ecc_calc, 0xff, ecc_bytes);
2329 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002330 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302331
2332 /* mask OOB of un-touched subpages by padding 0xFF */
2333 /* if oob_required, preserve OOB metadata of written subpage */
2334 if (!oob_required || (step < start_step) || (step > end_step))
2335 memset(oob_buf, 0xff, oob_bytes);
2336
Brian Norrisd6a950802013-08-08 17:16:36 -07002337 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302338 ecc_calc += ecc_bytes;
2339 oob_buf += oob_bytes;
2340 }
2341
2342 /* copy calculated ECC for whole page to chip->buffer->oob */
2343 /* this include masked-value(0xFF) for unwritten subpages */
2344 ecc_calc = chip->buffers->ecccalc;
2345 for (i = 0; i < chip->ecc.total; i++)
2346 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2347
2348 /* write OOB buffer to NAND device */
2349 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2350
2351 return 0;
2352}
2353
2354
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002355/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002356 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002357 * @mtd: mtd info structure
2358 * @chip: nand chip info structure
2359 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002360 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002361 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002362 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002363 * The hw generator calculates the error syndrome automatically. Therefore we
2364 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002365 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002366static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002367 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002368 const uint8_t *buf, int oob_required,
2369 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002370{
2371 int i, eccsize = chip->ecc.size;
2372 int eccbytes = chip->ecc.bytes;
2373 int eccsteps = chip->ecc.steps;
2374 const uint8_t *p = buf;
2375 uint8_t *oob = chip->oob_poi;
2376
2377 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2378
2379 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2380 chip->write_buf(mtd, p, eccsize);
2381
2382 if (chip->ecc.prepad) {
2383 chip->write_buf(mtd, oob, chip->ecc.prepad);
2384 oob += chip->ecc.prepad;
2385 }
2386
2387 chip->ecc.calculate(mtd, p, oob);
2388 chip->write_buf(mtd, oob, eccbytes);
2389 oob += eccbytes;
2390
2391 if (chip->ecc.postpad) {
2392 chip->write_buf(mtd, oob, chip->ecc.postpad);
2393 oob += chip->ecc.postpad;
2394 }
2395 }
2396
2397 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002398 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002399 if (i)
2400 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002401
2402 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002403}
2404
2405/**
David Woodhouse956e9442006-09-25 17:12:39 +01002406 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002407 * @mtd: MTD device structure
2408 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302409 * @offset: address offset within the page
2410 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002411 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002412 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002413 * @page: page number to write
2414 * @cached: cached programming
2415 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002416 */
2417static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302418 uint32_t offset, int data_len, const uint8_t *buf,
2419 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002420{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302421 int status, subpage;
2422
2423 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2424 chip->ecc.write_subpage)
2425 subpage = offset || (data_len < mtd->writesize);
2426 else
2427 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002428
2429 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2430
David Woodhouse956e9442006-09-25 17:12:39 +01002431 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302432 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002433 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302434 else if (subpage)
2435 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002436 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002437 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002438 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2439 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002440
2441 if (status < 0)
2442 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002443
2444 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002445 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002446 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002447 */
2448 cached = 0;
2449
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002450 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002451
2452 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002453 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002454 /*
2455 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002456 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002457 */
2458 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2459 status = chip->errstat(mtd, chip, FL_WRITING, status,
2460 page);
2461
2462 if (status & NAND_STATUS_FAIL)
2463 return -EIO;
2464 } else {
2465 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002466 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002467 }
2468
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002469 return 0;
2470}
2471
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002472/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002473 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002474 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002475 * @oob: oob data buffer
2476 * @len: oob data write length
2477 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002478 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002479static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2480 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002481{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002482 struct nand_chip *chip = mtd_to_nand(mtd);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002483
2484 /*
2485 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2486 * data from a previous OOB read.
2487 */
2488 memset(chip->oob_poi, 0xff, mtd->oobsize);
2489
Florian Fainellif8ac0412010-09-07 13:23:43 +02002490 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002491
Brian Norris0612b9d2011-08-30 18:45:40 -07002492 case MTD_OPS_PLACE_OOB:
2493 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002494 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2495 return oob + len;
2496
Brian Norris0612b9d2011-08-30 18:45:40 -07002497 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002498 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002499 uint32_t boffs = 0, woffs = ops->ooboffs;
2500 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002501
Florian Fainellif8ac0412010-09-07 13:23:43 +02002502 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002503 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002504 if (unlikely(woffs)) {
2505 if (woffs >= free->length) {
2506 woffs -= free->length;
2507 continue;
2508 }
2509 boffs = free->offset + woffs;
2510 bytes = min_t(size_t, len,
2511 (free->length - woffs));
2512 woffs = 0;
2513 } else {
2514 bytes = min_t(size_t, len, free->length);
2515 boffs = free->offset;
2516 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002517 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002518 oob += bytes;
2519 }
2520 return oob;
2521 }
2522 default:
2523 BUG();
2524 }
2525 return NULL;
2526}
2527
Florian Fainellif8ac0412010-09-07 13:23:43 +02002528#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002529
2530/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002531 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002532 * @mtd: MTD device structure
2533 * @to: offset to write to
2534 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002535 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002536 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002537 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002538static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2539 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002540{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002541 int chipnr, realpage, page, blockmask, column;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002542 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002543 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002544
2545 uint32_t oobwritelen = ops->ooblen;
Boris BREZILLON29f10582016-03-07 10:46:52 +01002546 uint32_t oobmaxlen = mtd_oobavail(mtd, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002547
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002548 uint8_t *oob = ops->oobbuf;
2549 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302550 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002551 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002552
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002553 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002554 if (!writelen)
2555 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002556
Brian Norris8b6e50c2011-05-25 14:59:01 -07002557 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002558 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002559 pr_notice("%s: attempt to write non page aligned data\n",
2560 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002561 return -EINVAL;
2562 }
2563
Thomas Gleixner29072b92006-09-28 15:38:36 +02002564 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002565
Thomas Gleixner6a930962006-06-28 00:11:45 +02002566 chipnr = (int)(to >> chip->chip_shift);
2567 chip->select_chip(mtd, chipnr);
2568
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002569 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002570 if (nand_check_wp(mtd)) {
2571 ret = -EIO;
2572 goto err_out;
2573 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002574
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002575 realpage = (int)(to >> chip->page_shift);
2576 page = realpage & chip->pagemask;
2577 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2578
2579 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002580 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2581 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002582 chip->pagebuf = -1;
2583
Maxim Levitsky782ce792010-02-22 20:39:36 +02002584 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002585 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2586 ret = -EINVAL;
2587 goto err_out;
2588 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002589
Florian Fainellif8ac0412010-09-07 13:23:43 +02002590 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002591 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002592 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002593 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002594 int use_bufpoi;
2595 int part_pagewr = (column || writelen < (mtd->writesize - 1));
Thomas Gleixner29072b92006-09-28 15:38:36 +02002596
Kamal Dasu66507c72014-05-01 20:51:19 -04002597 if (part_pagewr)
2598 use_bufpoi = 1;
2599 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2600 use_bufpoi = !virt_addr_valid(buf);
2601 else
2602 use_bufpoi = 0;
2603
2604 /* Partial page write?, or need to use bounce buffer */
2605 if (use_bufpoi) {
2606 pr_debug("%s: using write bounce buffer for buf@%p\n",
2607 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002608 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002609 if (part_pagewr)
2610 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002611 chip->pagebuf = -1;
2612 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2613 memcpy(&chip->buffers->databuf[column], buf, bytes);
2614 wbuf = chip->buffers->databuf;
2615 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002616
Maxim Levitsky782ce792010-02-22 20:39:36 +02002617 if (unlikely(oob)) {
2618 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002619 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002620 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002621 } else {
2622 /* We still need to erase leftover OOB data */
2623 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002624 }
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302625 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2626 oob_required, page, cached,
2627 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002628 if (ret)
2629 break;
2630
2631 writelen -= bytes;
2632 if (!writelen)
2633 break;
2634
Thomas Gleixner29072b92006-09-28 15:38:36 +02002635 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002636 buf += bytes;
2637 realpage++;
2638
2639 page = realpage & chip->pagemask;
2640 /* Check, if we cross a chip boundary */
2641 if (!page) {
2642 chipnr++;
2643 chip->select_chip(mtd, -1);
2644 chip->select_chip(mtd, chipnr);
2645 }
2646 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002647
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002648 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002649 if (unlikely(oob))
2650 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002651
2652err_out:
2653 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002654 return ret;
2655}
2656
2657/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002658 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002659 * @mtd: MTD device structure
2660 * @to: offset to write to
2661 * @len: number of bytes to write
2662 * @retlen: pointer to variable to store the number of written bytes
2663 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002664 *
2665 * NAND write with ECC. Used when performing writes in interrupt context, this
2666 * may for example be called by mtdoops when writing an oops while in panic.
2667 */
2668static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2669 size_t *retlen, const uint8_t *buf)
2670{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002671 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris4a89ff82011-08-30 18:45:45 -07002672 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002673 int ret;
2674
Brian Norris8b6e50c2011-05-25 14:59:01 -07002675 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002676 panic_nand_wait(mtd, chip, 400);
2677
Brian Norris8b6e50c2011-05-25 14:59:01 -07002678 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002679 panic_nand_get_device(chip, mtd, FL_WRITING);
2680
Brian Norris0ec56dc2015-02-28 02:02:30 -08002681 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002682 ops.len = len;
2683 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08002684 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002685
Brian Norris4a89ff82011-08-30 18:45:45 -07002686 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002687
Brian Norris4a89ff82011-08-30 18:45:45 -07002688 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002689 return ret;
2690}
2691
2692/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002693 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002694 * @mtd: MTD device structure
2695 * @to: offset to write to
2696 * @len: number of bytes to write
2697 * @retlen: pointer to variable to store the number of written bytes
2698 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002700 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002702static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002703 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Brian Norris4a89ff82011-08-30 18:45:45 -07002705 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002706 int ret;
2707
Huang Shijie6a8214a2012-11-19 14:43:30 +08002708 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002709 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002710 ops.len = len;
2711 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08002712 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002713 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002714 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002715 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002716 return ret;
2717}
2718
2719/**
2720 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002721 * @mtd: MTD device structure
2722 * @to: offset to write to
2723 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002724 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002725 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002726 */
2727static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2728 struct mtd_oob_ops *ops)
2729{
Adrian Hunter03736152007-01-31 17:58:29 +02002730 int chipnr, page, status, len;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002731 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Brian Norris289c0522011-07-19 10:06:09 -07002733 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302734 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Boris BREZILLON29f10582016-03-07 10:46:52 +01002736 len = mtd_oobavail(mtd, ops);
Adrian Hunter03736152007-01-31 17:58:29 +02002737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002739 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002740 pr_debug("%s: attempt to write past end of page\n",
2741 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 return -EINVAL;
2743 }
2744
Adrian Hunter03736152007-01-31 17:58:29 +02002745 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002746 pr_debug("%s: attempt to start write outside oob\n",
2747 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002748 return -EINVAL;
2749 }
2750
Jason Liu775adc32011-02-25 13:06:18 +08002751 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002752 if (unlikely(to >= mtd->size ||
2753 ops->ooboffs + ops->ooblen >
2754 ((mtd->size >> chip->page_shift) -
2755 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002756 pr_debug("%s: attempt to write beyond end of device\n",
2757 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002758 return -EINVAL;
2759 }
2760
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002761 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002762 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002764 /* Shift to get page */
2765 page = (int)(to >> chip->page_shift);
2766
2767 /*
2768 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2769 * of my DiskOnChip 2000 test units) will clear the whole data page too
2770 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2771 * it in the doc2000 driver in August 1999. dwmw2.
2772 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002773 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002776 if (nand_check_wp(mtd)) {
2777 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002778 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002779 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002782 if (page == chip->pagebuf)
2783 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002785 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002786
Brian Norris0612b9d2011-08-30 18:45:40 -07002787 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002788 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2789 else
2790 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002791
Huang Shijieb0bb6902012-11-19 14:43:29 +08002792 chip->select_chip(mtd, -1);
2793
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002794 if (status)
2795 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Vitaly Wool70145682006-11-03 18:20:38 +03002797 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002799 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002800}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002802/**
2803 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002804 * @mtd: MTD device structure
2805 * @to: offset to write to
2806 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002807 */
2808static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2809 struct mtd_oob_ops *ops)
2810{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002811 int ret = -ENOTSUPP;
2812
2813 ops->retlen = 0;
2814
2815 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002816 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002817 pr_debug("%s: attempt to write beyond end of device\n",
2818 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002819 return -EINVAL;
2820 }
2821
Huang Shijie6a8214a2012-11-19 14:43:30 +08002822 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002823
Florian Fainellif8ac0412010-09-07 13:23:43 +02002824 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002825 case MTD_OPS_PLACE_OOB:
2826 case MTD_OPS_AUTO_OOB:
2827 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002828 break;
2829
2830 default:
2831 goto out;
2832 }
2833
2834 if (!ops->datbuf)
2835 ret = nand_do_write_oob(mtd, to, ops);
2836 else
2837 ret = nand_do_write_ops(mtd, to, ops);
2838
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002839out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002840 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return ret;
2842}
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844/**
Brian Norris49c50b92014-05-06 16:02:19 -07002845 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002846 * @mtd: MTD device structure
2847 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 *
Brian Norris49c50b92014-05-06 16:02:19 -07002849 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 */
Brian Norris49c50b92014-05-06 16:02:19 -07002851static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Boris BREZILLON862eba52015-12-01 12:03:03 +01002853 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002855 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2856 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07002857
2858 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859}
2860
2861/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002863 * @mtd: MTD device structure
2864 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002866 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002868static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
David Woodhousee0c7d762006-05-13 18:07:53 +01002870 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002874 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002875 * @mtd: MTD device structure
2876 * @instr: erase instruction
2877 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002879 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002881int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2882 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
Adrian Hunter69423d92008-12-10 13:37:21 +00002884 int page, status, pages_per_block, ret, chipnr;
Boris BREZILLON862eba52015-12-01 12:03:03 +01002885 struct nand_chip *chip = mtd_to_nand(mtd);
Adrian Hunter69423d92008-12-10 13:37:21 +00002886 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Brian Norris289c0522011-07-19 10:06:09 -07002888 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2889 __func__, (unsigned long long)instr->addr,
2890 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302892 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002896 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002899 page = (int)(instr->addr >> chip->page_shift);
2900 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002903 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002906 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 /* Check, if it is write protected */
2909 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002910 pr_debug("%s: device is write protected!\n",
2911 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 instr->state = MTD_ERASE_FAILED;
2913 goto erase_exit;
2914 }
2915
2916 /* Loop through the pages */
2917 len = instr->len;
2918
2919 instr->state = MTD_ERASING;
2920
2921 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01002922 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002923 if (nand_block_checkbad(mtd, ((loff_t) page) <<
Archit Taneja9f3e0422016-02-03 14:29:49 +05302924 chip->page_shift, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002925 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2926 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 instr->state = MTD_ERASE_FAILED;
2928 goto erase_exit;
2929 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002930
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002931 /*
2932 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002933 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002934 */
2935 if (page <= chip->pagebuf && chip->pagebuf <
2936 (page + pages_per_block))
2937 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Brian Norris49c50b92014-05-06 16:02:19 -07002939 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002941 /*
2942 * See if operation failed and additional status checks are
2943 * available
2944 */
2945 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2946 status = chip->errstat(mtd, chip, FL_ERASING,
2947 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002950 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002951 pr_debug("%s: failed erase, page 0x%08x\n",
2952 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002954 instr->fail_addr =
2955 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 goto erase_exit;
2957 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03002960 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 page += pages_per_block;
2962
2963 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002964 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002966 chip->select_chip(mtd, -1);
2967 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
2969 }
2970 instr->state = MTD_ERASE_DONE;
2971
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002972erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
2974 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002977 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 nand_release_device(mtd);
2979
David Woodhouse49defc02007-10-06 15:01:59 -04002980 /* Do call back function */
2981 if (!ret)
2982 mtd_erase_callback(instr);
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 /* Return more or less happy */
2985 return ret;
2986}
2987
2988/**
2989 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002990 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002992 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002994static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Brian Norris289c0522011-07-19 10:06:09 -07002996 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
2998 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002999 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01003001 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002}
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003005 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003006 * @mtd: MTD device structure
3007 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003009static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Archit Taneja9f3e0422016-02-03 14:29:49 +05303011 struct nand_chip *chip = mtd_to_nand(mtd);
3012 int chipnr = (int)(offs >> chip->chip_shift);
3013 int ret;
3014
3015 /* Select the NAND device */
3016 nand_get_device(mtd, FL_READING);
3017 chip->select_chip(mtd, chipnr);
3018
3019 ret = nand_block_checkbad(mtd, offs, 0);
3020
3021 chip->select_chip(mtd, -1);
3022 nand_release_device(mtd);
3023
3024 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
3027/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003028 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003029 * @mtd: MTD device structure
3030 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003032static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 int ret;
3035
Florian Fainellif8ac0412010-09-07 13:23:43 +02003036 ret = nand_block_isbad(mtd, ofs);
3037 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003038 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (ret > 0)
3040 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003041 return ret;
3042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Brian Norris5a0edb22013-07-30 17:52:58 -07003044 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045}
3046
3047/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003048 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3049 * @mtd: MTD device structure
3050 * @chip: nand chip info structure
3051 * @addr: feature address.
3052 * @subfeature_param: the subfeature parameters, a four bytes array.
3053 */
3054static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3055 int addr, uint8_t *subfeature_param)
3056{
3057 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003058 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003059
David Mosbergerd914c932013-05-29 15:30:13 +03003060 if (!chip->onfi_version ||
3061 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3062 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003063 return -EINVAL;
3064
3065 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003066 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3067 chip->write_byte(mtd, subfeature_param[i]);
3068
Huang Shijie7db03ec2012-09-13 14:57:52 +08003069 status = chip->waitfunc(mtd, chip);
3070 if (status & NAND_STATUS_FAIL)
3071 return -EIO;
3072 return 0;
3073}
3074
3075/**
3076 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3077 * @mtd: MTD device structure
3078 * @chip: nand chip info structure
3079 * @addr: feature address.
3080 * @subfeature_param: the subfeature parameters, a four bytes array.
3081 */
3082static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3083 int addr, uint8_t *subfeature_param)
3084{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003085 int i;
3086
David Mosbergerd914c932013-05-29 15:30:13 +03003087 if (!chip->onfi_version ||
3088 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3089 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003090 return -EINVAL;
3091
Huang Shijie7db03ec2012-09-13 14:57:52 +08003092 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003093 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3094 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003095 return 0;
3096}
3097
3098/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003099 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003100 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003101 */
3102static int nand_suspend(struct mtd_info *mtd)
3103{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003104 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003105}
3106
3107/**
3108 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003109 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003110 */
3111static void nand_resume(struct mtd_info *mtd)
3112{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003113 struct nand_chip *chip = mtd_to_nand(mtd);
Vitaly Wool962034f2005-09-15 14:58:53 +01003114
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003115 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003116 nand_release_device(mtd);
3117 else
Brian Norrisd0370212011-07-19 10:06:08 -07003118 pr_err("%s called for a chip which is not in suspended state\n",
3119 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003120}
3121
Scott Branden72ea4032014-11-20 11:18:05 -08003122/**
3123 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3124 * prevent further operations
3125 * @mtd: MTD device structure
3126 */
3127static void nand_shutdown(struct mtd_info *mtd)
3128{
Brian Norris9ca641b2015-11-09 16:37:28 -08003129 nand_get_device(mtd, FL_PM_SUSPENDED);
Scott Branden72ea4032014-11-20 11:18:05 -08003130}
3131
Brian Norris8b6e50c2011-05-25 14:59:01 -07003132/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003133static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003134{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003136 if (!chip->chip_delay)
3137 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003140 if (chip->cmdfunc == NULL)
3141 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
3143 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003144 if (chip->waitfunc == NULL)
3145 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003147 if (!chip->select_chip)
3148 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003149
Huang Shijie4204ccc2013-08-16 10:10:07 +08003150 /* set for ONFI nand */
3151 if (!chip->onfi_set_features)
3152 chip->onfi_set_features = nand_onfi_set_features;
3153 if (!chip->onfi_get_features)
3154 chip->onfi_get_features = nand_onfi_get_features;
3155
Brian Norris68e80782013-07-18 01:17:02 -07003156 /* If called twice, pointers that depend on busw may need to be reset */
3157 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003158 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3159 if (!chip->read_word)
3160 chip->read_word = nand_read_word;
3161 if (!chip->block_bad)
3162 chip->block_bad = nand_block_bad;
3163 if (!chip->block_markbad)
3164 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003165 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003166 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003167 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3168 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003169 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003170 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003171 if (!chip->scan_bbt)
3172 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003173
3174 if (!chip->controller) {
3175 chip->controller = &chip->hwcontrol;
3176 spin_lock_init(&chip->controller->lock);
3177 init_waitqueue_head(&chip->controller->wq);
3178 }
3179
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003180}
3181
Brian Norris8b6e50c2011-05-25 14:59:01 -07003182/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003183static void sanitize_string(uint8_t *s, size_t len)
3184{
3185 ssize_t i;
3186
Brian Norris8b6e50c2011-05-25 14:59:01 -07003187 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003188 s[len - 1] = 0;
3189
Brian Norris8b6e50c2011-05-25 14:59:01 -07003190 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003191 for (i = 0; i < len - 1; i++) {
3192 if (s[i] < ' ' || s[i] > 127)
3193 s[i] = '?';
3194 }
3195
Brian Norris8b6e50c2011-05-25 14:59:01 -07003196 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003197 strim(s);
3198}
3199
3200static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3201{
3202 int i;
3203 while (len--) {
3204 crc ^= *p++ << 8;
3205 for (i = 0; i < 8; i++)
3206 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3207 }
3208
3209 return crc;
3210}
3211
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003212/* Parse the Extended Parameter Page. */
3213static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3214 struct nand_chip *chip, struct nand_onfi_params *p)
3215{
3216 struct onfi_ext_param_page *ep;
3217 struct onfi_ext_section *s;
3218 struct onfi_ext_ecc_info *ecc;
3219 uint8_t *cursor;
3220 int ret = -EINVAL;
3221 int len;
3222 int i;
3223
3224 len = le16_to_cpu(p->ext_param_page_length) * 16;
3225 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003226 if (!ep)
3227 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003228
3229 /* Send our own NAND_CMD_PARAM. */
3230 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3231
3232 /* Use the Change Read Column command to skip the ONFI param pages. */
3233 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3234 sizeof(*p) * p->num_of_param_pages , -1);
3235
3236 /* Read out the Extended Parameter Page. */
3237 chip->read_buf(mtd, (uint8_t *)ep, len);
3238 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3239 != le16_to_cpu(ep->crc))) {
3240 pr_debug("fail in the CRC.\n");
3241 goto ext_out;
3242 }
3243
3244 /*
3245 * Check the signature.
3246 * Do not strictly follow the ONFI spec, maybe changed in future.
3247 */
3248 if (strncmp(ep->sig, "EPPS", 4)) {
3249 pr_debug("The signature is invalid.\n");
3250 goto ext_out;
3251 }
3252
3253 /* find the ECC section. */
3254 cursor = (uint8_t *)(ep + 1);
3255 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3256 s = ep->sections + i;
3257 if (s->type == ONFI_SECTION_TYPE_2)
3258 break;
3259 cursor += s->length * 16;
3260 }
3261 if (i == ONFI_EXT_SECTION_MAX) {
3262 pr_debug("We can not find the ECC section.\n");
3263 goto ext_out;
3264 }
3265
3266 /* get the info we want. */
3267 ecc = (struct onfi_ext_ecc_info *)cursor;
3268
Brian Norris4ae7d222013-09-16 18:20:21 -07003269 if (!ecc->codeword_size) {
3270 pr_debug("Invalid codeword size\n");
3271 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003272 }
3273
Brian Norris4ae7d222013-09-16 18:20:21 -07003274 chip->ecc_strength_ds = ecc->ecc_bits;
3275 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003276 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003277
3278ext_out:
3279 kfree(ep);
3280 return ret;
3281}
3282
Brian Norris8429bb32013-12-03 15:51:09 -08003283static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3284{
Boris BREZILLON862eba52015-12-01 12:03:03 +01003285 struct nand_chip *chip = mtd_to_nand(mtd);
Brian Norris8429bb32013-12-03 15:51:09 -08003286 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3287
3288 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3289 feature);
3290}
3291
3292/*
3293 * Configure chip properties from Micron vendor-specific ONFI table
3294 */
3295static void nand_onfi_detect_micron(struct nand_chip *chip,
3296 struct nand_onfi_params *p)
3297{
3298 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3299
3300 if (le16_to_cpu(p->vendor_revision) < 1)
3301 return;
3302
3303 chip->read_retries = micron->read_retry_options;
3304 chip->setup_read_retry = nand_setup_read_retry_micron;
3305}
3306
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003307/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003308 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003309 */
3310static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003311 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003312{
3313 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003314 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003315 int val;
3316
Brian Norris7854d3f2011-06-23 14:12:08 -07003317 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003318 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3319 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3320 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3321 return 0;
3322
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003323 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3324 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003325 for (j = 0; j < sizeof(*p); j++)
3326 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003327 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3328 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003329 break;
3330 }
3331 }
3332
Brian Norrisc7f23a72013-08-13 10:51:55 -07003333 if (i == 3) {
3334 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003335 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003336 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003337
Brian Norris8b6e50c2011-05-25 14:59:01 -07003338 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003339 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003340 if (val & (1 << 5))
3341 chip->onfi_version = 23;
3342 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003343 chip->onfi_version = 22;
3344 else if (val & (1 << 3))
3345 chip->onfi_version = 21;
3346 else if (val & (1 << 2))
3347 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003348 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003349 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003350
3351 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003352 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003353 return 0;
3354 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003355
3356 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3357 sanitize_string(p->model, sizeof(p->model));
3358 if (!mtd->name)
3359 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003360
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003361 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003362
3363 /*
3364 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3365 * (don't ask me who thought of this...). MTD assumes that these
3366 * dimensions will be power-of-2, so just truncate the remaining area.
3367 */
3368 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3369 mtd->erasesize *= mtd->writesize;
3370
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003371 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003372
3373 /* See erasesize comment */
3374 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003375 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003376 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003377
3378 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003379 *busw = NAND_BUSWIDTH_16;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003380 else
3381 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003382
Huang Shijie10c86ba2013-05-17 11:17:26 +08003383 if (p->ecc_bits != 0xff) {
3384 chip->ecc_strength_ds = p->ecc_bits;
3385 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003386 } else if (chip->onfi_version >= 21 &&
3387 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3388
3389 /*
3390 * The nand_flash_detect_ext_param_page() uses the
3391 * Change Read Column command which maybe not supported
3392 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3393 * now. We do not replace user supplied command function.
3394 */
3395 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3396 chip->cmdfunc = nand_command_lp;
3397
3398 /* The Extended Parameter Page is supported since ONFI 2.1. */
3399 if (nand_flash_detect_ext_param_page(mtd, chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003400 pr_warn("Failed to detect ONFI extended param page\n");
3401 } else {
3402 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003403 }
3404
Brian Norris8429bb32013-12-03 15:51:09 -08003405 if (p->jedec_id == NAND_MFR_MICRON)
3406 nand_onfi_detect_micron(chip, p);
3407
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003408 return 1;
3409}
3410
3411/*
Huang Shijie91361812014-02-21 13:39:40 +08003412 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3413 */
3414static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3415 int *busw)
3416{
3417 struct nand_jedec_params *p = &chip->jedec_params;
3418 struct jedec_ecc_info *ecc;
3419 int val;
3420 int i, j;
3421
3422 /* Try JEDEC for unknown chip or LP */
3423 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3424 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3425 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3426 chip->read_byte(mtd) != 'C')
3427 return 0;
3428
3429 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3430 for (i = 0; i < 3; i++) {
3431 for (j = 0; j < sizeof(*p); j++)
3432 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3433
3434 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3435 le16_to_cpu(p->crc))
3436 break;
3437 }
3438
3439 if (i == 3) {
3440 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3441 return 0;
3442 }
3443
3444 /* Check version */
3445 val = le16_to_cpu(p->revision);
3446 if (val & (1 << 2))
3447 chip->jedec_version = 10;
3448 else if (val & (1 << 1))
3449 chip->jedec_version = 1; /* vendor specific version */
3450
3451 if (!chip->jedec_version) {
3452 pr_info("unsupported JEDEC version: %d\n", val);
3453 return 0;
3454 }
3455
3456 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3457 sanitize_string(p->model, sizeof(p->model));
3458 if (!mtd->name)
3459 mtd->name = p->model;
3460
3461 mtd->writesize = le32_to_cpu(p->byte_per_page);
3462
3463 /* Please reference to the comment for nand_flash_detect_onfi. */
3464 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3465 mtd->erasesize *= mtd->writesize;
3466
3467 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3468
3469 /* Please reference to the comment for nand_flash_detect_onfi. */
3470 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3471 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3472 chip->bits_per_cell = p->bits_per_cell;
3473
3474 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3475 *busw = NAND_BUSWIDTH_16;
3476 else
3477 *busw = 0;
3478
3479 /* ECC info */
3480 ecc = &p->ecc_info[0];
3481
3482 if (ecc->codeword_size >= 9) {
3483 chip->ecc_strength_ds = ecc->ecc_bits;
3484 chip->ecc_step_ds = 1 << ecc->codeword_size;
3485 } else {
3486 pr_warn("Invalid codeword size\n");
3487 }
3488
3489 return 1;
3490}
3491
3492/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003493 * nand_id_has_period - Check if an ID string has a given wraparound period
3494 * @id_data: the ID string
3495 * @arrlen: the length of the @id_data array
3496 * @period: the period of repitition
3497 *
3498 * Check if an ID string is repeated within a given sequence of bytes at
3499 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003500 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003501 * if the repetition has a period of @period; otherwise, returns zero.
3502 */
3503static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3504{
3505 int i, j;
3506 for (i = 0; i < period; i++)
3507 for (j = i + period; j < arrlen; j += period)
3508 if (id_data[i] != id_data[j])
3509 return 0;
3510 return 1;
3511}
3512
3513/*
3514 * nand_id_len - Get the length of an ID string returned by CMD_READID
3515 * @id_data: the ID string
3516 * @arrlen: the length of the @id_data array
3517
3518 * Returns the length of the ID string, according to known wraparound/trailing
3519 * zero patterns. If no pattern exists, returns the length of the array.
3520 */
3521static int nand_id_len(u8 *id_data, int arrlen)
3522{
3523 int last_nonzero, period;
3524
3525 /* Find last non-zero byte */
3526 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3527 if (id_data[last_nonzero])
3528 break;
3529
3530 /* All zeros */
3531 if (last_nonzero < 0)
3532 return 0;
3533
3534 /* Calculate wraparound period */
3535 for (period = 1; period < arrlen; period++)
3536 if (nand_id_has_period(id_data, arrlen, period))
3537 break;
3538
3539 /* There's a repeated pattern */
3540 if (period < arrlen)
3541 return period;
3542
3543 /* There are trailing zeros */
3544 if (last_nonzero < arrlen - 1)
3545 return last_nonzero + 1;
3546
3547 /* No pattern detected */
3548 return arrlen;
3549}
3550
Huang Shijie7db906b2013-09-25 14:58:11 +08003551/* Extract the bits of per cell from the 3rd byte of the extended ID */
3552static int nand_get_bits_per_cell(u8 cellinfo)
3553{
3554 int bits;
3555
3556 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3557 bits >>= NAND_CI_CELLTYPE_SHIFT;
3558 return bits + 1;
3559}
3560
Brian Norrise3b88bd2012-09-24 20:40:52 -07003561/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003562 * Many new NAND share similar device ID codes, which represent the size of the
3563 * chip. The rest of the parameters must be decoded according to generic or
3564 * manufacturer-specific "extended ID" decoding patterns.
3565 */
3566static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3567 u8 id_data[8], int *busw)
3568{
Brian Norrise3b88bd2012-09-24 20:40:52 -07003569 int extid, id_len;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003570 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003571 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003572 /* The 4th id byte is the important one */
3573 extid = id_data[3];
3574
Brian Norrise3b88bd2012-09-24 20:40:52 -07003575 id_len = nand_id_len(id_data, 8);
3576
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003577 /*
3578 * Field definitions are in the following datasheets:
3579 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norrisaf451af2012-10-09 23:26:06 -07003580 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
Brian Norris73ca3922012-09-24 20:40:54 -07003581 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003582 *
Brian Norrisaf451af2012-10-09 23:26:06 -07003583 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3584 * ID to decide what to do.
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003585 */
Brian Norrisaf451af2012-10-09 23:26:06 -07003586 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003587 !nand_is_slc(chip) && id_data[5] != 0x00) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003588 /* Calc pagesize */
3589 mtd->writesize = 2048 << (extid & 0x03);
3590 extid >>= 2;
3591 /* Calc oobsize */
Brian Norrise2d3a352012-09-24 20:40:55 -07003592 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003593 case 1:
3594 mtd->oobsize = 128;
3595 break;
3596 case 2:
3597 mtd->oobsize = 218;
3598 break;
3599 case 3:
3600 mtd->oobsize = 400;
3601 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003602 case 4:
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003603 mtd->oobsize = 436;
3604 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003605 case 5:
3606 mtd->oobsize = 512;
3607 break;
3608 case 6:
Brian Norrise2d3a352012-09-24 20:40:55 -07003609 mtd->oobsize = 640;
3610 break;
Huang Shijie94d04e82013-12-25 17:18:55 +08003611 case 7:
3612 default: /* Other cases are "reserved" (unknown) */
3613 mtd->oobsize = 1024;
3614 break;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003615 }
3616 extid >>= 2;
3617 /* Calc blocksize */
3618 mtd->erasesize = (128 * 1024) <<
3619 (((extid >> 1) & 0x04) | (extid & 0x03));
3620 *busw = 0;
Brian Norris73ca3922012-09-24 20:40:54 -07003621 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003622 !nand_is_slc(chip)) {
Brian Norris73ca3922012-09-24 20:40:54 -07003623 unsigned int tmp;
3624
3625 /* Calc pagesize */
3626 mtd->writesize = 2048 << (extid & 0x03);
3627 extid >>= 2;
3628 /* Calc oobsize */
3629 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3630 case 0:
3631 mtd->oobsize = 128;
3632 break;
3633 case 1:
3634 mtd->oobsize = 224;
3635 break;
3636 case 2:
3637 mtd->oobsize = 448;
3638 break;
3639 case 3:
3640 mtd->oobsize = 64;
3641 break;
3642 case 4:
3643 mtd->oobsize = 32;
3644 break;
3645 case 5:
3646 mtd->oobsize = 16;
3647 break;
3648 default:
3649 mtd->oobsize = 640;
3650 break;
3651 }
3652 extid >>= 2;
3653 /* Calc blocksize */
3654 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3655 if (tmp < 0x03)
3656 mtd->erasesize = (128 * 1024) << tmp;
3657 else if (tmp == 0x03)
3658 mtd->erasesize = 768 * 1024;
3659 else
3660 mtd->erasesize = (64 * 1024) << tmp;
3661 *busw = 0;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003662 } else {
3663 /* Calc pagesize */
3664 mtd->writesize = 1024 << (extid & 0x03);
3665 extid >>= 2;
3666 /* Calc oobsize */
3667 mtd->oobsize = (8 << (extid & 0x01)) *
3668 (mtd->writesize >> 9);
3669 extid >>= 2;
3670 /* Calc blocksize. Blocksize is multiples of 64KiB */
3671 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3672 extid >>= 2;
3673 /* Get buswidth information */
3674 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Brian Norris60c67382013-06-25 13:17:59 -07003675
3676 /*
3677 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3678 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3679 * follows:
3680 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3681 * 110b -> 24nm
3682 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3683 */
3684 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003685 nand_is_slc(chip) &&
Brian Norris60c67382013-06-25 13:17:59 -07003686 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3687 !(id_data[4] & 0x80) /* !BENAND */) {
3688 mtd->oobsize = 32 * mtd->writesize >> 9;
3689 }
3690
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003691 }
3692}
3693
3694/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003695 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3696 * decodes a matching ID table entry and assigns the MTD size parameters for
3697 * the chip.
3698 */
3699static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
3700 struct nand_flash_dev *type, u8 id_data[8],
3701 int *busw)
3702{
3703 int maf_id = id_data[0];
3704
3705 mtd->erasesize = type->erasesize;
3706 mtd->writesize = type->pagesize;
3707 mtd->oobsize = mtd->writesize / 32;
3708 *busw = type->options & NAND_BUSWIDTH_16;
3709
Huang Shijie1c195e92013-09-25 14:58:12 +08003710 /* All legacy ID NAND are small-page, SLC */
3711 chip->bits_per_cell = 1;
3712
Brian Norrisf23a4812012-09-24 20:40:51 -07003713 /*
3714 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3715 * some Spansion chips have erasesize that conflicts with size
3716 * listed in nand_ids table.
3717 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3718 */
3719 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3720 && id_data[6] == 0x00 && id_data[7] == 0x00
3721 && mtd->writesize == 512) {
3722 mtd->erasesize = 128 * 1024;
3723 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3724 }
3725}
3726
3727/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003728 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3729 * heuristic patterns using various detected parameters (e.g., manufacturer,
3730 * page size, cell-type information).
3731 */
3732static void nand_decode_bbm_options(struct mtd_info *mtd,
3733 struct nand_chip *chip, u8 id_data[8])
3734{
3735 int maf_id = id_data[0];
3736
3737 /* Set the bad block position */
3738 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3739 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3740 else
3741 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3742
3743 /*
3744 * Bad block marker is stored in the last page of each block on Samsung
3745 * and Hynix MLC devices; stored in first two pages of each block on
3746 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3747 * AMD/Spansion, and Macronix. All others scan only the first page.
3748 */
Huang Shijie1d0ed692013-09-25 14:58:10 +08003749 if (!nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003750 (maf_id == NAND_MFR_SAMSUNG ||
3751 maf_id == NAND_MFR_HYNIX))
3752 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Huang Shijie1d0ed692013-09-25 14:58:10 +08003753 else if ((nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003754 (maf_id == NAND_MFR_SAMSUNG ||
3755 maf_id == NAND_MFR_HYNIX ||
3756 maf_id == NAND_MFR_TOSHIBA ||
3757 maf_id == NAND_MFR_AMD ||
3758 maf_id == NAND_MFR_MACRONIX)) ||
3759 (mtd->writesize == 2048 &&
3760 maf_id == NAND_MFR_MICRON))
3761 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3762}
3763
Huang Shijieec6e87e2013-03-15 11:01:00 +08003764static inline bool is_full_id_nand(struct nand_flash_dev *type)
3765{
3766 return type->id_len;
3767}
3768
3769static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3770 struct nand_flash_dev *type, u8 *id_data, int *busw)
3771{
3772 if (!strncmp(type->id, id_data, type->id_len)) {
3773 mtd->writesize = type->pagesize;
3774 mtd->erasesize = type->erasesize;
3775 mtd->oobsize = type->oobsize;
3776
Huang Shijie7db906b2013-09-25 14:58:11 +08003777 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003778 chip->chipsize = (uint64_t)type->chipsize << 20;
3779 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003780 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3781 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003782 chip->onfi_timing_mode_default =
3783 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003784
3785 *busw = type->options & NAND_BUSWIDTH_16;
3786
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003787 if (!mtd->name)
3788 mtd->name = type->name;
3789
Huang Shijieec6e87e2013-03-15 11:01:00 +08003790 return true;
3791 }
3792 return false;
3793}
3794
Brian Norris7e74c2d2012-09-24 20:40:49 -07003795/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003796 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003797 */
3798static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003799 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003800 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00003801 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003802{
Cai Zhiyongbb770822013-12-25 20:11:15 +08003803 int busw;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003804 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07003805 u8 id_data[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
3807 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003808 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Karl Beldanef89a882008-09-15 14:37:29 +02003810 /*
3811 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003812 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003813 */
3814 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003817 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003820 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003821 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Brian Norris8b6e50c2011-05-25 14:59:01 -07003823 /*
3824 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003825 * interface concerns can cause random data which looks like a
3826 * possibly credible NAND flash to appear. If the two results do
3827 * not match, ignore the device completely.
3828 */
3829
3830 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3831
Brian Norris4aef9b72012-09-24 20:40:48 -07003832 /* Read entire ID string */
3833 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003834 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003835
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003836 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003837 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003838 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01003839 return ERR_PTR(-ENODEV);
3840 }
3841
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003842 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003843 type = nand_flash_ids;
3844
Huang Shijieec6e87e2013-03-15 11:01:00 +08003845 for (; type->name != NULL; type++) {
3846 if (is_full_id_nand(type)) {
3847 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3848 goto ident_done;
3849 } else if (*dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07003850 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003851 }
3852 }
David Woodhouse5e81e882010-02-26 18:32:56 +00003853
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003854 chip->onfi_version = 0;
3855 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09003856 /* Check if the chip is ONFI compliant */
Brian Norris47450b32012-09-24 20:40:47 -07003857 if (nand_flash_detect_onfi(mtd, chip, &busw))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003858 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08003859
3860 /* Check if the chip is JEDEC compliant */
3861 if (nand_flash_detect_jedec(mtd, chip, &busw))
3862 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003863 }
3864
David Woodhouse5e81e882010-02-26 18:32:56 +00003865 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003866 return ERR_PTR(-ENODEV);
3867
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003868 if (!mtd->name)
3869 mtd->name = type->name;
3870
Adrian Hunter69423d92008-12-10 13:37:21 +00003871 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003872
Boris BREZILLONa7f5ba42015-10-01 16:58:27 +02003873 if (!type->pagesize) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003874 /* Decode parameters from extended ID */
3875 nand_decode_ext_id(mtd, chip, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003876 } else {
Brian Norrisf23a4812012-09-24 20:40:51 -07003877 nand_decode_id(mtd, chip, type, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003878 }
Brian Norrisbf7a01b2012-07-13 09:28:24 -07003879 /* Get chip options */
3880 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003881
Brian Norris8b6e50c2011-05-25 14:59:01 -07003882 /*
3883 * Check if chip is not a Samsung device. Do not clear the
3884 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003885 */
3886 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3887 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3888ident_done:
3889
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003890 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003891 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003892 if (nand_manuf_ids[maf_idx].id == *maf_id)
3893 break;
3894 }
3895
Matthieu CASTET64b37b22012-11-06 11:51:44 +01003896 if (chip->options & NAND_BUSWIDTH_AUTO) {
3897 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3898 chip->options |= busw;
3899 nand_set_defaults(chip, busw);
3900 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3901 /*
3902 * Check, if buswidth is correct. Hardware drivers should set
3903 * chip correct!
3904 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03003905 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3906 *maf_id, *dev_id);
3907 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3908 pr_warn("bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003909 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3910 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003911 return ERR_PTR(-EINVAL);
3912 }
3913
Brian Norris7e74c2d2012-09-24 20:40:49 -07003914 nand_decode_bbm_options(mtd, chip, id_data);
3915
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003916 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003917 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003918 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003919 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003920
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003921 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003922 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003923 if (chip->chipsize & 0xffffffff)
3924 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003925 else {
3926 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3927 chip->chip_shift += 32 - 1;
3928 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003929
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003930 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07003931 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003932
Brian Norris8b6e50c2011-05-25 14:59:01 -07003933 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003934 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3935 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003936
Ezequiel Garcia20171642013-11-25 08:30:31 -03003937 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3938 *maf_id, *dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08003939
3940 if (chip->onfi_version)
3941 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3942 chip->onfi_params.model);
3943 else if (chip->jedec_version)
3944 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3945 chip->jedec_params.model);
3946 else
3947 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3948 type->name);
3949
Rafał Miłecki3755a992014-10-21 00:01:04 +02003950 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08003951 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02003952 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003953 return type;
3954}
3955
Boris BREZILLON7194a292015-12-10 09:00:37 +01003956static int nand_dt_init(struct nand_chip *chip)
Brian Norris5844fee2015-01-23 00:22:27 -08003957{
Boris BREZILLON7194a292015-12-10 09:00:37 +01003958 struct device_node *dn = nand_get_flash_node(chip);
Rafał Miłecki79082452016-03-23 11:19:02 +01003959 int ecc_mode, ecc_algo, ecc_strength, ecc_step;
Brian Norris5844fee2015-01-23 00:22:27 -08003960
Boris BREZILLON7194a292015-12-10 09:00:37 +01003961 if (!dn)
3962 return 0;
3963
Brian Norris5844fee2015-01-23 00:22:27 -08003964 if (of_get_nand_bus_width(dn) == 16)
3965 chip->options |= NAND_BUSWIDTH_16;
3966
3967 if (of_get_nand_on_flash_bbt(dn))
3968 chip->bbt_options |= NAND_BBT_USE_FLASH;
3969
3970 ecc_mode = of_get_nand_ecc_mode(dn);
Rafał Miłecki79082452016-03-23 11:19:02 +01003971 ecc_algo = of_get_nand_ecc_algo(dn);
Brian Norris5844fee2015-01-23 00:22:27 -08003972 ecc_strength = of_get_nand_ecc_strength(dn);
3973 ecc_step = of_get_nand_ecc_step_size(dn);
3974
3975 if ((ecc_step >= 0 && !(ecc_strength >= 0)) ||
3976 (!(ecc_step >= 0) && ecc_strength >= 0)) {
3977 pr_err("must set both strength and step size in DT\n");
3978 return -EINVAL;
3979 }
3980
3981 if (ecc_mode >= 0)
3982 chip->ecc.mode = ecc_mode;
3983
Rafał Miłecki79082452016-03-23 11:19:02 +01003984 if (ecc_algo >= 0)
3985 chip->ecc.algo = ecc_algo;
3986
Brian Norris5844fee2015-01-23 00:22:27 -08003987 if (ecc_strength >= 0)
3988 chip->ecc.strength = ecc_strength;
3989
3990 if (ecc_step > 0)
3991 chip->ecc.size = ecc_step;
3992
3993 return 0;
3994}
3995
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003996/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003997 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003998 * @mtd: MTD device structure
3999 * @maxchips: number of chips to scan for
4000 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004001 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004002 * This is the first phase of the normal nand_scan() function. It reads the
4003 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004004 *
David Woodhouse3b85c322006-09-25 17:06:53 +01004005 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004006 */
David Woodhouse5e81e882010-02-26 18:32:56 +00004007int nand_scan_ident(struct mtd_info *mtd, int maxchips,
4008 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004009{
Cai Zhiyongbb770822013-12-25 20:11:15 +08004010 int i, nand_maf_id, nand_dev_id;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004011 struct nand_chip *chip = mtd_to_nand(mtd);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004012 struct nand_flash_dev *type;
Brian Norris5844fee2015-01-23 00:22:27 -08004013 int ret;
4014
Boris BREZILLON7194a292015-12-10 09:00:37 +01004015 ret = nand_dt_init(chip);
4016 if (ret)
4017 return ret;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004018
Brian Norrisf7a8e382016-01-05 10:39:45 -08004019 if (!mtd->name && mtd->dev.parent)
4020 mtd->name = dev_name(mtd->dev.parent);
4021
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004022 /* Set the default functions */
Cai Zhiyongbb770822013-12-25 20:11:15 +08004023 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004024
4025 /* Read the flash type */
Cai Zhiyongbb770822013-12-25 20:11:15 +08004026 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
4027 &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004028
4029 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00004030 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004031 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004032 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004033 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 }
4035
Huang Shijie07300162012-11-09 16:23:45 +08004036 chip->select_chip(mtd, -1);
4037
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004038 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004039 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004040 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02004041 /* See comment in nand_get_flash_type for reset */
4042 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004044 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004046 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004047 nand_dev_id != chip->read_byte(mtd)) {
4048 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 break;
Huang Shijie07300162012-11-09 16:23:45 +08004050 }
4051 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 }
4053 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004054 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004057 chip->numchips = i;
4058 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
David Woodhouse3b85c322006-09-25 17:06:53 +01004060 return 0;
4061}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004062EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004063
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004064/*
4065 * Check if the chip configuration meet the datasheet requirements.
4066
4067 * If our configuration corrects A bits per B bytes and the minimum
4068 * required correction level is X bits per Y bytes, then we must ensure
4069 * both of the following are true:
4070 *
4071 * (1) A / B >= X / Y
4072 * (2) A >= X
4073 *
4074 * Requirement (1) ensures we can correct for the required bitflip density.
4075 * Requirement (2) ensures we can correct even when all bitflips are clumped
4076 * in the same sector.
4077 */
4078static bool nand_ecc_strength_good(struct mtd_info *mtd)
4079{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004080 struct nand_chip *chip = mtd_to_nand(mtd);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004081 struct nand_ecc_ctrl *ecc = &chip->ecc;
4082 int corr, ds_corr;
4083
4084 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4085 /* Not enough information */
4086 return true;
4087
4088 /*
4089 * We get the number of corrected bits per page to compare
4090 * the correction density.
4091 */
4092 corr = (mtd->writesize * ecc->strength) / ecc->size;
4093 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4094
4095 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4096}
David Woodhouse3b85c322006-09-25 17:06:53 +01004097
4098/**
4099 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004100 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004101 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004102 * This is the second phase of the normal nand_scan() function. It fills out
4103 * all the uninitialized function pointers with the defaults and scans for a
4104 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004105 */
4106int nand_scan_tail(struct mtd_info *mtd)
4107{
4108 int i;
Boris BREZILLON862eba52015-12-01 12:03:03 +01004109 struct nand_chip *chip = mtd_to_nand(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004110 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08004111 struct nand_buffers *nbuf;
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004112 int ret;
David Woodhouse3b85c322006-09-25 17:06:53 +01004113
Brian Norrise2414f42012-02-06 13:44:00 -08004114 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004115 if (WARN_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4116 !(chip->bbt_options & NAND_BBT_USE_FLASH)))
4117 return -EINVAL;
Brian Norrise2414f42012-02-06 13:44:00 -08004118
Huang Shijief02ea4e2014-01-13 14:27:12 +08004119 if (!(chip->options & NAND_OWN_BUFFERS)) {
4120 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4121 + mtd->oobsize * 3, GFP_KERNEL);
4122 if (!nbuf)
4123 return -ENOMEM;
4124 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4125 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4126 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4127
4128 chip->buffers = nbuf;
4129 } else {
4130 if (!chip->buffers)
4131 return -ENOMEM;
4132 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004133
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004134 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004135 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004136
4137 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004138 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004139 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004140 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004141 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 case 8:
Huang Shijie97de79e02013-10-18 14:20:53 +08004143 ecc->layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 break;
4145 case 16:
Huang Shijie97de79e02013-10-18 14:20:53 +08004146 ecc->layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 break;
4148 case 64:
Huang Shijie97de79e02013-10-18 14:20:53 +08004149 ecc->layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004151 case 128:
Huang Shijie97de79e02013-10-18 14:20:53 +08004152 ecc->layout = &nand_oob_128;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004153 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 default:
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004155 WARN(1, "No oob scheme defined for oobsize %d\n",
4156 mtd->oobsize);
4157 ret = -EINVAL;
4158 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 }
4160 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004161
David Woodhouse956e9442006-09-25 17:12:39 +01004162 if (!chip->write_page)
4163 chip->write_page = nand_write_page;
4164
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004165 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004166 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004167 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01004168 */
David Woodhouse956e9442006-09-25 17:12:39 +01004169
Huang Shijie97de79e02013-10-18 14:20:53 +08004170 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004171 case NAND_ECC_HW_OOB_FIRST:
4172 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08004173 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004174 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4175 ret = -EINVAL;
4176 goto err_free;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004177 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004178 if (!ecc->read_page)
4179 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004180
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004181 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07004182 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004183 if (!ecc->read_page)
4184 ecc->read_page = nand_read_page_hwecc;
4185 if (!ecc->write_page)
4186 ecc->write_page = nand_write_page_hwecc;
4187 if (!ecc->read_page_raw)
4188 ecc->read_page_raw = nand_read_page_raw;
4189 if (!ecc->write_page_raw)
4190 ecc->write_page_raw = nand_write_page_raw;
4191 if (!ecc->read_oob)
4192 ecc->read_oob = nand_read_oob_std;
4193 if (!ecc->write_oob)
4194 ecc->write_oob = nand_write_oob_std;
4195 if (!ecc->read_subpage)
4196 ecc->read_subpage = nand_read_subpage;
Helmut Schaa44991b32014-04-09 11:13:24 +02004197 if (!ecc->write_subpage && ecc->hwctl && ecc->calculate)
Huang Shijie97de79e02013-10-18 14:20:53 +08004198 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004199
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004200 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08004201 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4202 (!ecc->read_page ||
4203 ecc->read_page == nand_read_page_hwecc ||
4204 !ecc->write_page ||
4205 ecc->write_page == nand_write_page_hwecc)) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004206 WARN(1, "No ECC functions supplied; hardware ECC not possible\n");
4207 ret = -EINVAL;
4208 goto err_free;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004209 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07004210 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004211 if (!ecc->read_page)
4212 ecc->read_page = nand_read_page_syndrome;
4213 if (!ecc->write_page)
4214 ecc->write_page = nand_write_page_syndrome;
4215 if (!ecc->read_page_raw)
4216 ecc->read_page_raw = nand_read_page_raw_syndrome;
4217 if (!ecc->write_page_raw)
4218 ecc->write_page_raw = nand_write_page_raw_syndrome;
4219 if (!ecc->read_oob)
4220 ecc->read_oob = nand_read_oob_syndrome;
4221 if (!ecc->write_oob)
4222 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004223
Huang Shijie97de79e02013-10-18 14:20:53 +08004224 if (mtd->writesize >= ecc->size) {
4225 if (!ecc->strength) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004226 WARN(1, "Driver must set ecc.strength when using hardware ECC\n");
4227 ret = -EINVAL;
4228 goto err_free;
Mike Dunne2788c92012-04-25 12:06:10 -07004229 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004230 break;
Mike Dunne2788c92012-04-25 12:06:10 -07004231 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004232 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4233 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08004234 ecc->mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004236 case NAND_ECC_SOFT:
Huang Shijie97de79e02013-10-18 14:20:53 +08004237 ecc->calculate = nand_calculate_ecc;
4238 ecc->correct = nand_correct_data;
4239 ecc->read_page = nand_read_page_swecc;
4240 ecc->read_subpage = nand_read_subpage;
4241 ecc->write_page = nand_write_page_swecc;
4242 ecc->read_page_raw = nand_read_page_raw;
4243 ecc->write_page_raw = nand_write_page_raw;
4244 ecc->read_oob = nand_read_oob_std;
4245 ecc->write_oob = nand_write_oob_std;
4246 if (!ecc->size)
4247 ecc->size = 256;
4248 ecc->bytes = 3;
4249 ecc->strength = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004251
Ivan Djelic193bd402011-03-11 11:05:33 +01004252 case NAND_ECC_SOFT_BCH:
4253 if (!mtd_nand_has_bch()) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004254 WARN(1, "CONFIG_MTD_NAND_ECC_BCH not enabled\n");
4255 ret = -EINVAL;
4256 goto err_free;
Ivan Djelic193bd402011-03-11 11:05:33 +01004257 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004258 ecc->calculate = nand_bch_calculate_ecc;
4259 ecc->correct = nand_bch_correct_data;
4260 ecc->read_page = nand_read_page_swecc;
4261 ecc->read_subpage = nand_read_subpage;
4262 ecc->write_page = nand_write_page_swecc;
4263 ecc->read_page_raw = nand_read_page_raw;
4264 ecc->write_page_raw = nand_write_page_raw;
4265 ecc->read_oob = nand_read_oob_std;
4266 ecc->write_oob = nand_write_oob_std;
Ivan Djelic193bd402011-03-11 11:05:33 +01004267 /*
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004268 * Board driver should supply ecc.size and ecc.strength values
4269 * to select how many bits are correctable. Otherwise, default
4270 * to 4 bits for large page devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01004271 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004272 if (!ecc->size && (mtd->oobsize >= 64)) {
4273 ecc->size = 512;
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004274 ecc->strength = 4;
Ivan Djelic193bd402011-03-11 11:05:33 +01004275 }
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004276
4277 /* See nand_bch_init() for details. */
Boris BREZILLONa8c65d52016-03-07 10:46:54 +01004278 ecc->bytes = 0;
4279 ecc->priv = nand_bch_init(mtd);
Huang Shijie97de79e02013-10-18 14:20:53 +08004280 if (!ecc->priv) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004281 WARN(1, "BCH ECC initialization failed!\n");
4282 ret = -EINVAL;
4283 goto err_free;
Ivan Djelic193bd402011-03-11 11:05:33 +01004284 }
4285 break;
4286
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004287 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004288 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004289 ecc->read_page = nand_read_page_raw;
4290 ecc->write_page = nand_write_page_raw;
4291 ecc->read_oob = nand_read_oob_std;
4292 ecc->read_page_raw = nand_read_page_raw;
4293 ecc->write_page_raw = nand_write_page_raw;
4294 ecc->write_oob = nand_write_oob_std;
4295 ecc->size = mtd->writesize;
4296 ecc->bytes = 0;
4297 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004299
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 default:
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004301 WARN(1, "Invalid NAND_ECC_MODE %d\n", ecc->mode);
4302 ret = -EINVAL;
4303 goto err_free;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Brian Norris9ce244b2011-08-30 18:45:37 -07004306 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004307 if (!ecc->read_oob_raw)
4308 ecc->read_oob_raw = ecc->read_oob;
4309 if (!ecc->write_oob_raw)
4310 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004311
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004312 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004313 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07004314 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004315 */
Boris BREZILLONf5b8aa72016-03-07 10:46:51 +01004316 mtd->oobavail = 0;
4317 if (ecc->layout) {
4318 for (i = 0; ecc->layout->oobfree[i].length; i++)
4319 mtd->oobavail += ecc->layout->oobfree[i].length;
4320 }
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004321
Thomas Petazzoni54c39e92014-07-02 15:16:32 +02004322 /* ECC sanity check: warn if it's too weak */
4323 if (!nand_ecc_strength_good(mtd))
4324 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4325 mtd->name);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004326
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004327 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004328 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004329 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004330 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004331 ecc->steps = mtd->writesize / ecc->size;
4332 if (ecc->steps * ecc->size != mtd->writesize) {
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004333 WARN(1, "Invalid ECC parameters\n");
4334 ret = -EINVAL;
4335 goto err_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004337 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004338
Brian Norris8b6e50c2011-05-25 14:59:01 -07004339 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004340 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004341 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004342 case 2:
4343 mtd->subpage_sft = 1;
4344 break;
4345 case 4:
4346 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004347 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004348 mtd->subpage_sft = 2;
4349 break;
4350 }
4351 }
4352 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4353
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004354 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004355 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004358 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004360 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304361 switch (ecc->mode) {
4362 case NAND_ECC_SOFT:
4363 case NAND_ECC_SOFT_BCH:
4364 if (chip->page_shift > 9)
4365 chip->options |= NAND_SUBPAGE_READ;
4366 break;
4367
4368 default:
4369 break;
4370 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004373 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004374 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4375 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004376 mtd->_erase = nand_erase;
4377 mtd->_point = NULL;
4378 mtd->_unpoint = NULL;
4379 mtd->_read = nand_read;
4380 mtd->_write = nand_write;
4381 mtd->_panic_write = panic_nand_write;
4382 mtd->_read_oob = nand_read_oob;
4383 mtd->_write_oob = nand_write_oob;
4384 mtd->_sync = nand_sync;
4385 mtd->_lock = NULL;
4386 mtd->_unlock = NULL;
4387 mtd->_suspend = nand_suspend;
4388 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08004389 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004390 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004391 mtd->_block_isbad = nand_block_isbad;
4392 mtd->_block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004393 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Mike Dunn6a918ba2012-03-11 14:21:11 -07004395 /* propagate ecc info to mtd_info */
Huang Shijie97de79e02013-10-18 14:20:53 +08004396 mtd->ecclayout = ecc->layout;
4397 mtd->ecc_strength = ecc->strength;
4398 mtd->ecc_step_size = ecc->size;
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004399 /*
4400 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4401 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4402 * properly set.
4403 */
4404 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08004405 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004407 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004408 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
4411 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004412 return chip->scan_bbt(mtd);
Ezequiel GarcĂ­a11eaf6d2016-04-01 18:29:24 -03004413err_free:
4414 if (!(chip->options & NAND_OWN_BUFFERS))
4415 kfree(chip->buffers);
4416 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004418EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Brian Norris8b6e50c2011-05-25 14:59:01 -07004420/*
4421 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004422 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004423 * to call us from in-kernel code if the core NAND support is modular.
4424 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004425#ifdef MODULE
4426#define caller_is_module() (1)
4427#else
4428#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004429 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004430#endif
4431
4432/**
4433 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004434 * @mtd: MTD device structure
4435 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004436 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004437 * This fills out all the uninitialized function pointers with the defaults.
4438 * The flash ID is read and the mtd/chip structures are filled with the
4439 * appropriate values. The mtd->owner field must be set to the module of the
4440 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01004441 */
4442int nand_scan(struct mtd_info *mtd, int maxchips)
4443{
4444 int ret;
4445
4446 /* Many callers got this wrong, so check for it for a while... */
4447 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07004448 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01004449 BUG();
4450 }
4451
David Woodhouse5e81e882010-02-26 18:32:56 +00004452 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004453 if (!ret)
4454 ret = nand_scan_tail(mtd);
4455 return ret;
4456}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004457EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004460 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004461 * @mtd: MTD device structure
4462 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004463void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464{
Boris BREZILLON862eba52015-12-01 12:03:03 +01004465 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
Ivan Djelic193bd402011-03-11 11:05:33 +01004467 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
4468 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4469
Jamie Iles5ffcaf32011-05-23 10:22:46 +01004470 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Jesper Juhlfa671642005-11-07 01:01:27 -08004472 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004473 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004474 if (!(chip->options & NAND_OWN_BUFFERS))
4475 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07004476
4477 /* Free bad block descriptor memory */
4478 if (chip->badblock_pattern && chip->badblock_pattern->options
4479 & NAND_BBT_DYNAMICSTRUCT)
4480 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481}
David Woodhousee0c7d762006-05-13 18:07:53 +01004482EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004483
David Woodhousee0c7d762006-05-13 18:07:53 +01004484MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004485MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4486MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004487MODULE_DESCRIPTION("Generic NAND flash driver code");