blob: d87c7d0b46752ebba6ae7ba2ed3eff15ea647a14 [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>
Richard Purdie8fe833c2006-03-31 02:31:14 -080046#include <linux/leds.h>
Florian Fainelli7351d3a2010-09-07 13:23:45 +020047#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/mtd/partitions.h>
Brian Norris5844fee2015-01-23 00:22:27 -080049#include <linux/of_mtd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* Define default oob placement schemes for large and small page devices */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020052static struct nand_ecclayout nand_oob_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .eccbytes = 3,
54 .eccpos = {0, 1, 2},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020055 .oobfree = {
56 {.offset = 3,
57 .length = 2},
58 {.offset = 6,
Florian Fainellif8ac0412010-09-07 13:23:43 +020059 .length = 2} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020062static struct nand_ecclayout nand_oob_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .eccbytes = 6,
64 .eccpos = {0, 1, 2, 3, 6, 7},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020065 .oobfree = {
66 {.offset = 8,
Florian Fainellif8ac0412010-09-07 13:23:43 +020067 . length = 8} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020070static struct nand_ecclayout nand_oob_64 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 .eccbytes = 24,
72 .eccpos = {
David Woodhousee0c7d762006-05-13 18:07:53 +010073 40, 41, 42, 43, 44, 45, 46, 47,
74 48, 49, 50, 51, 52, 53, 54, 55,
75 56, 57, 58, 59, 60, 61, 62, 63},
Thomas Gleixner5bd34c02006-05-27 22:16:10 +020076 .oobfree = {
77 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020078 .length = 38} }
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
Thomas Gleixner81ec5362007-12-12 17:27:03 +010081static struct nand_ecclayout nand_oob_128 = {
82 .eccbytes = 48,
83 .eccpos = {
84 80, 81, 82, 83, 84, 85, 86, 87,
85 88, 89, 90, 91, 92, 93, 94, 95,
86 96, 97, 98, 99, 100, 101, 102, 103,
87 104, 105, 106, 107, 108, 109, 110, 111,
88 112, 113, 114, 115, 116, 117, 118, 119,
89 120, 121, 122, 123, 124, 125, 126, 127},
90 .oobfree = {
91 {.offset = 2,
Florian Fainellif8ac0412010-09-07 13:23:43 +020092 .length = 78} }
Thomas Gleixner81ec5362007-12-12 17:27:03 +010093};
94
Huang Shijie6a8214a2012-11-19 14:43:30 +080095static int nand_get_device(struct mtd_info *mtd, int new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thomas Gleixner8593fbc2006-05-29 03:26:58 +020097static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
98 struct mtd_oob_ops *ops);
99
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200100/*
Joe Perches8e87d782008-02-03 17:22:34 +0200101 * For devices which display every fart in the system on a separate LED. Is
Thomas Gleixnerd470a972006-05-23 23:48:57 +0200102 * compiled away when LED support is disabled.
103 */
104DEFINE_LED_TRIGGER(nand_led_trigger);
105
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530106static int check_offs_len(struct mtd_info *mtd,
107 loff_t ofs, uint64_t len)
108{
109 struct nand_chip *chip = mtd->priv;
110 int ret = 0;
111
112 /* Start address must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300113 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700114 pr_debug("%s: unaligned address\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530115 ret = -EINVAL;
116 }
117
118 /* Length must align on block boundary */
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300119 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
Brian Norris289c0522011-07-19 10:06:09 -0700120 pr_debug("%s: length not block aligned\n", __func__);
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530121 ret = -EINVAL;
122 }
123
Vimal Singh6fe5a6a2010-02-03 14:12:24 +0530124 return ret;
125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/**
128 * nand_release_device - [GENERIC] release chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700129 * @mtd: MTD device structure
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000130 *
Huang Shijieb0bb6902012-11-19 14:43:29 +0800131 * Release chip lock and wake up anyone waiting on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100133static void nand_release_device(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200135 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200137 /* Release the controller and the chip */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200138 spin_lock(&chip->controller->lock);
139 chip->controller->active = NULL;
140 chip->state = FL_READY;
141 wake_up(&chip->controller->wq);
142 spin_unlock(&chip->controller->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145/**
146 * nand_read_byte - [DEFAULT] read one byte from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700147 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700149 * Default read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200151static uint8_t nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200153 struct nand_chip *chip = mtd->priv;
154 return readb(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157/**
Masanari Iida064a7692012-11-09 23:20:58 +0900158 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700159 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700161 * Default read function for 16bit buswidth with endianness conversion.
162 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200164static uint8_t nand_read_byte16(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200166 struct nand_chip *chip = mtd->priv;
167 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * nand_read_word - [DEFAULT] read one word from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700172 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700174 * Default read function for 16bit buswidth without endianness conversion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
176static u16 nand_read_word(struct mtd_info *mtd)
177{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200178 struct nand_chip *chip = mtd->priv;
179 return readw(chip->IO_ADDR_R);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * nand_select_chip - [DEFAULT] control CE line
Brian Norris8b6e50c2011-05-25 14:59:01 -0700184 * @mtd: MTD device structure
185 * @chipnr: chipnumber to select, -1 for deselect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * Default select function for 1 chip devices.
188 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200189static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200191 struct nand_chip *chip = mtd->priv;
192
193 switch (chipnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 case -1:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200195 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 break;
199
200 default:
201 BUG();
202 }
203}
204
205/**
Uwe Kleine-König05f78352013-12-05 22:22:04 +0100206 * nand_write_byte - [DEFAULT] write single byte to chip
207 * @mtd: MTD device structure
208 * @byte: value to write
209 *
210 * Default function to write a byte to I/O[7:0]
211 */
212static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
213{
214 struct nand_chip *chip = mtd->priv;
215
216 chip->write_buf(mtd, &byte, 1);
217}
218
219/**
220 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
221 * @mtd: MTD device structure
222 * @byte: value to write
223 *
224 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
225 */
226static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
227{
228 struct nand_chip *chip = mtd->priv;
229 uint16_t word = byte;
230
231 /*
232 * It's not entirely clear what should happen to I/O[15:8] when writing
233 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
234 *
235 * When the host supports a 16-bit bus width, only data is
236 * transferred at the 16-bit width. All address and command line
237 * transfers shall use only the lower 8-bits of the data bus. During
238 * command transfers, the host may place any value on the upper
239 * 8-bits of the data bus. During address transfers, the host shall
240 * set the upper 8-bits of the data bus to 00h.
241 *
242 * One user of the write_byte callback is nand_onfi_set_features. The
243 * four parameters are specified to be written to I/O[7:0], but this is
244 * neither an address nor a command transfer. Let's assume a 0 on the
245 * upper I/O lines is OK.
246 */
247 chip->write_buf(mtd, (uint8_t *)&word, 2);
248}
249
250/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 * nand_write_buf - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700252 * @mtd: MTD device structure
253 * @buf: data buffer
254 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700256 * Default write function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200258static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200260 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Alexander Shiyan76413832013-04-13 09:32:13 +0400262 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000266 * nand_read_buf - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700267 * @mtd: MTD device structure
268 * @buf: buffer to store date
269 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700271 * Default read function for 8bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200273static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200275 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Alexander Shiyan76413832013-04-13 09:32:13 +0400277 ioread8_rep(chip->IO_ADDR_R, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * nand_write_buf16 - [DEFAULT] write buffer to chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700282 * @mtd: MTD device structure
283 * @buf: data buffer
284 * @len: number of bytes to write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700286 * Default write function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200288static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200290 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 u16 *p = (u16 *) buf;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000292
Alexander Shiyan76413832013-04-13 09:32:13 +0400293 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000297 * nand_read_buf16 - [DEFAULT] read chip data into buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700298 * @mtd: MTD device structure
299 * @buf: buffer to store date
300 * @len: number of bytes to read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700302 * Default read function for 16bit buswidth.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 */
Thomas Gleixner58dd8f2b2006-05-23 11:52:35 +0200304static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200306 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 u16 *p = (u16 *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Alexander Shiyan76413832013-04-13 09:32:13 +0400309 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Brian Norris8b6e50c2011-05-25 14:59:01 -0700314 * @mtd: MTD device structure
315 * @ofs: offset from device start
316 * @getchip: 0, if the chip is already selected
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000318 * Check, if the block is bad.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
320static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
321{
Brian Norriscdbec052012-01-13 18:11:48 -0800322 int page, chipnr, res = 0, i = 0;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200323 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 u16 bad;
325
Brian Norris5fb15492011-05-31 16:31:21 -0700326 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700327 ofs += mtd->erasesize - mtd->writesize;
328
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100329 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (getchip) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200332 chipnr = (int)(ofs >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Huang Shijie6a8214a2012-11-19 14:43:30 +0800334 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200337 chip->select_chip(mtd, chipnr);
Thomas Knobloch1a12f462007-05-03 07:39:37 +0100338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Brian Norriscdbec052012-01-13 18:11:48 -0800340 do {
341 if (chip->options & NAND_BUSWIDTH_16) {
342 chip->cmdfunc(mtd, NAND_CMD_READOOB,
343 chip->badblockpos & 0xFE, page);
344 bad = cpu_to_le16(chip->read_word(mtd));
345 if (chip->badblockpos & 0x1)
346 bad >>= 8;
347 else
348 bad &= 0xFF;
349 } else {
350 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
351 page);
352 bad = chip->read_byte(mtd);
353 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000354
Brian Norriscdbec052012-01-13 18:11:48 -0800355 if (likely(chip->badblockbits == 8))
356 res = bad != 0xFF;
357 else
358 res = hweight8(bad) < chip->badblockbits;
359 ofs += mtd->writesize;
360 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
361 i++;
362 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Maxim Levitskye0b58d02010-02-22 20:39:38 +0200363
Huang Shijieb0bb6902012-11-19 14:43:29 +0800364 if (getchip) {
365 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 nand_release_device(mtd);
Huang Shijieb0bb6902012-11-19 14:43:29 +0800367 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return res;
370}
371
372/**
Brian Norris5a0edb22013-07-30 17:52:58 -0700373 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Brian Norris8b6e50c2011-05-25 14:59:01 -0700374 * @mtd: MTD device structure
375 * @ofs: offset from device start
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700377 * This is the default implementation, which can be overridden by a hardware
Brian Norris5a0edb22013-07-30 17:52:58 -0700378 * specific driver. It provides the details for writing a bad block marker to a
379 * block.
380 */
381static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
382{
383 struct nand_chip *chip = mtd->priv;
384 struct mtd_oob_ops ops;
385 uint8_t buf[2] = { 0, 0 };
386 int ret = 0, res, i = 0;
387
Brian Norris0ec56dc2015-02-28 02:02:30 -0800388 memset(&ops, 0, sizeof(ops));
Brian Norris5a0edb22013-07-30 17:52:58 -0700389 ops.oobbuf = buf;
390 ops.ooboffs = chip->badblockpos;
391 if (chip->options & NAND_BUSWIDTH_16) {
392 ops.ooboffs &= ~0x01;
393 ops.len = ops.ooblen = 2;
394 } else {
395 ops.len = ops.ooblen = 1;
396 }
397 ops.mode = MTD_OPS_PLACE_OOB;
398
399 /* Write to first/last page(s) if necessary */
400 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
401 ofs += mtd->erasesize - mtd->writesize;
402 do {
403 res = nand_do_write_oob(mtd, ofs, &ops);
404 if (!ret)
405 ret = res;
406
407 i++;
408 ofs += mtd->writesize;
409 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
410
411 return ret;
412}
413
414/**
415 * nand_block_markbad_lowlevel - mark a block bad
416 * @mtd: MTD device structure
417 * @ofs: offset from device start
418 *
419 * This function performs the generic NAND bad block marking steps (i.e., bad
420 * block table(s) and/or marker(s)). We only allow the hardware driver to
421 * specify how to write bad block markers to OOB (chip->block_markbad).
422 *
Brian Norrisb32843b2013-07-30 17:52:59 -0700423 * We try operations in the following order:
Brian Norrise2414f42012-02-06 13:44:00 -0800424 * (1) erase the affected block, to allow OOB marker to be written cleanly
Brian Norrisb32843b2013-07-30 17:52:59 -0700425 * (2) write bad block marker to OOB area of affected block (unless flag
426 * NAND_BBT_NO_OOB_BBM is present)
427 * (3) update the BBT
428 * Note that we retain the first error encountered in (2) or (3), finish the
Brian Norrise2414f42012-02-06 13:44:00 -0800429 * procedures, and dump the error in the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430*/
Brian Norris5a0edb22013-07-30 17:52:58 -0700431static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200433 struct nand_chip *chip = mtd->priv;
Brian Norrisb32843b2013-07-30 17:52:59 -0700434 int res, ret = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000435
Brian Norrisb32843b2013-07-30 17:52:59 -0700436 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Brian Norris00918422012-01-13 18:11:47 -0800437 struct erase_info einfo;
438
439 /* Attempt erase before marking OOB */
440 memset(&einfo, 0, sizeof(einfo));
441 einfo.mtd = mtd;
442 einfo.addr = ofs;
Dan Carpenterdaae74c2013-08-09 12:49:05 +0300443 einfo.len = 1ULL << chip->phys_erase_shift;
Brian Norris00918422012-01-13 18:11:47 -0800444 nand_erase_nand(mtd, &einfo, 0);
Brian Norris00918422012-01-13 18:11:47 -0800445
Brian Norrisb32843b2013-07-30 17:52:59 -0700446 /* Write bad block marker to OOB */
Huang Shijie6a8214a2012-11-19 14:43:30 +0800447 nand_get_device(mtd, FL_WRITING);
Brian Norris5a0edb22013-07-30 17:52:58 -0700448 ret = chip->block_markbad(mtd, ofs);
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300449 nand_release_device(mtd);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200450 }
Brian Norrise2414f42012-02-06 13:44:00 -0800451
Brian Norrisb32843b2013-07-30 17:52:59 -0700452 /* Mark block bad in BBT */
453 if (chip->bbt) {
454 res = nand_markbad_bbt(mtd, ofs);
Brian Norrise2414f42012-02-06 13:44:00 -0800455 if (!ret)
456 ret = res;
457 }
458
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200459 if (!ret)
460 mtd->ecc_stats.badblocks++;
Artem Bityutskiyc0b8ba72007-07-23 16:06:50 +0300461
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200462 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000465/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * nand_check_wp - [GENERIC] check if the chip is write protected
Brian Norris8b6e50c2011-05-25 14:59:01 -0700467 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700469 * Check, if the device is write protected. The function expects, that the
470 * device is already selected.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100472static int nand_check_wp(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200474 struct nand_chip *chip = mtd->priv;
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200475
Brian Norris8b6e50c2011-05-25 14:59:01 -0700476 /* Broken xD cards report WP despite being writable */
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200477 if (chip->options & NAND_BROKEN_XD)
478 return 0;
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* Check the WP bit */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200481 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
482 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485/**
Gu Zhengc30e1f72014-09-03 17:49:10 +0800486 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700487 * @mtd: MTD device structure
488 * @ofs: offset from device start
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300489 *
Gu Zhengc30e1f72014-09-03 17:49:10 +0800490 * Check if the block is marked as reserved.
Ezequiel Garcia8471bb72014-05-21 19:06:12 -0300491 */
492static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
493{
494 struct nand_chip *chip = mtd->priv;
495
496 if (!chip->bbt)
497 return 0;
498 /* Return info from the table */
499 return nand_isreserved_bbt(mtd, ofs);
500}
501
502/**
503 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
504 * @mtd: MTD device structure
505 * @ofs: offset from device start
Brian Norris8b6e50c2011-05-25 14:59:01 -0700506 * @getchip: 0, if the chip is already selected
507 * @allowbbt: 1, if its allowed to access the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 *
509 * Check, if the block is bad. Either by reading the bad block table or
510 * calling of the scan function.
511 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200512static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
513 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200515 struct nand_chip *chip = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000516
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200517 if (!chip->bbt)
518 return chip->block_bad(mtd, ofs, getchip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* Return info from the table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100521 return nand_isbad_bbt(mtd, ofs, allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200524/**
525 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700526 * @mtd: MTD device structure
527 * @timeo: Timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200528 *
529 * Helper function for nand_wait_ready used when needing to wait in interrupt
530 * context.
531 */
532static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
533{
534 struct nand_chip *chip = mtd->priv;
535 int i;
536
537 /* Wait for the device to get ready */
538 for (i = 0; i < timeo; i++) {
539 if (chip->dev_ready(mtd))
540 break;
541 touch_softlockup_watchdog();
542 mdelay(1);
543 }
544}
545
Brian Norris7854d3f2011-06-23 14:12:08 -0700546/* Wait for the ready pin, after a command. The timeout is caught later. */
David Woodhouse4b648b02006-09-25 17:05:24 +0100547void nand_wait_ready(struct mtd_info *mtd)
Thomas Gleixner3b887752005-02-22 21:56:49 +0000548{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200549 struct nand_chip *chip = mtd->priv;
Matthieu CASTETca6a2482012-11-22 18:31:28 +0100550 unsigned long timeo = jiffies + msecs_to_jiffies(20);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000551
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200552 /* 400ms timeout */
553 if (in_interrupt() || oops_in_progress)
554 return panic_nand_wait_ready(mtd, 400);
555
Richard Purdie8fe833c2006-03-31 02:31:14 -0800556 led_trigger_event(nand_led_trigger, LED_FULL);
Brian Norris7854d3f2011-06-23 14:12:08 -0700557 /* Wait until command is processed or timeout occurs */
Thomas Gleixner3b887752005-02-22 21:56:49 +0000558 do {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200559 if (chip->dev_ready(mtd))
Richard Purdie8fe833c2006-03-31 02:31:14 -0800560 break;
Ingo Molnar8446f1d2005-09-06 15:16:27 -0700561 touch_softlockup_watchdog();
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000562 } while (time_before(jiffies, timeo));
Richard Purdie8fe833c2006-03-31 02:31:14 -0800563 led_trigger_event(nand_led_trigger, LED_OFF);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000564}
David Woodhouse4b648b02006-09-25 17:05:24 +0100565EXPORT_SYMBOL_GPL(nand_wait_ready);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567/**
Roger Quadros60c70d62015-02-23 17:26:39 +0200568 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
569 * @mtd: MTD device structure
570 * @timeo: Timeout in ms
571 *
572 * Wait for status ready (i.e. command done) or timeout.
573 */
574static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
575{
576 register struct nand_chip *chip = mtd->priv;
577
578 timeo = jiffies + msecs_to_jiffies(timeo);
579 do {
580 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
581 break;
582 touch_softlockup_watchdog();
583 } while (time_before(jiffies, timeo));
584};
585
586/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * nand_command - [DEFAULT] Send command to NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700588 * @mtd: MTD device structure
589 * @command: the command to be sent
590 * @column: the column address for this command, -1 if none
591 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700593 * Send command to NAND device. This function is used for small page devices
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200594 * (512 Bytes per page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200596static void nand_command(struct mtd_info *mtd, unsigned int command,
597 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200599 register struct nand_chip *chip = mtd->priv;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200600 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Brian Norris8b6e50c2011-05-25 14:59:01 -0700602 /* Write out the command to the device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (command == NAND_CMD_SEQIN) {
604 int readcmd;
605
Joern Engel28318772006-05-22 23:18:05 +0200606 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200608 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 readcmd = NAND_CMD_READOOB;
610 } else if (column < 256) {
611 /* First 256 bytes --> READ0 */
612 readcmd = NAND_CMD_READ0;
613 } else {
614 column -= 256;
615 readcmd = NAND_CMD_READ1;
616 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200617 chip->cmd_ctrl(mtd, readcmd, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200618 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200620 chip->cmd_ctrl(mtd, command, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Brian Norris8b6e50c2011-05-25 14:59:01 -0700622 /* Address cycle, when necessary */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200623 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
624 /* Serially input address */
625 if (column != -1) {
626 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800627 if (chip->options & NAND_BUSWIDTH_16 &&
628 !nand_opcode_8bits(command))
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200629 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200630 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200631 ctrl &= ~NAND_CTRL_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200633 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200634 chip->cmd_ctrl(mtd, page_addr, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200635 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200636 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200637 /* One more address cycle for devices > 32MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200638 if (chip->chipsize > (32 << 20))
639 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200640 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200641 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000642
643 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700644 * Program and erase have their own busy handlers status and sequential
645 * in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100646 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 case NAND_CMD_PAGEPROG:
650 case NAND_CMD_ERASE1:
651 case NAND_CMD_ERASE2:
652 case NAND_CMD_SEQIN:
653 case NAND_CMD_STATUS:
654 return;
655
656 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200657 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200659 udelay(chip->chip_delay);
660 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200661 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200662 chip->cmd_ctrl(mtd,
663 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200664 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
665 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return;
667
David Woodhousee0c7d762006-05-13 18:07:53 +0100668 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000670 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 * If we don't have access to the busy pin, we apply the given
672 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100673 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200674 if (!chip->dev_ready) {
675 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700679 /*
680 * Apply this short delay always to ensure that we do wait tWB in
681 * any case on any machine.
682 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100683 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000684
685 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688/**
689 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700690 * @mtd: MTD device structure
691 * @command: the command to be sent
692 * @column: the column address for this command, -1 if none
693 * @page_addr: the page address for this command, -1 if none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 *
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200695 * Send command to NAND device. This is the version for the new large page
Brian Norris7854d3f2011-06-23 14:12:08 -0700696 * devices. We don't have the separate regions as we have in the small page
697 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200699static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
700 int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200702 register struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* Emulate NAND_CMD_READOOB */
705 if (command == NAND_CMD_READOOB) {
Joern Engel28318772006-05-22 23:18:05 +0200706 column += mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 command = NAND_CMD_READ0;
708 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000709
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200710 /* Command latch cycle */
Alexander Shiyanfb066ad2013-02-28 12:02:19 +0400711 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200714 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 /* Serially input address */
717 if (column != -1) {
718 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800719 if (chip->options & NAND_BUSWIDTH_16 &&
720 !nand_opcode_8bits(command))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 column >>= 1;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200722 chip->cmd_ctrl(mtd, column, ctrl);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200723 ctrl &= ~NAND_CTRL_CHANGE;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200724 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (page_addr != -1) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200727 chip->cmd_ctrl(mtd, page_addr, ctrl);
728 chip->cmd_ctrl(mtd, page_addr >> 8,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200729 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /* One more address cycle for devices > 128MiB */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200731 if (chip->chipsize > (128 << 20))
732 chip->cmd_ctrl(mtd, page_addr >> 16,
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200733 NAND_NCE | NAND_ALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200736 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000737
738 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700739 * Program and erase have their own busy handlers status, sequential
Gerhard Sittig7a442f12014-03-29 14:36:22 +0100740 * in and status need no delay.
David A. Marlin30f464b2005-01-17 18:35:25 +0000741 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 switch (command) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 case NAND_CMD_CACHEDPROG:
745 case NAND_CMD_PAGEPROG:
746 case NAND_CMD_ERASE1:
747 case NAND_CMD_ERASE2:
748 case NAND_CMD_SEQIN:
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200749 case NAND_CMD_RNDIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 case NAND_CMD_STATUS:
David A. Marlin30f464b2005-01-17 18:35:25 +0000751 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 case NAND_CMD_RESET:
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200754 if (chip->dev_ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 break;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200756 udelay(chip->chip_delay);
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200757 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
758 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
759 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
760 NAND_NCE | NAND_CTRL_CHANGE);
Roger Quadros60c70d62015-02-23 17:26:39 +0200761 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
762 nand_wait_status_ready(mtd, 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
764
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200765 case NAND_CMD_RNDOUT:
766 /* No ready / busy check necessary */
767 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
768 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
769 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
770 NAND_NCE | NAND_CTRL_CHANGE);
771 return;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 case NAND_CMD_READ0:
Thomas Gleixner12efdde2006-05-24 22:57:09 +0200774 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
775 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
776 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
777 NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000778
David Woodhousee0c7d762006-05-13 18:07:53 +0100779 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000781 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * If we don't have access to the busy pin, we apply the given
Brian Norris8b6e50c2011-05-25 14:59:01 -0700783 * command delay.
David Woodhousee0c7d762006-05-13 18:07:53 +0100784 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200785 if (!chip->dev_ready) {
786 udelay(chip->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Thomas Gleixner3b887752005-02-22 21:56:49 +0000790
Brian Norris8b6e50c2011-05-25 14:59:01 -0700791 /*
792 * Apply this short delay always to ensure that we do wait tWB in
793 * any case on any machine.
794 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100795 ndelay(100);
Thomas Gleixner3b887752005-02-22 21:56:49 +0000796
797 nand_wait_ready(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200801 * panic_nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700802 * @chip: the nand chip descriptor
803 * @mtd: MTD device structure
804 * @new_state: the state which is requested
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200805 *
806 * Used when in panic, no locks are taken.
807 */
808static void panic_nand_get_device(struct nand_chip *chip,
809 struct mtd_info *mtd, int new_state)
810{
Brian Norris7854d3f2011-06-23 14:12:08 -0700811 /* Hardware controller shared among independent devices */
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200812 chip->controller->active = chip;
813 chip->state = new_state;
814}
815
816/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * nand_get_device - [GENERIC] Get chip for selected access
Brian Norris8b6e50c2011-05-25 14:59:01 -0700818 * @mtd: MTD device structure
819 * @new_state: the state which is requested
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 *
821 * Get the device and lock it for exclusive access
822 */
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +0200823static int
Huang Shijie6a8214a2012-11-19 14:43:30 +0800824nand_get_device(struct mtd_info *mtd, int new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Huang Shijie6a8214a2012-11-19 14:43:30 +0800826 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200827 spinlock_t *lock = &chip->controller->lock;
828 wait_queue_head_t *wq = &chip->controller->wq;
David Woodhousee0c7d762006-05-13 18:07:53 +0100829 DECLARE_WAITQUEUE(wait, current);
Florian Fainelli7351d3a2010-09-07 13:23:45 +0200830retry:
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100831 spin_lock(lock);
832
vimal singhb8b3ee92009-07-09 20:41:22 +0530833 /* Hardware controller shared among independent devices */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200834 if (!chip->controller->active)
835 chip->controller->active = chip;
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200836
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200837 if (chip->controller->active == chip && chip->state == FL_READY) {
838 chip->state = new_state;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100839 spin_unlock(lock);
Vitaly Wool962034f2005-09-15 14:58:53 +0100840 return 0;
841 }
842 if (new_state == FL_PM_SUSPENDED) {
Li Yang6b0d9a82009-11-17 14:45:49 -0800843 if (chip->controller->active->state == FL_PM_SUSPENDED) {
844 chip->state = FL_PM_SUSPENDED;
845 spin_unlock(lock);
846 return 0;
Li Yang6b0d9a82009-11-17 14:45:49 -0800847 }
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100848 }
849 set_current_state(TASK_UNINTERRUPTIBLE);
850 add_wait_queue(wq, &wait);
851 spin_unlock(lock);
852 schedule();
853 remove_wait_queue(wq, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto retry;
855}
856
857/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700858 * panic_nand_wait - [GENERIC] wait until the command is done
859 * @mtd: MTD device structure
860 * @chip: NAND chip structure
861 * @timeo: timeout
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200862 *
863 * Wait for command done. This is a helper function for nand_wait used when
864 * we are in interrupt context. May happen when in panic and trying to write
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400865 * an oops through mtdoops.
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200866 */
867static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
868 unsigned long timeo)
869{
870 int i;
871 for (i = 0; i < timeo; i++) {
872 if (chip->dev_ready) {
873 if (chip->dev_ready(mtd))
874 break;
875 } else {
876 if (chip->read_byte(mtd) & NAND_STATUS_READY)
877 break;
878 }
879 mdelay(1);
Florian Fainellif8ac0412010-09-07 13:23:43 +0200880 }
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200881}
882
883/**
Brian Norris8b6e50c2011-05-25 14:59:01 -0700884 * nand_wait - [DEFAULT] wait until the command is done
885 * @mtd: MTD device structure
886 * @chip: NAND chip structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700888 * Wait for command done. This applies to erase and program only. Erase can
889 * take up to 400ms and program up to 20ms according to general NAND and
890 * SmartMedia specs.
Randy Dunlap844d3b42006-06-28 21:48:27 -0700891 */
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200892static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200895 int status, state = chip->state;
Huang Shijie6d2559f2013-01-30 10:03:56 +0800896 unsigned long timeo = (state == FL_ERASING ? 400 : 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Richard Purdie8fe833c2006-03-31 02:31:14 -0800898 led_trigger_event(nand_led_trigger, LED_FULL);
899
Brian Norris8b6e50c2011-05-25 14:59:01 -0700900 /*
901 * Apply this short delay always to ensure that we do wait tWB in any
902 * case on any machine.
903 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100904 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Artem Bityutskiy14c65782013-03-04 14:21:34 +0200906 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200908 if (in_interrupt() || oops_in_progress)
909 panic_nand_wait(mtd, chip, timeo);
910 else {
Huang Shijie6d2559f2013-01-30 10:03:56 +0800911 timeo = jiffies + msecs_to_jiffies(timeo);
Simon Kagstrom2af7c652009-10-05 15:55:52 +0200912 while (time_before(jiffies, timeo)) {
913 if (chip->dev_ready) {
914 if (chip->dev_ready(mtd))
915 break;
916 } else {
917 if (chip->read_byte(mtd) & NAND_STATUS_READY)
918 break;
919 }
920 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Richard Purdie8fe833c2006-03-31 02:31:14 -0800923 led_trigger_event(nand_led_trigger, LED_OFF);
924
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +0200925 status = (int)chip->read_byte(mtd);
Matthieu CASTETf251b8d2012-11-05 15:00:44 +0100926 /* This can happen if in case of timeout or buggy dev_ready */
927 WARN_ON(!(status & NAND_STATUS_READY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return status;
929}
930
931/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700932 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700933 * @mtd: mtd info
934 * @ofs: offset to start unlock from
935 * @len: length to unlock
Brian Norris8b6e50c2011-05-25 14:59:01 -0700936 * @invert: when = 0, unlock the range of blocks within the lower and
937 * upper boundary address
938 * when = 1, unlock the range of blocks outside the boundaries
939 * of the lower and upper boundary address
Vimal Singh7d70f332010-02-08 15:50:49 +0530940 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700941 * Returs unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530942 */
943static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
944 uint64_t len, int invert)
945{
946 int ret = 0;
947 int status, page;
948 struct nand_chip *chip = mtd->priv;
949
950 /* Submit address of first page to unlock */
951 page = ofs >> chip->page_shift;
952 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
953
954 /* Submit address of last page to unlock */
955 page = (ofs + len) >> chip->page_shift;
956 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
957 (page | invert) & chip->pagemask);
958
959 /* Call wait ready function */
960 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +0530961 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -0400962 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -0700963 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530964 __func__, status);
965 ret = -EIO;
966 }
967
968 return ret;
969}
970
971/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700972 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
Randy Dunlapb6d676d2010-08-10 18:02:50 -0700973 * @mtd: mtd info
974 * @ofs: offset to start unlock from
975 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +0530976 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700977 * Returns unlock status.
Vimal Singh7d70f332010-02-08 15:50:49 +0530978 */
979int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
980{
981 int ret = 0;
982 int chipnr;
983 struct nand_chip *chip = mtd->priv;
984
Brian Norris289c0522011-07-19 10:06:09 -0700985 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +0530986 __func__, (unsigned long long)ofs, len);
987
988 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -0800989 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +0530990
991 /* Align to last block address if size addresses end of the device */
992 if (ofs + len == mtd->size)
993 len -= mtd->erasesize;
994
Huang Shijie6a8214a2012-11-19 14:43:30 +0800995 nand_get_device(mtd, FL_UNLOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +0530996
997 /* Shift to get chip number */
998 chipnr = ofs >> chip->chip_shift;
999
1000 chip->select_chip(mtd, chipnr);
1001
White Ding57d3a9a2014-07-24 00:10:45 +08001002 /*
1003 * Reset the chip.
1004 * If we want to check the WP through READ STATUS and check the bit 7
1005 * we must reset the chip
1006 * some operation can also clear the bit 7 of status register
1007 * eg. erase/program a locked block
1008 */
1009 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1010
Vimal Singh7d70f332010-02-08 15:50:49 +05301011 /* Check, if it is write protected */
1012 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001013 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301014 __func__);
1015 ret = -EIO;
1016 goto out;
1017 }
1018
1019 ret = __nand_unlock(mtd, ofs, len, 0);
1020
1021out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001022 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301023 nand_release_device(mtd);
1024
1025 return ret;
1026}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001027EXPORT_SYMBOL(nand_unlock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301028
1029/**
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001030 * nand_lock - [REPLACEABLE] locks all blocks present in the device
Randy Dunlapb6d676d2010-08-10 18:02:50 -07001031 * @mtd: mtd info
1032 * @ofs: offset to start unlock from
1033 * @len: length to unlock
Vimal Singh7d70f332010-02-08 15:50:49 +05301034 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001035 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1036 * have this feature, but it allows only to lock all blocks, not for specified
1037 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1038 * now.
Vimal Singh7d70f332010-02-08 15:50:49 +05301039 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001040 * Returns lock status.
Vimal Singh7d70f332010-02-08 15:50:49 +05301041 */
1042int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1043{
1044 int ret = 0;
1045 int chipnr, status, page;
1046 struct nand_chip *chip = mtd->priv;
1047
Brian Norris289c0522011-07-19 10:06:09 -07001048 pr_debug("%s: start = 0x%012llx, len = %llu\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301049 __func__, (unsigned long long)ofs, len);
1050
1051 if (check_offs_len(mtd, ofs, len))
Brian Norrisb1a23482015-02-28 02:02:27 -08001052 return -EINVAL;
Vimal Singh7d70f332010-02-08 15:50:49 +05301053
Huang Shijie6a8214a2012-11-19 14:43:30 +08001054 nand_get_device(mtd, FL_LOCKING);
Vimal Singh7d70f332010-02-08 15:50:49 +05301055
1056 /* Shift to get chip number */
1057 chipnr = ofs >> chip->chip_shift;
1058
1059 chip->select_chip(mtd, chipnr);
1060
White Ding57d3a9a2014-07-24 00:10:45 +08001061 /*
1062 * Reset the chip.
1063 * If we want to check the WP through READ STATUS and check the bit 7
1064 * we must reset the chip
1065 * some operation can also clear the bit 7 of status register
1066 * eg. erase/program a locked block
1067 */
1068 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
1069
Vimal Singh7d70f332010-02-08 15:50:49 +05301070 /* Check, if it is write protected */
1071 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07001072 pr_debug("%s: device is write protected!\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301073 __func__);
1074 status = MTD_ERASE_FAILED;
1075 ret = -EIO;
1076 goto out;
1077 }
1078
1079 /* Submit address of first page to lock */
1080 page = ofs >> chip->page_shift;
1081 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1082
1083 /* Call wait ready function */
1084 status = chip->waitfunc(mtd, chip);
Vimal Singh7d70f332010-02-08 15:50:49 +05301085 /* See if device thinks it succeeded */
Huang Shijie74830962012-10-14 23:47:24 -04001086 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07001087 pr_debug("%s: error status = 0x%08x\n",
Vimal Singh7d70f332010-02-08 15:50:49 +05301088 __func__, status);
1089 ret = -EIO;
1090 goto out;
1091 }
1092
1093 ret = __nand_unlock(mtd, ofs, len, 0x1);
1094
1095out:
Huang Shijieb0bb6902012-11-19 14:43:29 +08001096 chip->select_chip(mtd, -1);
Vimal Singh7d70f332010-02-08 15:50:49 +05301097 nand_release_device(mtd);
1098
1099 return ret;
1100}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001101EXPORT_SYMBOL(nand_lock);
Vimal Singh7d70f332010-02-08 15:50:49 +05301102
1103/**
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001104 * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data
1105 * @buf: buffer to test
1106 * @len: buffer length
1107 * @bitflips_threshold: maximum number of bitflips
1108 *
1109 * Check if a buffer contains only 0xff, which means the underlying region
1110 * has been erased and is ready to be programmed.
1111 * The bitflips_threshold specify the maximum number of bitflips before
1112 * considering the region is not erased.
1113 * Note: The logic of this function has been extracted from the memweight
1114 * implementation, except that nand_check_erased_buf function exit before
1115 * testing the whole buffer if the number of bitflips exceed the
1116 * bitflips_threshold value.
1117 *
1118 * Returns a positive number of bitflips less than or equal to
1119 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1120 * threshold.
1121 */
1122static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold)
1123{
1124 const unsigned char *bitmap = buf;
1125 int bitflips = 0;
1126 int weight;
1127
1128 for (; len && ((uintptr_t)bitmap) % sizeof(long);
1129 len--, bitmap++) {
1130 weight = hweight8(*bitmap);
1131 bitflips += BITS_PER_BYTE - weight;
1132 if (unlikely(bitflips > bitflips_threshold))
1133 return -EBADMSG;
1134 }
1135
1136 for (; len >= sizeof(long);
1137 len -= sizeof(long), bitmap += sizeof(long)) {
1138 weight = hweight_long(*((unsigned long *)bitmap));
1139 bitflips += BITS_PER_LONG - weight;
1140 if (unlikely(bitflips > bitflips_threshold))
1141 return -EBADMSG;
1142 }
1143
1144 for (; len > 0; len--, bitmap++) {
1145 weight = hweight8(*bitmap);
1146 bitflips += BITS_PER_BYTE - weight;
1147 if (unlikely(bitflips > bitflips_threshold))
1148 return -EBADMSG;
1149 }
1150
1151 return bitflips;
1152}
1153
1154/**
1155 * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only
1156 * 0xff data
1157 * @data: data buffer to test
1158 * @datalen: data length
1159 * @ecc: ECC buffer
1160 * @ecclen: ECC length
1161 * @extraoob: extra OOB buffer
1162 * @extraooblen: extra OOB length
1163 * @bitflips_threshold: maximum number of bitflips
1164 *
1165 * Check if a data buffer and its associated ECC and OOB data contains only
1166 * 0xff pattern, which means the underlying region has been erased and is
1167 * ready to be programmed.
1168 * The bitflips_threshold specify the maximum number of bitflips before
1169 * considering the region as not erased.
1170 *
1171 * Note:
1172 * 1/ ECC algorithms are working on pre-defined block sizes which are usually
1173 * different from the NAND page size. When fixing bitflips, ECC engines will
1174 * report the number of errors per chunk, and the NAND core infrastructure
1175 * expect you to return the maximum number of bitflips for the whole page.
1176 * This is why you should always use this function on a single chunk and
1177 * not on the whole page. After checking each chunk you should update your
1178 * max_bitflips value accordingly.
1179 * 2/ When checking for bitflips in erased pages you should not only check
1180 * the payload data but also their associated ECC data, because a user might
1181 * have programmed almost all bits to 1 but a few. In this case, we
1182 * shouldn't consider the chunk as erased, and checking ECC bytes prevent
1183 * this case.
1184 * 3/ The extraoob argument is optional, and should be used if some of your OOB
1185 * data are protected by the ECC engine.
1186 * It could also be used if you support subpages and want to attach some
1187 * extra OOB data to an ECC chunk.
1188 *
1189 * Returns a positive number of bitflips less than or equal to
1190 * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the
1191 * threshold. In case of success, the passed buffers are filled with 0xff.
1192 */
1193int nand_check_erased_ecc_chunk(void *data, int datalen,
1194 void *ecc, int ecclen,
1195 void *extraoob, int extraooblen,
1196 int bitflips_threshold)
1197{
1198 int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0;
1199
1200 data_bitflips = nand_check_erased_buf(data, datalen,
1201 bitflips_threshold);
1202 if (data_bitflips < 0)
1203 return data_bitflips;
1204
1205 bitflips_threshold -= data_bitflips;
1206
1207 ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold);
1208 if (ecc_bitflips < 0)
1209 return ecc_bitflips;
1210
1211 bitflips_threshold -= ecc_bitflips;
1212
1213 extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen,
1214 bitflips_threshold);
1215 if (extraoob_bitflips < 0)
1216 return extraoob_bitflips;
1217
1218 if (data_bitflips)
1219 memset(data, 0xff, datalen);
1220
1221 if (ecc_bitflips)
1222 memset(ecc, 0xff, ecclen);
1223
1224 if (extraoob_bitflips)
1225 memset(extraoob, 0xff, extraooblen);
1226
1227 return data_bitflips + ecc_bitflips + extraoob_bitflips;
1228}
1229EXPORT_SYMBOL(nand_check_erased_ecc_chunk);
1230
1231/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001232 * nand_read_page_raw - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001233 * @mtd: mtd info structure
1234 * @chip: nand chip info structure
1235 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001236 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001237 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001238 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001239 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001240 */
1241static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001242 uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001243{
1244 chip->read_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07001245 if (oob_required)
1246 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001247 return 0;
1248}
1249
1250/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001251 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001252 * @mtd: mtd info structure
1253 * @chip: nand chip info structure
1254 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001255 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001256 * @page: page number to read
David Brownell52ff49d2009-03-04 12:01:36 -08001257 *
1258 * We need a special oob layout and handling even when OOB isn't used.
1259 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001260static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001261 struct nand_chip *chip, uint8_t *buf,
1262 int oob_required, int page)
David Brownell52ff49d2009-03-04 12:01:36 -08001263{
1264 int eccsize = chip->ecc.size;
1265 int eccbytes = chip->ecc.bytes;
1266 uint8_t *oob = chip->oob_poi;
1267 int steps, size;
1268
1269 for (steps = chip->ecc.steps; steps > 0; steps--) {
1270 chip->read_buf(mtd, buf, eccsize);
1271 buf += eccsize;
1272
1273 if (chip->ecc.prepad) {
1274 chip->read_buf(mtd, oob, chip->ecc.prepad);
1275 oob += chip->ecc.prepad;
1276 }
1277
1278 chip->read_buf(mtd, oob, eccbytes);
1279 oob += eccbytes;
1280
1281 if (chip->ecc.postpad) {
1282 chip->read_buf(mtd, oob, chip->ecc.postpad);
1283 oob += chip->ecc.postpad;
1284 }
1285 }
1286
1287 size = mtd->oobsize - (oob - chip->oob_poi);
1288 if (size)
1289 chip->read_buf(mtd, oob, size);
1290
1291 return 0;
1292}
1293
1294/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001295 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001296 * @mtd: mtd info structure
1297 * @chip: nand chip info structure
1298 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001299 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001300 * @page: page number to read
David A. Marlin068e3c02005-01-24 03:07:46 +00001301 */
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001302static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001303 uint8_t *buf, int oob_required, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001305 int i, eccsize = chip->ecc.size;
1306 int eccbytes = chip->ecc.bytes;
1307 int eccsteps = chip->ecc.steps;
1308 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001309 uint8_t *ecc_calc = chip->buffers->ecccalc;
1310 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001311 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001312 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001313
Brian Norris1fbb9382012-05-02 10:14:55 -07001314 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001315
1316 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1317 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1318
1319 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001320 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001321
1322 eccsteps = chip->ecc.steps;
1323 p = buf;
1324
1325 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1326 int stat;
1327
1328 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001329 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001330 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001331 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001332 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001333 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1334 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001335 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001336 return max_bitflips;
Thomas Gleixner22c60f52005-04-04 19:56:32 +01001337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339/**
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05301340 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001341 * @mtd: mtd info structure
1342 * @chip: nand chip info structure
1343 * @data_offs: offset of requested data within the page
1344 * @readlen: data length
1345 * @bufpoi: buffer to store read data
Huang Shijiee004deb2014-01-03 11:01:40 +08001346 * @page: page number to read
Alexey Korolev3d459552008-05-15 17:23:18 +01001347 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001348static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001349 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1350 int page)
Alexey Korolev3d459552008-05-15 17:23:18 +01001351{
1352 int start_step, end_step, num_steps;
1353 uint32_t *eccpos = chip->ecc.layout->eccpos;
1354 uint8_t *p;
1355 int data_col_addr, i, gaps = 0;
1356 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1357 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Ron4a4163c2014-03-16 04:01:07 +10301358 int index;
Mike Dunn3f91e942012-04-25 12:06:09 -07001359 unsigned int max_bitflips = 0;
Alexey Korolev3d459552008-05-15 17:23:18 +01001360
Brian Norris7854d3f2011-06-23 14:12:08 -07001361 /* Column address within the page aligned to ECC size (256bytes) */
Alexey Korolev3d459552008-05-15 17:23:18 +01001362 start_step = data_offs / chip->ecc.size;
1363 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1364 num_steps = end_step - start_step + 1;
Ron4a4163c2014-03-16 04:01:07 +10301365 index = start_step * chip->ecc.bytes;
Alexey Korolev3d459552008-05-15 17:23:18 +01001366
Brian Norris8b6e50c2011-05-25 14:59:01 -07001367 /* Data size aligned to ECC ecc.size */
Alexey Korolev3d459552008-05-15 17:23:18 +01001368 datafrag_len = num_steps * chip->ecc.size;
1369 eccfrag_len = num_steps * chip->ecc.bytes;
1370
1371 data_col_addr = start_step * chip->ecc.size;
1372 /* If we read not a page aligned data */
1373 if (data_col_addr != 0)
1374 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1375
1376 p = bufpoi + data_col_addr;
1377 chip->read_buf(mtd, p, datafrag_len);
1378
Brian Norris8b6e50c2011-05-25 14:59:01 -07001379 /* Calculate ECC */
Alexey Korolev3d459552008-05-15 17:23:18 +01001380 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1381 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1382
Brian Norris8b6e50c2011-05-25 14:59:01 -07001383 /*
1384 * The performance is faster if we position offsets according to
Brian Norris7854d3f2011-06-23 14:12:08 -07001385 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
Brian Norris8b6e50c2011-05-25 14:59:01 -07001386 */
Alexey Korolev3d459552008-05-15 17:23:18 +01001387 for (i = 0; i < eccfrag_len - 1; i++) {
Ron47570bb12014-03-16 04:01:08 +10301388 if (eccpos[i + index] + 1 != eccpos[i + index + 1]) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001389 gaps = 1;
1390 break;
1391 }
1392 }
1393 if (gaps) {
1394 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1395 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1396 } else {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001397 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07001398 * Send the command to read the particular ECC bytes take care
Brian Norris8b6e50c2011-05-25 14:59:01 -07001399 * about buswidth alignment in read_buf.
1400 */
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001401 aligned_pos = eccpos[index] & ~(busw - 1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001402 aligned_len = eccfrag_len;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001403 if (eccpos[index] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001404 aligned_len++;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001405 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Alexey Korolev3d459552008-05-15 17:23:18 +01001406 aligned_len++;
1407
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001408 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1409 mtd->writesize + aligned_pos, -1);
Alexey Korolev3d459552008-05-15 17:23:18 +01001410 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1411 }
1412
1413 for (i = 0; i < eccfrag_len; i++)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001414 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Alexey Korolev3d459552008-05-15 17:23:18 +01001415
1416 p = bufpoi + data_col_addr;
1417 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1418 int stat;
1419
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001420 stat = chip->ecc.correct(mtd, p,
1421 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001422 if (stat < 0) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001423 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001424 } else {
Alexey Korolev3d459552008-05-15 17:23:18 +01001425 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001426 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1427 }
Alexey Korolev3d459552008-05-15 17:23:18 +01001428 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001429 return max_bitflips;
Alexey Korolev3d459552008-05-15 17:23:18 +01001430}
1431
1432/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001433 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001434 * @mtd: mtd info structure
1435 * @chip: nand chip info structure
1436 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001437 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001438 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001439 *
Brian Norris7854d3f2011-06-23 14:12:08 -07001440 * Not for syndrome calculating ECC controllers which need a special oob layout.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001441 */
1442static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001443 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001444{
1445 int i, eccsize = chip->ecc.size;
1446 int eccbytes = chip->ecc.bytes;
1447 int eccsteps = chip->ecc.steps;
1448 uint8_t *p = buf;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001449 uint8_t *ecc_calc = chip->buffers->ecccalc;
1450 uint8_t *ecc_code = chip->buffers->ecccode;
Ben Dooks8b099a32007-05-28 19:17:54 +01001451 uint32_t *eccpos = chip->ecc.layout->eccpos;
Mike Dunn3f91e942012-04-25 12:06:09 -07001452 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001453
1454 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1455 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1456 chip->read_buf(mtd, p, eccsize);
1457 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1458 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001459 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001460
1461 for (i = 0; i < chip->ecc.total; i++)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001462 ecc_code[i] = chip->oob_poi[eccpos[i]];
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001463
1464 eccsteps = chip->ecc.steps;
1465 p = buf;
1466
1467 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1468 int stat;
1469
1470 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -07001471 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001472 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001473 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001474 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001475 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1476 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001477 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001478 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001479}
1480
1481/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001482 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
Brian Norris8b6e50c2011-05-25 14:59:01 -07001483 * @mtd: mtd info structure
1484 * @chip: nand chip info structure
1485 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001486 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001487 * @page: page number to read
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001488 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001489 * Hardware ECC for large page chips, require OOB to be read first. For this
1490 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1491 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1492 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1493 * the data area, by overwriting the NAND manufacturer bad block markings.
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001494 */
1495static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07001496 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001497{
1498 int i, eccsize = chip->ecc.size;
1499 int eccbytes = chip->ecc.bytes;
1500 int eccsteps = chip->ecc.steps;
1501 uint8_t *p = buf;
1502 uint8_t *ecc_code = chip->buffers->ecccode;
1503 uint32_t *eccpos = chip->ecc.layout->eccpos;
1504 uint8_t *ecc_calc = chip->buffers->ecccalc;
Mike Dunn3f91e942012-04-25 12:06:09 -07001505 unsigned int max_bitflips = 0;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001506
1507 /* Read the OOB area first */
1508 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1509 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1510 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1511
1512 for (i = 0; i < chip->ecc.total; i++)
1513 ecc_code[i] = chip->oob_poi[eccpos[i]];
1514
1515 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1516 int stat;
1517
1518 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1519 chip->read_buf(mtd, p, eccsize);
1520 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1521
1522 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Mike Dunn3f91e942012-04-25 12:06:09 -07001523 if (stat < 0) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001524 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001525 } else {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001526 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001527 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1528 }
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001529 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001530 return max_bitflips;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07001531}
1532
1533/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001534 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
Brian Norris8b6e50c2011-05-25 14:59:01 -07001535 * @mtd: mtd info structure
1536 * @chip: nand chip info structure
1537 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -07001538 * @oob_required: caller requires OOB data read to chip->oob_poi
Brian Norris8b6e50c2011-05-25 14:59:01 -07001539 * @page: page number to read
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001540 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001541 * The hw generator calculates the error syndrome automatically. Therefore we
1542 * need a special oob layout and handling.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001543 */
1544static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001545 uint8_t *buf, int oob_required, int page)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001546{
1547 int i, eccsize = chip->ecc.size;
1548 int eccbytes = chip->ecc.bytes;
1549 int eccsteps = chip->ecc.steps;
1550 uint8_t *p = buf;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001551 uint8_t *oob = chip->oob_poi;
Mike Dunn3f91e942012-04-25 12:06:09 -07001552 unsigned int max_bitflips = 0;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001553
1554 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1555 int stat;
1556
1557 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1558 chip->read_buf(mtd, p, eccsize);
1559
1560 if (chip->ecc.prepad) {
1561 chip->read_buf(mtd, oob, chip->ecc.prepad);
1562 oob += chip->ecc.prepad;
1563 }
1564
1565 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1566 chip->read_buf(mtd, oob, eccbytes);
1567 stat = chip->ecc.correct(mtd, p, oob, NULL);
1568
Mike Dunn3f91e942012-04-25 12:06:09 -07001569 if (stat < 0) {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001570 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001571 } else {
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001572 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -07001573 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1574 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001575
1576 oob += eccbytes;
1577
1578 if (chip->ecc.postpad) {
1579 chip->read_buf(mtd, oob, chip->ecc.postpad);
1580 oob += chip->ecc.postpad;
1581 }
1582 }
1583
1584 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04001585 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001586 if (i)
1587 chip->read_buf(mtd, oob, i);
1588
Mike Dunn3f91e942012-04-25 12:06:09 -07001589 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001590}
1591
1592/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001593 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -07001594 * @chip: nand chip structure
1595 * @oob: oob destination address
1596 * @ops: oob ops structure
1597 * @len: size of oob to transfer
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001598 */
1599static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
Vitaly Wool70145682006-11-03 18:20:38 +03001600 struct mtd_oob_ops *ops, size_t len)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001601{
Florian Fainellif8ac0412010-09-07 13:23:43 +02001602 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001603
Brian Norris0612b9d2011-08-30 18:45:40 -07001604 case MTD_OPS_PLACE_OOB:
1605 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001606 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1607 return oob + len;
1608
Brian Norris0612b9d2011-08-30 18:45:40 -07001609 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001610 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001611 uint32_t boffs = 0, roffs = ops->ooboffs;
1612 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001613
Florian Fainellif8ac0412010-09-07 13:23:43 +02001614 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07001615 /* Read request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001616 if (unlikely(roffs)) {
1617 if (roffs >= free->length) {
1618 roffs -= free->length;
1619 continue;
1620 }
1621 boffs = free->offset + roffs;
1622 bytes = min_t(size_t, len,
1623 (free->length - roffs));
1624 roffs = 0;
1625 } else {
1626 bytes = min_t(size_t, len, free->length);
1627 boffs = free->offset;
1628 }
1629 memcpy(oob, chip->oob_poi + boffs, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001630 oob += bytes;
1631 }
1632 return oob;
1633 }
1634 default:
1635 BUG();
1636 }
1637 return NULL;
1638}
1639
1640/**
Brian Norrisba84fb52014-01-03 15:13:33 -08001641 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1642 * @mtd: MTD device structure
1643 * @retry_mode: the retry mode to use
1644 *
1645 * Some vendors supply a special command to shift the Vt threshold, to be used
1646 * when there are too many bitflips in a page (i.e., ECC error). After setting
1647 * a new threshold, the host should retry reading the page.
1648 */
1649static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1650{
1651 struct nand_chip *chip = mtd->priv;
1652
1653 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1654
1655 if (retry_mode >= chip->read_retries)
1656 return -EINVAL;
1657
1658 if (!chip->setup_read_retry)
1659 return -EOPNOTSUPP;
1660
1661 return chip->setup_read_retry(mtd, retry_mode);
1662}
1663
1664/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001665 * nand_do_read_ops - [INTERN] Read data with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001666 * @mtd: MTD device structure
1667 * @from: offset to read from
1668 * @ops: oob ops structure
David A. Marlin068e3c02005-01-24 03:07:46 +00001669 *
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001670 * Internal function. Called with chip held.
David A. Marlin068e3c02005-01-24 03:07:46 +00001671 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001672static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1673 struct mtd_oob_ops *ops)
David A. Marlin068e3c02005-01-24 03:07:46 +00001674{
Brian Norrise47f3db2012-05-02 10:14:56 -07001675 int chipnr, page, realpage, col, bytes, aligned, oob_required;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001676 struct nand_chip *chip = mtd->priv;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001677 int ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001678 uint32_t readlen = ops->len;
Vitaly Wool70145682006-11-03 18:20:38 +03001679 uint32_t oobreadlen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07001680 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky9aca3342010-02-22 20:39:35 +02001681 mtd->oobavail : mtd->oobsize;
1682
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001683 uint8_t *bufpoi, *oob, *buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04001684 int use_bufpoi;
Mike Dunnedbc45402012-04-25 12:06:11 -07001685 unsigned int max_bitflips = 0;
Brian Norrisba84fb52014-01-03 15:13:33 -08001686 int retry_mode = 0;
Brian Norrisb72f3df2013-12-03 11:04:14 -08001687 bool ecc_fail = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001689 chipnr = (int)(from >> chip->chip_shift);
1690 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001692 realpage = (int)(from >> chip->page_shift);
1693 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001695 col = (int)(from & (mtd->writesize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001697 buf = ops->datbuf;
1698 oob = ops->oobbuf;
Brian Norrise47f3db2012-05-02 10:14:56 -07001699 oob_required = oob ? 1 : 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001700
Florian Fainellif8ac0412010-09-07 13:23:43 +02001701 while (1) {
Brian Norrisb72f3df2013-12-03 11:04:14 -08001702 unsigned int ecc_failures = mtd->ecc_stats.failed;
1703
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001704 bytes = min(mtd->writesize - col, readlen);
1705 aligned = (bytes == mtd->writesize);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001706
Kamal Dasu66507c72014-05-01 20:51:19 -04001707 if (!aligned)
1708 use_bufpoi = 1;
1709 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
1710 use_bufpoi = !virt_addr_valid(buf);
1711 else
1712 use_bufpoi = 0;
1713
Brian Norris8b6e50c2011-05-25 14:59:01 -07001714 /* Is the current page in the buffer? */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001715 if (realpage != chip->pagebuf || oob) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001716 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1717
1718 if (use_bufpoi && aligned)
1719 pr_debug("%s: using read bounce buffer for buf@%p\n",
1720 __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Brian Norrisba84fb52014-01-03 15:13:33 -08001722read_retry:
Brian Norrisc00a0992012-05-01 17:12:54 -07001723 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Mike Dunnedbc45402012-04-25 12:06:11 -07001725 /*
1726 * Now read the page into the buffer. Absent an error,
1727 * the read methods return max bitflips per ecc step.
1728 */
Brian Norris0612b9d2011-08-30 18:45:40 -07001729 if (unlikely(ops->mode == MTD_OPS_RAW))
Brian Norris1fbb9382012-05-02 10:14:55 -07001730 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001731 oob_required,
1732 page);
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001733 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
1734 !oob)
Florian Fainelli7351d3a2010-09-07 13:23:45 +02001735 ret = chip->ecc.read_subpage(mtd, chip,
Huang Shijiee004deb2014-01-03 11:01:40 +08001736 col, bytes, bufpoi,
1737 page);
David Woodhouse956e9442006-09-25 17:12:39 +01001738 else
Sneha Narnakaje46a8cf22009-09-18 12:51:46 -07001739 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Brian Norrise47f3db2012-05-02 10:14:56 -07001740 oob_required, page);
Brian Norris6d77b9d2011-09-07 13:13:40 -07001741 if (ret < 0) {
Kamal Dasu66507c72014-05-01 20:51:19 -04001742 if (use_bufpoi)
Brian Norris6d77b9d2011-09-07 13:13:40 -07001743 /* Invalidate page cache */
1744 chip->pagebuf = -1;
David Woodhousee0c7d762006-05-13 18:07:53 +01001745 break;
Brian Norris6d77b9d2011-09-07 13:13:40 -07001746 }
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001747
Mike Dunnedbc45402012-04-25 12:06:11 -07001748 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1749
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001750 /* Transfer not aligned data */
Kamal Dasu66507c72014-05-01 20:51:19 -04001751 if (use_bufpoi) {
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05001752 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Brian Norrisb72f3df2013-12-03 11:04:14 -08001753 !(mtd->ecc_stats.failed - ecc_failures) &&
Mike Dunnedbc45402012-04-25 12:06:11 -07001754 (ops->mode != MTD_OPS_RAW)) {
Alexey Korolev3d459552008-05-15 17:23:18 +01001755 chip->pagebuf = realpage;
Mike Dunnedbc45402012-04-25 12:06:11 -07001756 chip->pagebuf_bitflips = ret;
1757 } else {
Brian Norris6d77b9d2011-09-07 13:13:40 -07001758 /* Invalidate page cache */
1759 chip->pagebuf = -1;
Mike Dunnedbc45402012-04-25 12:06:11 -07001760 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001761 memcpy(buf, chip->buffers->databuf + col, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001763
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001764 if (unlikely(oob)) {
Maxim Levitskyb64d39d2010-02-22 20:39:37 +02001765 int toread = min(oobreadlen, max_oobsize);
1766
1767 if (toread) {
1768 oob = nand_transfer_oob(chip,
1769 oob, ops, toread);
1770 oobreadlen -= toread;
1771 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001772 }
Brian Norris5bc7c332013-03-13 09:51:31 -07001773
1774 if (chip->options & NAND_NEED_READRDY) {
1775 /* Apply delay or wait for ready/busy pin */
1776 if (!chip->dev_ready)
1777 udelay(chip->chip_delay);
1778 else
1779 nand_wait_ready(mtd);
1780 }
Brian Norrisb72f3df2013-12-03 11:04:14 -08001781
Brian Norrisba84fb52014-01-03 15:13:33 -08001782 if (mtd->ecc_stats.failed - ecc_failures) {
Brian Norris28fa65e2014-02-12 16:08:28 -08001783 if (retry_mode + 1 < chip->read_retries) {
Brian Norrisba84fb52014-01-03 15:13:33 -08001784 retry_mode++;
1785 ret = nand_setup_read_retry(mtd,
1786 retry_mode);
1787 if (ret < 0)
1788 break;
1789
1790 /* Reset failures; retry */
1791 mtd->ecc_stats.failed = ecc_failures;
1792 goto read_retry;
1793 } else {
1794 /* No more retry modes; real failure */
1795 ecc_fail = true;
1796 }
1797 }
1798
1799 buf += bytes;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001800 } else {
David Woodhouse4bf63fc2006-09-25 17:08:04 +01001801 memcpy(buf, chip->buffers->databuf + col, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001802 buf += bytes;
Mike Dunnedbc45402012-04-25 12:06:11 -07001803 max_bitflips = max_t(unsigned int, max_bitflips,
1804 chip->pagebuf_bitflips);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001807 readlen -= bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001808
Brian Norrisba84fb52014-01-03 15:13:33 -08001809 /* Reset to retry mode 0 */
1810 if (retry_mode) {
1811 ret = nand_setup_read_retry(mtd, 0);
1812 if (ret < 0)
1813 break;
1814 retry_mode = 0;
1815 }
1816
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001817 if (!readlen)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Brian Norris8b6e50c2011-05-25 14:59:01 -07001820 /* For subsequent reads align to page boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 col = 0;
1822 /* Increment page address */
1823 realpage++;
1824
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001825 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /* Check, if we cross a chip boundary */
1827 if (!page) {
1828 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02001829 chip->select_chip(mtd, -1);
1830 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08001833 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02001835 ops->retlen = ops->len - (size_t) readlen;
Vitaly Wool70145682006-11-03 18:20:38 +03001836 if (oob)
1837 ops->oobretlen = ops->ooblen - oobreadlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Mike Dunn3f91e942012-04-25 12:06:09 -07001839 if (ret < 0)
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001840 return ret;
1841
Brian Norrisb72f3df2013-12-03 11:04:14 -08001842 if (ecc_fail)
Thomas Gleixner9a1fcdf2006-05-29 14:56:39 +02001843 return -EBADMSG;
1844
Mike Dunnedbc45402012-04-25 12:06:11 -07001845 return max_bitflips;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001846}
1847
1848/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001849 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Brian Norris8b6e50c2011-05-25 14:59:01 -07001850 * @mtd: MTD device structure
1851 * @from: offset to read from
1852 * @len: number of bytes to read
1853 * @retlen: pointer to variable to store the number of read bytes
1854 * @buf: the databuffer to put data
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001855 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001856 * Get hold of the chip and call nand_do_read.
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001857 */
1858static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1859 size_t *retlen, uint8_t *buf)
1860{
Brian Norris4a89ff82011-08-30 18:45:45 -07001861 struct mtd_oob_ops ops;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001862 int ret;
1863
Huang Shijie6a8214a2012-11-19 14:43:30 +08001864 nand_get_device(mtd, FL_READING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08001865 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07001866 ops.len = len;
1867 ops.datbuf = buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08001868 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07001869 ret = nand_do_read_ops(mtd, from, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07001870 *retlen = ops.retlen;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001871 nand_release_device(mtd);
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02001872 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873}
1874
1875/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001876 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001877 * @mtd: mtd info structure
1878 * @chip: nand chip info structure
1879 * @page: page number to read
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001880 */
1881static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001882 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001883{
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001884 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001885 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001886 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001887}
1888
1889/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001890 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001891 * with syndromes
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 */
1896static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001897 int page)
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001898{
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001899 int length = mtd->oobsize;
1900 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1901 int eccsize = chip->ecc.size;
Baruch Siach2ea69d22015-01-22 15:23:05 +02001902 uint8_t *bufpoi = chip->oob_poi;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001903 int i, toread, sndrnd = 0, pos;
1904
1905 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1906 for (i = 0; i < chip->ecc.steps; i++) {
1907 if (sndrnd) {
1908 pos = eccsize + i * (eccsize + chunk);
1909 if (mtd->writesize > 512)
1910 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1911 else
1912 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1913 } else
1914 sndrnd = 1;
1915 toread = min_t(int, length, chunk);
1916 chip->read_buf(mtd, bufpoi, toread);
1917 bufpoi += toread;
1918 length -= toread;
1919 }
1920 if (length > 0)
1921 chip->read_buf(mtd, bufpoi, length);
1922
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001923 return 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001924}
1925
1926/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001927 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07001928 * @mtd: mtd info structure
1929 * @chip: nand chip info structure
1930 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001931 */
1932static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1933 int page)
1934{
1935 int status = 0;
1936 const uint8_t *buf = chip->oob_poi;
1937 int length = mtd->oobsize;
1938
1939 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1940 chip->write_buf(mtd, buf, length);
1941 /* Send command to program the OOB data */
1942 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1943
1944 status = chip->waitfunc(mtd, chip);
1945
Savin Zlobec0d420f92006-06-21 11:51:20 +02001946 return status & NAND_STATUS_FAIL ? -EIO : 0;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001947}
1948
1949/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001950 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07001951 * with syndrome - only for large page flash
1952 * @mtd: mtd info structure
1953 * @chip: nand chip info structure
1954 * @page: page number to write
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001955 */
1956static int nand_write_oob_syndrome(struct mtd_info *mtd,
1957 struct nand_chip *chip, int page)
1958{
1959 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1960 int eccsize = chip->ecc.size, length = mtd->oobsize;
1961 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1962 const uint8_t *bufpoi = chip->oob_poi;
1963
1964 /*
1965 * data-ecc-data-ecc ... ecc-oob
1966 * or
1967 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1968 */
1969 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1970 pos = steps * (eccsize + chunk);
1971 steps = 0;
1972 } else
Vitaly Wool8b0036e2006-07-11 09:11:25 +02001973 pos = eccsize;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02001974
1975 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1976 for (i = 0; i < steps; i++) {
1977 if (sndcmd) {
1978 if (mtd->writesize <= 512) {
1979 uint32_t fill = 0xFFFFFFFF;
1980
1981 len = eccsize;
1982 while (len > 0) {
1983 int num = min_t(int, len, 4);
1984 chip->write_buf(mtd, (uint8_t *)&fill,
1985 num);
1986 len -= num;
1987 }
1988 } else {
1989 pos = eccsize + i * (eccsize + chunk);
1990 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1991 }
1992 } else
1993 sndcmd = 1;
1994 len = min_t(int, length, chunk);
1995 chip->write_buf(mtd, bufpoi, len);
1996 bufpoi += len;
1997 length -= len;
1998 }
1999 if (length > 0)
2000 chip->write_buf(mtd, bufpoi, length);
2001
2002 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2003 status = chip->waitfunc(mtd, chip);
2004
2005 return status & NAND_STATUS_FAIL ? -EIO : 0;
2006}
2007
2008/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002009 * nand_do_read_oob - [INTERN] NAND read out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002010 * @mtd: MTD device structure
2011 * @from: offset to read from
2012 * @ops: oob operations description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002014 * NAND read out-of-band data from the spare area.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002016static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2017 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
Brian Norrisc00a0992012-05-01 17:12:54 -07002019 int page, realpage, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002020 struct nand_chip *chip = mtd->priv;
Brian Norris041e4572011-06-23 16:45:24 -07002021 struct mtd_ecc_stats stats;
Vitaly Wool70145682006-11-03 18:20:38 +03002022 int readlen = ops->ooblen;
2023 int len;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002024 uint8_t *buf = ops->oobbuf;
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002025 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Brian Norris289c0522011-07-19 10:06:09 -07002027 pr_debug("%s: from = 0x%08Lx, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302028 __func__, (unsigned long long)from, readlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Brian Norris041e4572011-06-23 16:45:24 -07002030 stats = mtd->ecc_stats;
2031
Brian Norris0612b9d2011-08-30 18:45:40 -07002032 if (ops->mode == MTD_OPS_AUTO_OOB)
Vitaly Wool70145682006-11-03 18:20:38 +03002033 len = chip->ecc.layout->oobavail;
Adrian Hunter03736152007-01-31 17:58:29 +02002034 else
2035 len = mtd->oobsize;
2036
2037 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002038 pr_debug("%s: attempt to start read outside oob\n",
2039 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002040 return -EINVAL;
2041 }
2042
2043 /* Do not allow reads past end of device */
2044 if (unlikely(from >= mtd->size ||
2045 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2046 (from >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002047 pr_debug("%s: attempt to read beyond end of device\n",
2048 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002049 return -EINVAL;
2050 }
Vitaly Wool70145682006-11-03 18:20:38 +03002051
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002052 chipnr = (int)(from >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002053 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002055 /* Shift to get page */
2056 realpage = (int)(from >> chip->page_shift);
2057 page = realpage & chip->pagemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Florian Fainellif8ac0412010-09-07 13:23:43 +02002059 while (1) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002060 if (ops->mode == MTD_OPS_RAW)
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002061 ret = chip->ecc.read_oob_raw(mtd, chip, page);
Brian Norrisc46f6482011-08-30 18:45:38 -07002062 else
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002063 ret = chip->ecc.read_oob(mtd, chip, page);
2064
2065 if (ret < 0)
2066 break;
Vitaly Wool70145682006-11-03 18:20:38 +03002067
2068 len = min(len, readlen);
2069 buf = nand_transfer_oob(chip, buf, ops, len);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002070
Brian Norris5bc7c332013-03-13 09:51:31 -07002071 if (chip->options & NAND_NEED_READRDY) {
2072 /* Apply delay or wait for ready/busy pin */
2073 if (!chip->dev_ready)
2074 udelay(chip->chip_delay);
2075 else
2076 nand_wait_ready(mtd);
2077 }
2078
Vitaly Wool70145682006-11-03 18:20:38 +03002079 readlen -= len;
Savin Zlobec0d420f92006-06-21 11:51:20 +02002080 if (!readlen)
2081 break;
2082
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002083 /* Increment page address */
2084 realpage++;
2085
2086 page = realpage & chip->pagemask;
2087 /* Check, if we cross a chip boundary */
2088 if (!page) {
2089 chipnr++;
2090 chip->select_chip(mtd, -1);
2091 chip->select_chip(mtd, chipnr);
2092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
Huang Shijieb0bb6902012-11-19 14:43:29 +08002094 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Shmulik Ladkani1951f2f2012-05-09 13:13:34 +03002096 ops->oobretlen = ops->ooblen - readlen;
2097
2098 if (ret < 0)
2099 return ret;
Brian Norris041e4572011-06-23 16:45:24 -07002100
2101 if (mtd->ecc_stats.failed - stats.failed)
2102 return -EBADMSG;
2103
2104 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
2107/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002108 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002109 * @mtd: MTD device structure
2110 * @from: offset to read from
2111 * @ops: oob operation description structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002113 * NAND read data and/or out-of-band data.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002115static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2116 struct mtd_oob_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002118 int ret = -ENOTSUPP;
2119
2120 ops->retlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /* Do not allow reads past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002123 if (ops->datbuf && (from + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002124 pr_debug("%s: attempt to read beyond end of device\n",
2125 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return -EINVAL;
2127 }
2128
Huang Shijie6a8214a2012-11-19 14:43:30 +08002129 nand_get_device(mtd, FL_READING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Florian Fainellif8ac0412010-09-07 13:23:43 +02002131 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002132 case MTD_OPS_PLACE_OOB:
2133 case MTD_OPS_AUTO_OOB:
2134 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002135 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002136
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002137 default:
2138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002141 if (!ops->datbuf)
2142 ret = nand_do_read_oob(mtd, from, ops);
2143 else
2144 ret = nand_do_read_ops(mtd, from, ops);
2145
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002146out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002148 return ret;
2149}
2150
2151
2152/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002153 * nand_write_page_raw - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002154 * @mtd: mtd info structure
2155 * @chip: nand chip info structure
2156 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002157 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002158 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002159 *
Brian Norris7854d3f2011-06-23 14:12:08 -07002160 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002161 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002162static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002163 const uint8_t *buf, int oob_required, int page)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002164{
2165 chip->write_buf(mtd, buf, mtd->writesize);
Brian Norris279f08d2012-05-02 10:15:03 -07002166 if (oob_required)
2167 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002168
2169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002172/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002173 * nand_write_page_raw_syndrome - [INTERN] raw page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002174 * @mtd: mtd info structure
2175 * @chip: nand chip info structure
2176 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002177 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002178 * @page: page number to write
David Brownell52ff49d2009-03-04 12:01:36 -08002179 *
2180 * We need a special oob layout and handling even when ECC isn't checked.
2181 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002182static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002183 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002184 const uint8_t *buf, int oob_required,
2185 int page)
David Brownell52ff49d2009-03-04 12:01:36 -08002186{
2187 int eccsize = chip->ecc.size;
2188 int eccbytes = chip->ecc.bytes;
2189 uint8_t *oob = chip->oob_poi;
2190 int steps, size;
2191
2192 for (steps = chip->ecc.steps; steps > 0; steps--) {
2193 chip->write_buf(mtd, buf, eccsize);
2194 buf += eccsize;
2195
2196 if (chip->ecc.prepad) {
2197 chip->write_buf(mtd, oob, chip->ecc.prepad);
2198 oob += chip->ecc.prepad;
2199 }
2200
Boris BREZILLON60c3bc12014-02-01 19:10:28 +01002201 chip->write_buf(mtd, oob, eccbytes);
David Brownell52ff49d2009-03-04 12:01:36 -08002202 oob += eccbytes;
2203
2204 if (chip->ecc.postpad) {
2205 chip->write_buf(mtd, oob, chip->ecc.postpad);
2206 oob += chip->ecc.postpad;
2207 }
2208 }
2209
2210 size = mtd->oobsize - (oob - chip->oob_poi);
2211 if (size)
2212 chip->write_buf(mtd, oob, size);
Josh Wufdbad98d2012-06-25 18:07:45 +08002213
2214 return 0;
David Brownell52ff49d2009-03-04 12:01:36 -08002215}
2216/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002217 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002218 * @mtd: mtd info structure
2219 * @chip: nand chip info structure
2220 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002221 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002222 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002223 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002224static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002225 const uint8_t *buf, int oob_required,
2226 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002227{
2228 int i, eccsize = chip->ecc.size;
2229 int eccbytes = chip->ecc.bytes;
2230 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002231 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002232 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002233 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002234
Brian Norris7854d3f2011-06-23 14:12:08 -07002235 /* Software ECC calculation */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002236 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2237 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002238
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002239 for (i = 0; i < chip->ecc.total; i++)
2240 chip->oob_poi[eccpos[i]] = ecc_calc[i];
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002241
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002242 return chip->ecc.write_page_raw(mtd, chip, buf, 1, page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002243}
2244
2245/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002246 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002247 * @mtd: mtd info structure
2248 * @chip: nand chip info structure
2249 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002250 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002251 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002252 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002253static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002254 const uint8_t *buf, int oob_required,
2255 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002256{
2257 int i, eccsize = chip->ecc.size;
2258 int eccbytes = chip->ecc.bytes;
2259 int eccsteps = chip->ecc.steps;
David Woodhouse4bf63fc2006-09-25 17:08:04 +01002260 uint8_t *ecc_calc = chip->buffers->ecccalc;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002261 const uint8_t *p = buf;
Ben Dooks8b099a32007-05-28 19:17:54 +01002262 uint32_t *eccpos = chip->ecc.layout->eccpos;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002263
2264 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2265 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
David Woodhouse29da9ce2006-05-26 23:05:44 +01002266 chip->write_buf(mtd, p, eccsize);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002267 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2268 }
2269
2270 for (i = 0; i < chip->ecc.total; i++)
2271 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2272
2273 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Josh Wufdbad98d2012-06-25 18:07:45 +08002274
2275 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002276}
2277
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302278
2279/**
Brian Norris73c8aaf2015-02-28 02:04:18 -08002280 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302281 * @mtd: mtd info structure
2282 * @chip: nand chip info structure
Brian Norrisd6a950802013-08-08 17:16:36 -07002283 * @offset: column address of subpage within the page
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302284 * @data_len: data length
Brian Norrisd6a950802013-08-08 17:16:36 -07002285 * @buf: data buffer
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302286 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002287 * @page: page number to write
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302288 */
2289static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2290 struct nand_chip *chip, uint32_t offset,
Brian Norrisd6a950802013-08-08 17:16:36 -07002291 uint32_t data_len, const uint8_t *buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002292 int oob_required, int page)
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302293{
2294 uint8_t *oob_buf = chip->oob_poi;
2295 uint8_t *ecc_calc = chip->buffers->ecccalc;
2296 int ecc_size = chip->ecc.size;
2297 int ecc_bytes = chip->ecc.bytes;
2298 int ecc_steps = chip->ecc.steps;
2299 uint32_t *eccpos = chip->ecc.layout->eccpos;
2300 uint32_t start_step = offset / ecc_size;
2301 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2302 int oob_bytes = mtd->oobsize / ecc_steps;
2303 int step, i;
2304
2305 for (step = 0; step < ecc_steps; step++) {
2306 /* configure controller for WRITE access */
2307 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2308
2309 /* write data (untouched subpages already masked by 0xFF) */
Brian Norrisd6a950802013-08-08 17:16:36 -07002310 chip->write_buf(mtd, buf, ecc_size);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302311
2312 /* mask ECC of un-touched subpages by padding 0xFF */
2313 if ((step < start_step) || (step > end_step))
2314 memset(ecc_calc, 0xff, ecc_bytes);
2315 else
Brian Norrisd6a950802013-08-08 17:16:36 -07002316 chip->ecc.calculate(mtd, buf, ecc_calc);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302317
2318 /* mask OOB of un-touched subpages by padding 0xFF */
2319 /* if oob_required, preserve OOB metadata of written subpage */
2320 if (!oob_required || (step < start_step) || (step > end_step))
2321 memset(oob_buf, 0xff, oob_bytes);
2322
Brian Norrisd6a950802013-08-08 17:16:36 -07002323 buf += ecc_size;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302324 ecc_calc += ecc_bytes;
2325 oob_buf += oob_bytes;
2326 }
2327
2328 /* copy calculated ECC for whole page to chip->buffer->oob */
2329 /* this include masked-value(0xFF) for unwritten subpages */
2330 ecc_calc = chip->buffers->ecccalc;
2331 for (i = 0; i < chip->ecc.total; i++)
2332 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2333
2334 /* write OOB buffer to NAND device */
2335 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2336
2337 return 0;
2338}
2339
2340
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002341/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002342 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
Brian Norris8b6e50c2011-05-25 14:59:01 -07002343 * @mtd: mtd info structure
2344 * @chip: nand chip info structure
2345 * @buf: data buffer
Brian Norris1fbb9382012-05-02 10:14:55 -07002346 * @oob_required: must write chip->oob_poi to OOB
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002347 * @page: page number to write
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002348 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002349 * The hw generator calculates the error syndrome automatically. Therefore we
2350 * need a special oob layout and handling.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002351 */
Josh Wufdbad98d2012-06-25 18:07:45 +08002352static int nand_write_page_syndrome(struct mtd_info *mtd,
Brian Norris1fbb9382012-05-02 10:14:55 -07002353 struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002354 const uint8_t *buf, int oob_required,
2355 int page)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002356{
2357 int i, eccsize = chip->ecc.size;
2358 int eccbytes = chip->ecc.bytes;
2359 int eccsteps = chip->ecc.steps;
2360 const uint8_t *p = buf;
2361 uint8_t *oob = chip->oob_poi;
2362
2363 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2364
2365 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2366 chip->write_buf(mtd, p, eccsize);
2367
2368 if (chip->ecc.prepad) {
2369 chip->write_buf(mtd, oob, chip->ecc.prepad);
2370 oob += chip->ecc.prepad;
2371 }
2372
2373 chip->ecc.calculate(mtd, p, oob);
2374 chip->write_buf(mtd, oob, eccbytes);
2375 oob += eccbytes;
2376
2377 if (chip->ecc.postpad) {
2378 chip->write_buf(mtd, oob, chip->ecc.postpad);
2379 oob += chip->ecc.postpad;
2380 }
2381 }
2382
2383 /* Calculate remaining oob bytes */
Vitaly Wool7e4178f2006-06-07 09:34:37 +04002384 i = mtd->oobsize - (oob - chip->oob_poi);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002385 if (i)
2386 chip->write_buf(mtd, oob, i);
Josh Wufdbad98d2012-06-25 18:07:45 +08002387
2388 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002389}
2390
2391/**
David Woodhouse956e9442006-09-25 17:12:39 +01002392 * nand_write_page - [REPLACEABLE] write one page
Brian Norris8b6e50c2011-05-25 14:59:01 -07002393 * @mtd: MTD device structure
2394 * @chip: NAND chip descriptor
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302395 * @offset: address offset within the page
2396 * @data_len: length of actual data to be written
Brian Norris8b6e50c2011-05-25 14:59:01 -07002397 * @buf: the data to write
Brian Norris1fbb9382012-05-02 10:14:55 -07002398 * @oob_required: must write chip->oob_poi to OOB
Brian Norris8b6e50c2011-05-25 14:59:01 -07002399 * @page: page number to write
2400 * @cached: cached programming
2401 * @raw: use _raw version of write_page
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002402 */
2403static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302404 uint32_t offset, int data_len, const uint8_t *buf,
2405 int oob_required, int page, int cached, int raw)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002406{
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302407 int status, subpage;
2408
2409 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2410 chip->ecc.write_subpage)
2411 subpage = offset || (data_len < mtd->writesize);
2412 else
2413 subpage = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002414
2415 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2416
David Woodhouse956e9442006-09-25 17:12:39 +01002417 if (unlikely(raw))
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302418 status = chip->ecc.write_page_raw(mtd, chip, buf,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002419 oob_required, page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302420 else if (subpage)
2421 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002422 buf, oob_required, page);
David Woodhouse956e9442006-09-25 17:12:39 +01002423 else
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02002424 status = chip->ecc.write_page(mtd, chip, buf, oob_required,
2425 page);
Josh Wufdbad98d2012-06-25 18:07:45 +08002426
2427 if (status < 0)
2428 return status;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002429
2430 /*
Brian Norris7854d3f2011-06-23 14:12:08 -07002431 * Cached progamming disabled for now. Not sure if it's worth the
Brian Norris8b6e50c2011-05-25 14:59:01 -07002432 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002433 */
2434 cached = 0;
2435
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +02002436 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002437
2438 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002439 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002440 /*
2441 * See if operation failed and additional status checks are
Brian Norris8b6e50c2011-05-25 14:59:01 -07002442 * available.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002443 */
2444 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2445 status = chip->errstat(mtd, chip, FL_WRITING, status,
2446 page);
2447
2448 if (status & NAND_STATUS_FAIL)
2449 return -EIO;
2450 } else {
2451 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002452 status = chip->waitfunc(mtd, chip);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002453 }
2454
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002455 return 0;
2456}
2457
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002458/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002459 * nand_fill_oob - [INTERN] Transfer client buffer to oob
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002460 * @mtd: MTD device structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07002461 * @oob: oob data buffer
2462 * @len: oob data write length
2463 * @ops: oob ops structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002464 */
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002465static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2466 struct mtd_oob_ops *ops)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002467{
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002468 struct nand_chip *chip = mtd->priv;
2469
2470 /*
2471 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2472 * data from a previous OOB read.
2473 */
2474 memset(chip->oob_poi, 0xff, mtd->oobsize);
2475
Florian Fainellif8ac0412010-09-07 13:23:43 +02002476 switch (ops->mode) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002477
Brian Norris0612b9d2011-08-30 18:45:40 -07002478 case MTD_OPS_PLACE_OOB:
2479 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002480 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2481 return oob + len;
2482
Brian Norris0612b9d2011-08-30 18:45:40 -07002483 case MTD_OPS_AUTO_OOB: {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002484 struct nand_oobfree *free = chip->ecc.layout->oobfree;
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002485 uint32_t boffs = 0, woffs = ops->ooboffs;
2486 size_t bytes = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002487
Florian Fainellif8ac0412010-09-07 13:23:43 +02002488 for (; free->length && len; free++, len -= bytes) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07002489 /* Write request not from offset 0? */
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002490 if (unlikely(woffs)) {
2491 if (woffs >= free->length) {
2492 woffs -= free->length;
2493 continue;
2494 }
2495 boffs = free->offset + woffs;
2496 bytes = min_t(size_t, len,
2497 (free->length - woffs));
2498 woffs = 0;
2499 } else {
2500 bytes = min_t(size_t, len, free->length);
2501 boffs = free->offset;
2502 }
Vitaly Wool8b0036e2006-07-11 09:11:25 +02002503 memcpy(chip->oob_poi + boffs, oob, bytes);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002504 oob += bytes;
2505 }
2506 return oob;
2507 }
2508 default:
2509 BUG();
2510 }
2511 return NULL;
2512}
2513
Florian Fainellif8ac0412010-09-07 13:23:43 +02002514#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002515
2516/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002517 * nand_do_write_ops - [INTERN] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002518 * @mtd: MTD device structure
2519 * @to: offset to write to
2520 * @ops: oob operations description structure
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002521 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002522 * NAND write with ECC.
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002523 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002524static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2525 struct mtd_oob_ops *ops)
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002526{
Thomas Gleixner29072b92006-09-28 15:38:36 +02002527 int chipnr, realpage, page, blockmask, column;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002528 struct nand_chip *chip = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002529 uint32_t writelen = ops->len;
Maxim Levitsky782ce792010-02-22 20:39:36 +02002530
2531 uint32_t oobwritelen = ops->ooblen;
Brian Norris0612b9d2011-08-30 18:45:40 -07002532 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Maxim Levitsky782ce792010-02-22 20:39:36 +02002533 mtd->oobavail : mtd->oobsize;
2534
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002535 uint8_t *oob = ops->oobbuf;
2536 uint8_t *buf = ops->datbuf;
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302537 int ret;
Brian Norrise47f3db2012-05-02 10:14:56 -07002538 int oob_required = oob ? 1 : 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002539
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002540 ops->retlen = 0;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002541 if (!writelen)
2542 return 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002543
Brian Norris8b6e50c2011-05-25 14:59:01 -07002544 /* Reject writes, which are not page aligned */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002545 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002546 pr_notice("%s: attempt to write non page aligned data\n",
2547 __func__);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002548 return -EINVAL;
2549 }
2550
Thomas Gleixner29072b92006-09-28 15:38:36 +02002551 column = to & (mtd->writesize - 1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002552
Thomas Gleixner6a930962006-06-28 00:11:45 +02002553 chipnr = (int)(to >> chip->chip_shift);
2554 chip->select_chip(mtd, chipnr);
2555
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002556 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002557 if (nand_check_wp(mtd)) {
2558 ret = -EIO;
2559 goto err_out;
2560 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002561
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002562 realpage = (int)(to >> chip->page_shift);
2563 page = realpage & chip->pagemask;
2564 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2565
2566 /* Invalidate the page cache, when we write to the cached page */
Brian Norris537ab1b2014-07-21 19:08:03 -07002567 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2568 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002569 chip->pagebuf = -1;
2570
Maxim Levitsky782ce792010-02-22 20:39:36 +02002571 /* Don't allow multipage oob writes with offset */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002572 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2573 ret = -EINVAL;
2574 goto err_out;
2575 }
Maxim Levitsky782ce792010-02-22 20:39:36 +02002576
Florian Fainellif8ac0412010-09-07 13:23:43 +02002577 while (1) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02002578 int bytes = mtd->writesize;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002579 int cached = writelen > bytes && page != blockmask;
Thomas Gleixner29072b92006-09-28 15:38:36 +02002580 uint8_t *wbuf = buf;
Kamal Dasu66507c72014-05-01 20:51:19 -04002581 int use_bufpoi;
2582 int part_pagewr = (column || writelen < (mtd->writesize - 1));
Thomas Gleixner29072b92006-09-28 15:38:36 +02002583
Kamal Dasu66507c72014-05-01 20:51:19 -04002584 if (part_pagewr)
2585 use_bufpoi = 1;
2586 else if (chip->options & NAND_USE_BOUNCE_BUFFER)
2587 use_bufpoi = !virt_addr_valid(buf);
2588 else
2589 use_bufpoi = 0;
2590
2591 /* Partial page write?, or need to use bounce buffer */
2592 if (use_bufpoi) {
2593 pr_debug("%s: using write bounce buffer for buf@%p\n",
2594 __func__, buf);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002595 cached = 0;
Kamal Dasu66507c72014-05-01 20:51:19 -04002596 if (part_pagewr)
2597 bytes = min_t(int, bytes - column, writelen);
Thomas Gleixner29072b92006-09-28 15:38:36 +02002598 chip->pagebuf = -1;
2599 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2600 memcpy(&chip->buffers->databuf[column], buf, bytes);
2601 wbuf = chip->buffers->databuf;
2602 }
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002603
Maxim Levitsky782ce792010-02-22 20:39:36 +02002604 if (unlikely(oob)) {
2605 size_t len = min(oobwritelen, oobmaxlen);
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002606 oob = nand_fill_oob(mtd, oob, len, ops);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002607 oobwritelen -= len;
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002608 } else {
2609 /* We still need to erase leftover OOB data */
2610 memset(chip->oob_poi, 0xff, mtd->oobsize);
Maxim Levitsky782ce792010-02-22 20:39:36 +02002611 }
Gupta, Pekon837a6ba2013-03-15 17:55:53 +05302612 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2613 oob_required, page, cached,
2614 (ops->mode == MTD_OPS_RAW));
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002615 if (ret)
2616 break;
2617
2618 writelen -= bytes;
2619 if (!writelen)
2620 break;
2621
Thomas Gleixner29072b92006-09-28 15:38:36 +02002622 column = 0;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002623 buf += bytes;
2624 realpage++;
2625
2626 page = realpage & chip->pagemask;
2627 /* Check, if we cross a chip boundary */
2628 if (!page) {
2629 chipnr++;
2630 chip->select_chip(mtd, -1);
2631 chip->select_chip(mtd, chipnr);
2632 }
2633 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002634
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002635 ops->retlen = ops->len - writelen;
Vitaly Wool70145682006-11-03 18:20:38 +03002636 if (unlikely(oob))
2637 ops->oobretlen = ops->ooblen;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002638
2639err_out:
2640 chip->select_chip(mtd, -1);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02002641 return ret;
2642}
2643
2644/**
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002645 * panic_nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002646 * @mtd: MTD device structure
2647 * @to: offset to write to
2648 * @len: number of bytes to write
2649 * @retlen: pointer to variable to store the number of written bytes
2650 * @buf: the data to write
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002651 *
2652 * NAND write with ECC. Used when performing writes in interrupt context, this
2653 * may for example be called by mtdoops when writing an oops while in panic.
2654 */
2655static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2656 size_t *retlen, const uint8_t *buf)
2657{
2658 struct nand_chip *chip = mtd->priv;
Brian Norris4a89ff82011-08-30 18:45:45 -07002659 struct mtd_oob_ops ops;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002660 int ret;
2661
Brian Norris8b6e50c2011-05-25 14:59:01 -07002662 /* Wait for the device to get ready */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002663 panic_nand_wait(mtd, chip, 400);
2664
Brian Norris8b6e50c2011-05-25 14:59:01 -07002665 /* Grab the device */
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002666 panic_nand_get_device(chip, mtd, FL_WRITING);
2667
Brian Norris0ec56dc2015-02-28 02:02:30 -08002668 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002669 ops.len = len;
2670 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08002671 ops.mode = MTD_OPS_PLACE_OOB;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002672
Brian Norris4a89ff82011-08-30 18:45:45 -07002673 ret = nand_do_write_ops(mtd, to, &ops);
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002674
Brian Norris4a89ff82011-08-30 18:45:45 -07002675 *retlen = ops.retlen;
Simon Kagstrom2af7c652009-10-05 15:55:52 +02002676 return ret;
2677}
2678
2679/**
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002680 * nand_write - [MTD Interface] NAND write with ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07002681 * @mtd: MTD device structure
2682 * @to: offset to write to
2683 * @len: number of bytes to write
2684 * @retlen: pointer to variable to store the number of written bytes
2685 * @buf: the data to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002687 * NAND write with ECC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002689static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002690 size_t *retlen, const uint8_t *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Brian Norris4a89ff82011-08-30 18:45:45 -07002692 struct mtd_oob_ops ops;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002693 int ret;
2694
Huang Shijie6a8214a2012-11-19 14:43:30 +08002695 nand_get_device(mtd, FL_WRITING);
Brian Norris0ec56dc2015-02-28 02:02:30 -08002696 memset(&ops, 0, sizeof(ops));
Brian Norris4a89ff82011-08-30 18:45:45 -07002697 ops.len = len;
2698 ops.datbuf = (uint8_t *)buf;
Huang Shijie11041ae2012-07-03 16:44:14 +08002699 ops.mode = MTD_OPS_PLACE_OOB;
Brian Norris4a89ff82011-08-30 18:45:45 -07002700 ret = nand_do_write_ops(mtd, to, &ops);
Brian Norris4a89ff82011-08-30 18:45:45 -07002701 *retlen = ops.retlen;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002702 nand_release_device(mtd);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002703 return ret;
2704}
2705
2706/**
2707 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002708 * @mtd: MTD device structure
2709 * @to: offset to write to
2710 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002711 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002712 * NAND write out-of-band.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002713 */
2714static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2715 struct mtd_oob_ops *ops)
2716{
Adrian Hunter03736152007-01-31 17:58:29 +02002717 int chipnr, page, status, len;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002718 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Brian Norris289c0522011-07-19 10:06:09 -07002720 pr_debug("%s: to = 0x%08x, len = %i\n",
vimal singh20d8e242009-07-07 15:49:49 +05302721 __func__, (unsigned int)to, (int)ops->ooblen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Brian Norris0612b9d2011-08-30 18:45:40 -07002723 if (ops->mode == MTD_OPS_AUTO_OOB)
Adrian Hunter03736152007-01-31 17:58:29 +02002724 len = chip->ecc.layout->oobavail;
2725 else
2726 len = mtd->oobsize;
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 /* Do not allow write past end of page */
Adrian Hunter03736152007-01-31 17:58:29 +02002729 if ((ops->ooboffs + ops->ooblen) > len) {
Brian Norris289c0522011-07-19 10:06:09 -07002730 pr_debug("%s: attempt to write past end of page\n",
2731 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return -EINVAL;
2733 }
2734
Adrian Hunter03736152007-01-31 17:58:29 +02002735 if (unlikely(ops->ooboffs >= len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002736 pr_debug("%s: attempt to start write outside oob\n",
2737 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002738 return -EINVAL;
2739 }
2740
Jason Liu775adc32011-02-25 13:06:18 +08002741 /* Do not allow write past end of device */
Adrian Hunter03736152007-01-31 17:58:29 +02002742 if (unlikely(to >= mtd->size ||
2743 ops->ooboffs + ops->ooblen >
2744 ((mtd->size >> chip->page_shift) -
2745 (to >> chip->page_shift)) * len)) {
Brian Norris289c0522011-07-19 10:06:09 -07002746 pr_debug("%s: attempt to write beyond end of device\n",
2747 __func__);
Adrian Hunter03736152007-01-31 17:58:29 +02002748 return -EINVAL;
2749 }
2750
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002751 chipnr = (int)(to >> chip->chip_shift);
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002752 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Thomas Gleixner7314e9e2006-05-25 09:51:54 +02002754 /* Shift to get page */
2755 page = (int)(to >> chip->page_shift);
2756
2757 /*
2758 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2759 * of my DiskOnChip 2000 test units) will clear the whole data page too
2760 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2761 * it in the doc2000 driver in August 1999. dwmw2.
2762 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002763 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 /* Check, if it is write protected */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002766 if (nand_check_wp(mtd)) {
2767 chip->select_chip(mtd, -1);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002768 return -EROFS;
Huang Shijieb0bb6902012-11-19 14:43:29 +08002769 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 /* Invalidate the page cache, if we write to the cached page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002772 if (page == chip->pagebuf)
2773 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
THOMSON, Adam (Adam)f7220132011-06-14 16:52:38 +02002775 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
Brian Norris9ce244b2011-08-30 18:45:37 -07002776
Brian Norris0612b9d2011-08-30 18:45:40 -07002777 if (ops->mode == MTD_OPS_RAW)
Brian Norris9ce244b2011-08-30 18:45:37 -07002778 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2779 else
2780 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002781
Huang Shijieb0bb6902012-11-19 14:43:29 +08002782 chip->select_chip(mtd, -1);
2783
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002784 if (status)
2785 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Vitaly Wool70145682006-11-03 18:20:38 +03002787 ops->oobretlen = ops->ooblen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Thomas Gleixner7bc33122006-06-20 20:05:05 +02002789 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002790}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002792/**
2793 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Brian Norris8b6e50c2011-05-25 14:59:01 -07002794 * @mtd: MTD device structure
2795 * @to: offset to write to
2796 * @ops: oob operation description structure
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002797 */
2798static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2799 struct mtd_oob_ops *ops)
2800{
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002801 int ret = -ENOTSUPP;
2802
2803 ops->retlen = 0;
2804
2805 /* Do not allow writes past end of device */
Vitaly Wool70145682006-11-03 18:20:38 +03002806 if (ops->datbuf && (to + ops->len) > mtd->size) {
Brian Norris289c0522011-07-19 10:06:09 -07002807 pr_debug("%s: attempt to write beyond end of device\n",
2808 __func__);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002809 return -EINVAL;
2810 }
2811
Huang Shijie6a8214a2012-11-19 14:43:30 +08002812 nand_get_device(mtd, FL_WRITING);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002813
Florian Fainellif8ac0412010-09-07 13:23:43 +02002814 switch (ops->mode) {
Brian Norris0612b9d2011-08-30 18:45:40 -07002815 case MTD_OPS_PLACE_OOB:
2816 case MTD_OPS_AUTO_OOB:
2817 case MTD_OPS_RAW:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002818 break;
2819
2820 default:
2821 goto out;
2822 }
2823
2824 if (!ops->datbuf)
2825 ret = nand_do_write_oob(mtd, to, ops);
2826 else
2827 ret = nand_do_write_ops(mtd, to, ops);
2828
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002829out:
Thomas Gleixner8593fbc2006-05-29 03:26:58 +02002830 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return ret;
2832}
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834/**
Brian Norris49c50b92014-05-06 16:02:19 -07002835 * single_erase - [GENERIC] NAND standard block erase command function
Brian Norris8b6e50c2011-05-25 14:59:01 -07002836 * @mtd: MTD device structure
2837 * @page: the page address of the block which will be erased
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 *
Brian Norris49c50b92014-05-06 16:02:19 -07002839 * Standard erase command for NAND chips. Returns NAND status.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 */
Brian Norris49c50b92014-05-06 16:02:19 -07002841static int single_erase(struct mtd_info *mtd, int page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002843 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 /* Send commands to erase a block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002845 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2846 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Brian Norris49c50b92014-05-06 16:02:19 -07002847
2848 return chip->waitfunc(mtd, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849}
2850
2851/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 * nand_erase - [MTD Interface] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002853 * @mtd: MTD device structure
2854 * @instr: erase instruction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002856 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002858static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
David Woodhousee0c7d762006-05-13 18:07:53 +01002860 return nand_erase_nand(mtd, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863/**
Brian Norris7854d3f2011-06-23 14:12:08 -07002864 * nand_erase_nand - [INTERN] erase block(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07002865 * @mtd: MTD device structure
2866 * @instr: erase instruction
2867 * @allowbbt: allow erasing the bbt area
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002869 * Erase one ore more blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002871int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2872 int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
Adrian Hunter69423d92008-12-10 13:37:21 +00002874 int page, status, pages_per_block, ret, chipnr;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002875 struct nand_chip *chip = mtd->priv;
Adrian Hunter69423d92008-12-10 13:37:21 +00002876 loff_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Brian Norris289c0522011-07-19 10:06:09 -07002878 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2879 __func__, (unsigned long long)instr->addr,
2880 (unsigned long long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Vimal Singh6fe5a6a2010-02-03 14:12:24 +05302882 if (check_offs_len(mtd, instr->addr, instr->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002886 nand_get_device(mtd, FL_ERASING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 /* Shift to get first page */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002889 page = (int)(instr->addr >> chip->page_shift);
2890 chipnr = (int)(instr->addr >> chip->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892 /* Calculate pages in each block */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002893 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895 /* Select the NAND device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002896 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 /* Check, if it is write protected */
2899 if (nand_check_wp(mtd)) {
Brian Norris289c0522011-07-19 10:06:09 -07002900 pr_debug("%s: device is write protected!\n",
2901 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 instr->state = MTD_ERASE_FAILED;
2903 goto erase_exit;
2904 }
2905
2906 /* Loop through the pages */
2907 len = instr->len;
2908
2909 instr->state = MTD_ERASING;
2910
2911 while (len) {
Wolfram Sang12183a22011-12-21 23:01:20 +01002912 /* Check if we have a bad block, we do not erase bad blocks! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002913 if (nand_block_checkbad(mtd, ((loff_t) page) <<
2914 chip->page_shift, 0, allowbbt)) {
Brian Norrisd0370212011-07-19 10:06:08 -07002915 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
2916 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 instr->state = MTD_ERASE_FAILED;
2918 goto erase_exit;
2919 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002920
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002921 /*
2922 * Invalidate the page cache, if we erase the block which
Brian Norris8b6e50c2011-05-25 14:59:01 -07002923 * contains the current cached page.
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002924 */
2925 if (page <= chip->pagebuf && chip->pagebuf <
2926 (page + pages_per_block))
2927 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Brian Norris49c50b92014-05-06 16:02:19 -07002929 status = chip->erase(mtd, page & chip->pagemask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002931 /*
2932 * See if operation failed and additional status checks are
2933 * available
2934 */
2935 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2936 status = chip->errstat(mtd, chip, FL_ERASING,
2937 status, page);
David A. Marlin068e3c02005-01-24 03:07:46 +00002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 /* See if block erase succeeded */
David A. Marlina4ab4c52005-01-23 18:30:53 +00002940 if (status & NAND_STATUS_FAIL) {
Brian Norris289c0522011-07-19 10:06:09 -07002941 pr_debug("%s: failed erase, page 0x%08x\n",
2942 __func__, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 instr->state = MTD_ERASE_FAILED;
Adrian Hunter69423d92008-12-10 13:37:21 +00002944 instr->fail_addr =
2945 ((loff_t)page << chip->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 goto erase_exit;
2947 }
David A. Marlin30f464b2005-01-17 18:35:25 +00002948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 /* Increment page address and decrement length */
Dan Carpenterdaae74c2013-08-09 12:49:05 +03002950 len -= (1ULL << chip->phys_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 page += pages_per_block;
2952
2953 /* Check, if we cross a chip boundary */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002954 if (len && !(page & chip->pagemask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 chipnr++;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002956 chip->select_chip(mtd, -1);
2957 chip->select_chip(mtd, chipnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 }
2959 }
2960 instr->state = MTD_ERASE_DONE;
2961
Florian Fainelli7351d3a2010-09-07 13:23:45 +02002962erase_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 /* Deselect and wake up anyone waiting on the device */
Huang Shijieb0bb6902012-11-19 14:43:29 +08002967 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 nand_release_device(mtd);
2969
David Woodhouse49defc02007-10-06 15:01:59 -04002970 /* Do call back function */
2971 if (!ret)
2972 mtd_erase_callback(instr);
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 /* Return more or less happy */
2975 return ret;
2976}
2977
2978/**
2979 * nand_sync - [MTD Interface] sync
Brian Norris8b6e50c2011-05-25 14:59:01 -07002980 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07002982 * Sync is actually a wait for chip ready function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 */
David Woodhousee0c7d762006-05-13 18:07:53 +01002984static void nand_sync(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
Brian Norris289c0522011-07-19 10:06:09 -07002986 pr_debug("%s: called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 /* Grab the lock and see if the device is available */
Huang Shijie6a8214a2012-11-19 14:43:30 +08002989 nand_get_device(mtd, FL_SYNCING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 /* Release it and go back */
David Woodhousee0c7d762006-05-13 18:07:53 +01002991 nand_release_device(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002995 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07002996 * @mtd: MTD device structure
2997 * @offs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02002999static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003001 return nand_block_checkbad(mtd, offs, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002}
3003
3004/**
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003005 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07003006 * @mtd: MTD device structure
3007 * @ofs: offset relative to mtd start
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
David Woodhousee0c7d762006-05-13 18:07:53 +01003009static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 int ret;
3012
Florian Fainellif8ac0412010-09-07 13:23:43 +02003013 ret = nand_block_isbad(mtd, ofs);
3014 if (ret) {
Brian Norris8b6e50c2011-05-25 14:59:01 -07003015 /* If it was bad already, return success and do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 if (ret > 0)
3017 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01003018 return ret;
3019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Brian Norris5a0edb22013-07-30 17:52:58 -07003021 return nand_block_markbad_lowlevel(mtd, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022}
3023
3024/**
Huang Shijie7db03ec2012-09-13 14:57:52 +08003025 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3026 * @mtd: MTD device structure
3027 * @chip: nand chip info structure
3028 * @addr: feature address.
3029 * @subfeature_param: the subfeature parameters, a four bytes array.
3030 */
3031static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3032 int addr, uint8_t *subfeature_param)
3033{
3034 int status;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003035 int i;
Huang Shijie7db03ec2012-09-13 14:57:52 +08003036
David Mosbergerd914c932013-05-29 15:30:13 +03003037 if (!chip->onfi_version ||
3038 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3039 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003040 return -EINVAL;
3041
3042 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003043 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3044 chip->write_byte(mtd, subfeature_param[i]);
3045
Huang Shijie7db03ec2012-09-13 14:57:52 +08003046 status = chip->waitfunc(mtd, chip);
3047 if (status & NAND_STATUS_FAIL)
3048 return -EIO;
3049 return 0;
3050}
3051
3052/**
3053 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3054 * @mtd: MTD device structure
3055 * @chip: nand chip info structure
3056 * @addr: feature address.
3057 * @subfeature_param: the subfeature parameters, a four bytes array.
3058 */
3059static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3060 int addr, uint8_t *subfeature_param)
3061{
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003062 int i;
3063
David Mosbergerd914c932013-05-29 15:30:13 +03003064 if (!chip->onfi_version ||
3065 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3066 & ONFI_OPT_CMD_SET_GET_FEATURES))
Huang Shijie7db03ec2012-09-13 14:57:52 +08003067 return -EINVAL;
3068
Huang Shijie7db03ec2012-09-13 14:57:52 +08003069 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003070 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3071 *subfeature_param++ = chip->read_byte(mtd);
Huang Shijie7db03ec2012-09-13 14:57:52 +08003072 return 0;
3073}
3074
3075/**
Vitaly Wool962034f2005-09-15 14:58:53 +01003076 * nand_suspend - [MTD Interface] Suspend the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003077 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003078 */
3079static int nand_suspend(struct mtd_info *mtd)
3080{
Huang Shijie6a8214a2012-11-19 14:43:30 +08003081 return nand_get_device(mtd, FL_PM_SUSPENDED);
Vitaly Wool962034f2005-09-15 14:58:53 +01003082}
3083
3084/**
3085 * nand_resume - [MTD Interface] Resume the NAND flash
Brian Norris8b6e50c2011-05-25 14:59:01 -07003086 * @mtd: MTD device structure
Vitaly Wool962034f2005-09-15 14:58:53 +01003087 */
3088static void nand_resume(struct mtd_info *mtd)
3089{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003090 struct nand_chip *chip = mtd->priv;
Vitaly Wool962034f2005-09-15 14:58:53 +01003091
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003092 if (chip->state == FL_PM_SUSPENDED)
Vitaly Wool962034f2005-09-15 14:58:53 +01003093 nand_release_device(mtd);
3094 else
Brian Norrisd0370212011-07-19 10:06:08 -07003095 pr_err("%s called for a chip which is not in suspended state\n",
3096 __func__);
Vitaly Wool962034f2005-09-15 14:58:53 +01003097}
3098
Scott Branden72ea4032014-11-20 11:18:05 -08003099/**
3100 * nand_shutdown - [MTD Interface] Finish the current NAND operation and
3101 * prevent further operations
3102 * @mtd: MTD device structure
3103 */
3104static void nand_shutdown(struct mtd_info *mtd)
3105{
3106 nand_get_device(mtd, FL_SHUTDOWN);
3107}
3108
Brian Norris8b6e50c2011-05-25 14:59:01 -07003109/* Set default functions */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003110static void nand_set_defaults(struct nand_chip *chip, int busw)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003111{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 /* check for proper chip_delay setup, set 20us if not */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003113 if (!chip->chip_delay)
3114 chip->chip_delay = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 /* check, if a user supplied command function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003117 if (chip->cmdfunc == NULL)
3118 chip->cmdfunc = nand_command;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120 /* check, if a user supplied wait function given */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003121 if (chip->waitfunc == NULL)
3122 chip->waitfunc = nand_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003124 if (!chip->select_chip)
3125 chip->select_chip = nand_select_chip;
Brian Norris68e80782013-07-18 01:17:02 -07003126
Huang Shijie4204ccc2013-08-16 10:10:07 +08003127 /* set for ONFI nand */
3128 if (!chip->onfi_set_features)
3129 chip->onfi_set_features = nand_onfi_set_features;
3130 if (!chip->onfi_get_features)
3131 chip->onfi_get_features = nand_onfi_get_features;
3132
Brian Norris68e80782013-07-18 01:17:02 -07003133 /* If called twice, pointers that depend on busw may need to be reset */
3134 if (!chip->read_byte || chip->read_byte == nand_read_byte)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003135 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3136 if (!chip->read_word)
3137 chip->read_word = nand_read_word;
3138 if (!chip->block_bad)
3139 chip->block_bad = nand_block_bad;
3140 if (!chip->block_markbad)
3141 chip->block_markbad = nand_default_block_markbad;
Brian Norris68e80782013-07-18 01:17:02 -07003142 if (!chip->write_buf || chip->write_buf == nand_write_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003143 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Uwe Kleine-König05f78352013-12-05 22:22:04 +01003144 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3145 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
Brian Norris68e80782013-07-18 01:17:02 -07003146 if (!chip->read_buf || chip->read_buf == nand_read_buf)
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003147 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003148 if (!chip->scan_bbt)
3149 chip->scan_bbt = nand_default_bbt;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02003150
3151 if (!chip->controller) {
3152 chip->controller = &chip->hwcontrol;
3153 spin_lock_init(&chip->controller->lock);
3154 init_waitqueue_head(&chip->controller->wq);
3155 }
3156
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003157}
3158
Brian Norris8b6e50c2011-05-25 14:59:01 -07003159/* Sanitize ONFI strings so we can safely print them */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003160static void sanitize_string(uint8_t *s, size_t len)
3161{
3162 ssize_t i;
3163
Brian Norris8b6e50c2011-05-25 14:59:01 -07003164 /* Null terminate */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003165 s[len - 1] = 0;
3166
Brian Norris8b6e50c2011-05-25 14:59:01 -07003167 /* Remove non printable chars */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003168 for (i = 0; i < len - 1; i++) {
3169 if (s[i] < ' ' || s[i] > 127)
3170 s[i] = '?';
3171 }
3172
Brian Norris8b6e50c2011-05-25 14:59:01 -07003173 /* Remove trailing spaces */
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003174 strim(s);
3175}
3176
3177static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
3178{
3179 int i;
3180 while (len--) {
3181 crc ^= *p++ << 8;
3182 for (i = 0; i < 8; i++)
3183 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
3184 }
3185
3186 return crc;
3187}
3188
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003189/* Parse the Extended Parameter Page. */
3190static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3191 struct nand_chip *chip, struct nand_onfi_params *p)
3192{
3193 struct onfi_ext_param_page *ep;
3194 struct onfi_ext_section *s;
3195 struct onfi_ext_ecc_info *ecc;
3196 uint8_t *cursor;
3197 int ret = -EINVAL;
3198 int len;
3199 int i;
3200
3201 len = le16_to_cpu(p->ext_param_page_length) * 16;
3202 ep = kmalloc(len, GFP_KERNEL);
Brian Norris5cb13272013-09-16 17:59:20 -07003203 if (!ep)
3204 return -ENOMEM;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003205
3206 /* Send our own NAND_CMD_PARAM. */
3207 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3208
3209 /* Use the Change Read Column command to skip the ONFI param pages. */
3210 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3211 sizeof(*p) * p->num_of_param_pages , -1);
3212
3213 /* Read out the Extended Parameter Page. */
3214 chip->read_buf(mtd, (uint8_t *)ep, len);
3215 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3216 != le16_to_cpu(ep->crc))) {
3217 pr_debug("fail in the CRC.\n");
3218 goto ext_out;
3219 }
3220
3221 /*
3222 * Check the signature.
3223 * Do not strictly follow the ONFI spec, maybe changed in future.
3224 */
3225 if (strncmp(ep->sig, "EPPS", 4)) {
3226 pr_debug("The signature is invalid.\n");
3227 goto ext_out;
3228 }
3229
3230 /* find the ECC section. */
3231 cursor = (uint8_t *)(ep + 1);
3232 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3233 s = ep->sections + i;
3234 if (s->type == ONFI_SECTION_TYPE_2)
3235 break;
3236 cursor += s->length * 16;
3237 }
3238 if (i == ONFI_EXT_SECTION_MAX) {
3239 pr_debug("We can not find the ECC section.\n");
3240 goto ext_out;
3241 }
3242
3243 /* get the info we want. */
3244 ecc = (struct onfi_ext_ecc_info *)cursor;
3245
Brian Norris4ae7d222013-09-16 18:20:21 -07003246 if (!ecc->codeword_size) {
3247 pr_debug("Invalid codeword size\n");
3248 goto ext_out;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003249 }
3250
Brian Norris4ae7d222013-09-16 18:20:21 -07003251 chip->ecc_strength_ds = ecc->ecc_bits;
3252 chip->ecc_step_ds = 1 << ecc->codeword_size;
Brian Norris5cb13272013-09-16 17:59:20 -07003253 ret = 0;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003254
3255ext_out:
3256 kfree(ep);
3257 return ret;
3258}
3259
Brian Norris8429bb32013-12-03 15:51:09 -08003260static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3261{
3262 struct nand_chip *chip = mtd->priv;
3263 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3264
3265 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3266 feature);
3267}
3268
3269/*
3270 * Configure chip properties from Micron vendor-specific ONFI table
3271 */
3272static void nand_onfi_detect_micron(struct nand_chip *chip,
3273 struct nand_onfi_params *p)
3274{
3275 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3276
3277 if (le16_to_cpu(p->vendor_revision) < 1)
3278 return;
3279
3280 chip->read_retries = micron->read_retry_options;
3281 chip->setup_read_retry = nand_setup_read_retry_micron;
3282}
3283
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003284/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003285 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003286 */
3287static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003288 int *busw)
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003289{
3290 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003291 int i, j;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003292 int val;
3293
Brian Norris7854d3f2011-06-23 14:12:08 -07003294 /* Try ONFI for unknown chip or LP */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003295 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3296 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3297 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3298 return 0;
3299
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003300 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3301 for (i = 0; i < 3; i++) {
Brian Norrisbd9c6e92013-11-29 22:04:28 -08003302 for (j = 0; j < sizeof(*p); j++)
3303 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003304 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
3305 le16_to_cpu(p->crc)) {
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003306 break;
3307 }
3308 }
3309
Brian Norrisc7f23a72013-08-13 10:51:55 -07003310 if (i == 3) {
3311 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003312 return 0;
Brian Norrisc7f23a72013-08-13 10:51:55 -07003313 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003314
Brian Norris8b6e50c2011-05-25 14:59:01 -07003315 /* Check version */
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003316 val = le16_to_cpu(p->revision);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003317 if (val & (1 << 5))
3318 chip->onfi_version = 23;
3319 else if (val & (1 << 4))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003320 chip->onfi_version = 22;
3321 else if (val & (1 << 3))
3322 chip->onfi_version = 21;
3323 else if (val & (1 << 2))
3324 chip->onfi_version = 20;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003325 else if (val & (1 << 1))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003326 chip->onfi_version = 10;
Brian Norrisb7b1a292010-12-12 00:23:33 -08003327
3328 if (!chip->onfi_version) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003329 pr_info("unsupported ONFI version: %d\n", val);
Brian Norrisb7b1a292010-12-12 00:23:33 -08003330 return 0;
3331 }
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003332
3333 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3334 sanitize_string(p->model, sizeof(p->model));
3335 if (!mtd->name)
3336 mtd->name = p->model;
Brian Norris4355b702013-08-27 18:45:10 -07003337
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003338 mtd->writesize = le32_to_cpu(p->byte_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003339
3340 /*
3341 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3342 * (don't ask me who thought of this...). MTD assumes that these
3343 * dimensions will be power-of-2, so just truncate the remaining area.
3344 */
3345 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3346 mtd->erasesize *= mtd->writesize;
3347
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003348 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
Brian Norris4355b702013-08-27 18:45:10 -07003349
3350 /* See erasesize comment */
3351 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
Matthieu CASTET63795752012-03-19 15:35:25 +01003352 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
Huang Shijie13fbd172013-09-25 14:58:13 +08003353 chip->bits_per_cell = p->bits_per_cell;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003354
3355 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
Matthieu CASTET08c248f2011-06-26 18:26:55 +02003356 *busw = NAND_BUSWIDTH_16;
Huang Shijiee2985fc2013-05-17 11:17:30 +08003357 else
3358 *busw = 0;
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003359
Huang Shijie10c86ba2013-05-17 11:17:26 +08003360 if (p->ecc_bits != 0xff) {
3361 chip->ecc_strength_ds = p->ecc_bits;
3362 chip->ecc_step_ds = 512;
Huang Shijie6dcbe0c2013-05-22 10:28:27 +08003363 } else if (chip->onfi_version >= 21 &&
3364 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3365
3366 /*
3367 * The nand_flash_detect_ext_param_page() uses the
3368 * Change Read Column command which maybe not supported
3369 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3370 * now. We do not replace user supplied command function.
3371 */
3372 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3373 chip->cmdfunc = nand_command_lp;
3374
3375 /* The Extended Parameter Page is supported since ONFI 2.1. */
3376 if (nand_flash_detect_ext_param_page(mtd, chip, p))
Brian Norrisc7f23a72013-08-13 10:51:55 -07003377 pr_warn("Failed to detect ONFI extended param page\n");
3378 } else {
3379 pr_warn("Could not retrieve ONFI ECC requirements\n");
Huang Shijie10c86ba2013-05-17 11:17:26 +08003380 }
3381
Brian Norris8429bb32013-12-03 15:51:09 -08003382 if (p->jedec_id == NAND_MFR_MICRON)
3383 nand_onfi_detect_micron(chip, p);
3384
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003385 return 1;
3386}
3387
3388/*
Huang Shijie91361812014-02-21 13:39:40 +08003389 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3390 */
3391static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3392 int *busw)
3393{
3394 struct nand_jedec_params *p = &chip->jedec_params;
3395 struct jedec_ecc_info *ecc;
3396 int val;
3397 int i, j;
3398
3399 /* Try JEDEC for unknown chip or LP */
3400 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3401 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3402 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3403 chip->read_byte(mtd) != 'C')
3404 return 0;
3405
3406 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3407 for (i = 0; i < 3; i++) {
3408 for (j = 0; j < sizeof(*p); j++)
3409 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3410
3411 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3412 le16_to_cpu(p->crc))
3413 break;
3414 }
3415
3416 if (i == 3) {
3417 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3418 return 0;
3419 }
3420
3421 /* Check version */
3422 val = le16_to_cpu(p->revision);
3423 if (val & (1 << 2))
3424 chip->jedec_version = 10;
3425 else if (val & (1 << 1))
3426 chip->jedec_version = 1; /* vendor specific version */
3427
3428 if (!chip->jedec_version) {
3429 pr_info("unsupported JEDEC version: %d\n", val);
3430 return 0;
3431 }
3432
3433 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3434 sanitize_string(p->model, sizeof(p->model));
3435 if (!mtd->name)
3436 mtd->name = p->model;
3437
3438 mtd->writesize = le32_to_cpu(p->byte_per_page);
3439
3440 /* Please reference to the comment for nand_flash_detect_onfi. */
3441 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3442 mtd->erasesize *= mtd->writesize;
3443
3444 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3445
3446 /* Please reference to the comment for nand_flash_detect_onfi. */
3447 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3448 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3449 chip->bits_per_cell = p->bits_per_cell;
3450
3451 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3452 *busw = NAND_BUSWIDTH_16;
3453 else
3454 *busw = 0;
3455
3456 /* ECC info */
3457 ecc = &p->ecc_info[0];
3458
3459 if (ecc->codeword_size >= 9) {
3460 chip->ecc_strength_ds = ecc->ecc_bits;
3461 chip->ecc_step_ds = 1 << ecc->codeword_size;
3462 } else {
3463 pr_warn("Invalid codeword size\n");
3464 }
3465
3466 return 1;
3467}
3468
3469/*
Brian Norrise3b88bd2012-09-24 20:40:52 -07003470 * nand_id_has_period - Check if an ID string has a given wraparound period
3471 * @id_data: the ID string
3472 * @arrlen: the length of the @id_data array
3473 * @period: the period of repitition
3474 *
3475 * Check if an ID string is repeated within a given sequence of bytes at
3476 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Brian Norrisd4d4f1b2012-11-14 21:54:20 -08003477 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Brian Norrise3b88bd2012-09-24 20:40:52 -07003478 * if the repetition has a period of @period; otherwise, returns zero.
3479 */
3480static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3481{
3482 int i, j;
3483 for (i = 0; i < period; i++)
3484 for (j = i + period; j < arrlen; j += period)
3485 if (id_data[i] != id_data[j])
3486 return 0;
3487 return 1;
3488}
3489
3490/*
3491 * nand_id_len - Get the length of an ID string returned by CMD_READID
3492 * @id_data: the ID string
3493 * @arrlen: the length of the @id_data array
3494
3495 * Returns the length of the ID string, according to known wraparound/trailing
3496 * zero patterns. If no pattern exists, returns the length of the array.
3497 */
3498static int nand_id_len(u8 *id_data, int arrlen)
3499{
3500 int last_nonzero, period;
3501
3502 /* Find last non-zero byte */
3503 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3504 if (id_data[last_nonzero])
3505 break;
3506
3507 /* All zeros */
3508 if (last_nonzero < 0)
3509 return 0;
3510
3511 /* Calculate wraparound period */
3512 for (period = 1; period < arrlen; period++)
3513 if (nand_id_has_period(id_data, arrlen, period))
3514 break;
3515
3516 /* There's a repeated pattern */
3517 if (period < arrlen)
3518 return period;
3519
3520 /* There are trailing zeros */
3521 if (last_nonzero < arrlen - 1)
3522 return last_nonzero + 1;
3523
3524 /* No pattern detected */
3525 return arrlen;
3526}
3527
Huang Shijie7db906b2013-09-25 14:58:11 +08003528/* Extract the bits of per cell from the 3rd byte of the extended ID */
3529static int nand_get_bits_per_cell(u8 cellinfo)
3530{
3531 int bits;
3532
3533 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3534 bits >>= NAND_CI_CELLTYPE_SHIFT;
3535 return bits + 1;
3536}
3537
Brian Norrise3b88bd2012-09-24 20:40:52 -07003538/*
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003539 * Many new NAND share similar device ID codes, which represent the size of the
3540 * chip. The rest of the parameters must be decoded according to generic or
3541 * manufacturer-specific "extended ID" decoding patterns.
3542 */
3543static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3544 u8 id_data[8], int *busw)
3545{
Brian Norrise3b88bd2012-09-24 20:40:52 -07003546 int extid, id_len;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003547 /* The 3rd id byte holds MLC / multichip data */
Huang Shijie7db906b2013-09-25 14:58:11 +08003548 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003549 /* The 4th id byte is the important one */
3550 extid = id_data[3];
3551
Brian Norrise3b88bd2012-09-24 20:40:52 -07003552 id_len = nand_id_len(id_data, 8);
3553
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003554 /*
3555 * Field definitions are in the following datasheets:
3556 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
Brian Norrisaf451af2012-10-09 23:26:06 -07003557 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
Brian Norris73ca3922012-09-24 20:40:54 -07003558 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003559 *
Brian Norrisaf451af2012-10-09 23:26:06 -07003560 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3561 * ID to decide what to do.
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003562 */
Brian Norrisaf451af2012-10-09 23:26:06 -07003563 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003564 !nand_is_slc(chip) && id_data[5] != 0x00) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003565 /* Calc pagesize */
3566 mtd->writesize = 2048 << (extid & 0x03);
3567 extid >>= 2;
3568 /* Calc oobsize */
Brian Norrise2d3a352012-09-24 20:40:55 -07003569 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003570 case 1:
3571 mtd->oobsize = 128;
3572 break;
3573 case 2:
3574 mtd->oobsize = 218;
3575 break;
3576 case 3:
3577 mtd->oobsize = 400;
3578 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003579 case 4:
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003580 mtd->oobsize = 436;
3581 break;
Brian Norrise2d3a352012-09-24 20:40:55 -07003582 case 5:
3583 mtd->oobsize = 512;
3584 break;
3585 case 6:
Brian Norrise2d3a352012-09-24 20:40:55 -07003586 mtd->oobsize = 640;
3587 break;
Huang Shijie94d04e82013-12-25 17:18:55 +08003588 case 7:
3589 default: /* Other cases are "reserved" (unknown) */
3590 mtd->oobsize = 1024;
3591 break;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003592 }
3593 extid >>= 2;
3594 /* Calc blocksize */
3595 mtd->erasesize = (128 * 1024) <<
3596 (((extid >> 1) & 0x04) | (extid & 0x03));
3597 *busw = 0;
Brian Norris73ca3922012-09-24 20:40:54 -07003598 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003599 !nand_is_slc(chip)) {
Brian Norris73ca3922012-09-24 20:40:54 -07003600 unsigned int tmp;
3601
3602 /* Calc pagesize */
3603 mtd->writesize = 2048 << (extid & 0x03);
3604 extid >>= 2;
3605 /* Calc oobsize */
3606 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3607 case 0:
3608 mtd->oobsize = 128;
3609 break;
3610 case 1:
3611 mtd->oobsize = 224;
3612 break;
3613 case 2:
3614 mtd->oobsize = 448;
3615 break;
3616 case 3:
3617 mtd->oobsize = 64;
3618 break;
3619 case 4:
3620 mtd->oobsize = 32;
3621 break;
3622 case 5:
3623 mtd->oobsize = 16;
3624 break;
3625 default:
3626 mtd->oobsize = 640;
3627 break;
3628 }
3629 extid >>= 2;
3630 /* Calc blocksize */
3631 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3632 if (tmp < 0x03)
3633 mtd->erasesize = (128 * 1024) << tmp;
3634 else if (tmp == 0x03)
3635 mtd->erasesize = 768 * 1024;
3636 else
3637 mtd->erasesize = (64 * 1024) << tmp;
3638 *busw = 0;
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003639 } else {
3640 /* Calc pagesize */
3641 mtd->writesize = 1024 << (extid & 0x03);
3642 extid >>= 2;
3643 /* Calc oobsize */
3644 mtd->oobsize = (8 << (extid & 0x01)) *
3645 (mtd->writesize >> 9);
3646 extid >>= 2;
3647 /* Calc blocksize. Blocksize is multiples of 64KiB */
3648 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3649 extid >>= 2;
3650 /* Get buswidth information */
3651 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Brian Norris60c67382013-06-25 13:17:59 -07003652
3653 /*
3654 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3655 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3656 * follows:
3657 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3658 * 110b -> 24nm
3659 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3660 */
3661 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
Huang Shijie1d0ed692013-09-25 14:58:10 +08003662 nand_is_slc(chip) &&
Brian Norris60c67382013-06-25 13:17:59 -07003663 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3664 !(id_data[4] & 0x80) /* !BENAND */) {
3665 mtd->oobsize = 32 * mtd->writesize >> 9;
3666 }
3667
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003668 }
3669}
3670
3671/*
Brian Norrisf23a4812012-09-24 20:40:51 -07003672 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3673 * decodes a matching ID table entry and assigns the MTD size parameters for
3674 * the chip.
3675 */
3676static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
3677 struct nand_flash_dev *type, u8 id_data[8],
3678 int *busw)
3679{
3680 int maf_id = id_data[0];
3681
3682 mtd->erasesize = type->erasesize;
3683 mtd->writesize = type->pagesize;
3684 mtd->oobsize = mtd->writesize / 32;
3685 *busw = type->options & NAND_BUSWIDTH_16;
3686
Huang Shijie1c195e92013-09-25 14:58:12 +08003687 /* All legacy ID NAND are small-page, SLC */
3688 chip->bits_per_cell = 1;
3689
Brian Norrisf23a4812012-09-24 20:40:51 -07003690 /*
3691 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3692 * some Spansion chips have erasesize that conflicts with size
3693 * listed in nand_ids table.
3694 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3695 */
3696 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3697 && id_data[6] == 0x00 && id_data[7] == 0x00
3698 && mtd->writesize == 512) {
3699 mtd->erasesize = 128 * 1024;
3700 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3701 }
3702}
3703
3704/*
Brian Norris7e74c2d2012-09-24 20:40:49 -07003705 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3706 * heuristic patterns using various detected parameters (e.g., manufacturer,
3707 * page size, cell-type information).
3708 */
3709static void nand_decode_bbm_options(struct mtd_info *mtd,
3710 struct nand_chip *chip, u8 id_data[8])
3711{
3712 int maf_id = id_data[0];
3713
3714 /* Set the bad block position */
3715 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3716 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3717 else
3718 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3719
3720 /*
3721 * Bad block marker is stored in the last page of each block on Samsung
3722 * and Hynix MLC devices; stored in first two pages of each block on
3723 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3724 * AMD/Spansion, and Macronix. All others scan only the first page.
3725 */
Huang Shijie1d0ed692013-09-25 14:58:10 +08003726 if (!nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003727 (maf_id == NAND_MFR_SAMSUNG ||
3728 maf_id == NAND_MFR_HYNIX))
3729 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Huang Shijie1d0ed692013-09-25 14:58:10 +08003730 else if ((nand_is_slc(chip) &&
Brian Norris7e74c2d2012-09-24 20:40:49 -07003731 (maf_id == NAND_MFR_SAMSUNG ||
3732 maf_id == NAND_MFR_HYNIX ||
3733 maf_id == NAND_MFR_TOSHIBA ||
3734 maf_id == NAND_MFR_AMD ||
3735 maf_id == NAND_MFR_MACRONIX)) ||
3736 (mtd->writesize == 2048 &&
3737 maf_id == NAND_MFR_MICRON))
3738 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3739}
3740
Huang Shijieec6e87e2013-03-15 11:01:00 +08003741static inline bool is_full_id_nand(struct nand_flash_dev *type)
3742{
3743 return type->id_len;
3744}
3745
3746static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3747 struct nand_flash_dev *type, u8 *id_data, int *busw)
3748{
3749 if (!strncmp(type->id, id_data, type->id_len)) {
3750 mtd->writesize = type->pagesize;
3751 mtd->erasesize = type->erasesize;
3752 mtd->oobsize = type->oobsize;
3753
Huang Shijie7db906b2013-09-25 14:58:11 +08003754 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Huang Shijieec6e87e2013-03-15 11:01:00 +08003755 chip->chipsize = (uint64_t)type->chipsize << 20;
3756 chip->options |= type->options;
Huang Shijie57219342013-05-17 11:17:32 +08003757 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3758 chip->ecc_step_ds = NAND_ECC_STEP(type);
Boris BREZILLON57a94e22014-09-22 20:11:50 +02003759 chip->onfi_timing_mode_default =
3760 type->onfi_timing_mode_default;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003761
3762 *busw = type->options & NAND_BUSWIDTH_16;
3763
Cai Zhiyong092b6a12013-12-25 21:19:21 +08003764 if (!mtd->name)
3765 mtd->name = type->name;
3766
Huang Shijieec6e87e2013-03-15 11:01:00 +08003767 return true;
3768 }
3769 return false;
3770}
3771
Brian Norris7e74c2d2012-09-24 20:40:49 -07003772/*
Brian Norris8b6e50c2011-05-25 14:59:01 -07003773 * Get the flash and manufacturer id and lookup if the type is supported.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003774 */
3775static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003776 struct nand_chip *chip,
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003777 int *maf_id, int *dev_id,
David Woodhouse5e81e882010-02-26 18:32:56 +00003778 struct nand_flash_dev *type)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003779{
Cai Zhiyongbb770822013-12-25 20:11:15 +08003780 int busw;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003781 int i, maf_idx;
Kevin Cernekee426c4572010-05-04 20:58:03 -07003782 u8 id_data[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784 /* Select the device */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003785 chip->select_chip(mtd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Karl Beldanef89a882008-09-15 14:37:29 +02003787 /*
3788 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Brian Norris8b6e50c2011-05-25 14:59:01 -07003789 * after power-up.
Karl Beldanef89a882008-09-15 14:37:29 +02003790 */
3791 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003794 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
3796 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003797 *maf_id = chip->read_byte(mtd);
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003798 *dev_id = chip->read_byte(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Brian Norris8b6e50c2011-05-25 14:59:01 -07003800 /*
3801 * Try again to make sure, as some systems the bus-hold or other
Ben Dooksed8165c2008-04-14 14:58:58 +01003802 * interface concerns can cause random data which looks like a
3803 * possibly credible NAND flash to appear. If the two results do
3804 * not match, ignore the device completely.
3805 */
3806
3807 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3808
Brian Norris4aef9b72012-09-24 20:40:48 -07003809 /* Read entire ID string */
3810 for (i = 0; i < 8; i++)
Kevin Cernekee426c4572010-05-04 20:58:03 -07003811 id_data[i] = chip->read_byte(mtd);
Ben Dooksed8165c2008-04-14 14:58:58 +01003812
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003813 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Ezequiel Garcia20171642013-11-25 08:30:31 -03003814 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003815 *maf_id, *dev_id, id_data[0], id_data[1]);
Ben Dooksed8165c2008-04-14 14:58:58 +01003816 return ERR_PTR(-ENODEV);
3817 }
3818
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003819 if (!type)
David Woodhouse5e81e882010-02-26 18:32:56 +00003820 type = nand_flash_ids;
3821
Huang Shijieec6e87e2013-03-15 11:01:00 +08003822 for (; type->name != NULL; type++) {
3823 if (is_full_id_nand(type)) {
3824 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3825 goto ident_done;
3826 } else if (*dev_id == type->dev_id) {
Brian Norrisdb5b09f2015-05-22 10:43:12 -07003827 break;
Huang Shijieec6e87e2013-03-15 11:01:00 +08003828 }
3829 }
David Woodhouse5e81e882010-02-26 18:32:56 +00003830
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003831 chip->onfi_version = 0;
3832 if (!type->name || !type->pagesize) {
Masahiro Yamada35fc5192014-04-09 16:26:26 +09003833 /* Check if the chip is ONFI compliant */
Brian Norris47450b32012-09-24 20:40:47 -07003834 if (nand_flash_detect_onfi(mtd, chip, &busw))
Florian Fainelli6fb277b2010-09-01 22:28:59 +02003835 goto ident_done;
Huang Shijie91361812014-02-21 13:39:40 +08003836
3837 /* Check if the chip is JEDEC compliant */
3838 if (nand_flash_detect_jedec(mtd, chip, &busw))
3839 goto ident_done;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003840 }
3841
David Woodhouse5e81e882010-02-26 18:32:56 +00003842 if (!type->name)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003843 return ERR_PTR(-ENODEV);
3844
Thomas Gleixnerba0251f2006-05-27 01:02:13 +02003845 if (!mtd->name)
3846 mtd->name = type->name;
3847
Adrian Hunter69423d92008-12-10 13:37:21 +00003848 chip->chipsize = (uint64_t)type->chipsize << 20;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003849
Boris BREZILLONa7f5ba42015-10-01 16:58:27 +02003850 if (!type->pagesize) {
Brian Norrisfc09bbc2012-09-24 20:40:50 -07003851 /* Decode parameters from extended ID */
3852 nand_decode_ext_id(mtd, chip, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003853 } else {
Brian Norrisf23a4812012-09-24 20:40:51 -07003854 nand_decode_id(mtd, chip, type, id_data, &busw);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003855 }
Brian Norrisbf7a01b2012-07-13 09:28:24 -07003856 /* Get chip options */
3857 chip->options |= type->options;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003858
Brian Norris8b6e50c2011-05-25 14:59:01 -07003859 /*
3860 * Check if chip is not a Samsung device. Do not clear the
3861 * options for chips which do not have an extended id.
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02003862 */
3863 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3864 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3865ident_done:
3866
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003867 /* Try to identify manufacturer */
David Woodhouse9a909862006-07-15 13:26:18 +01003868 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003869 if (nand_manuf_ids[maf_idx].id == *maf_id)
3870 break;
3871 }
3872
Matthieu CASTET64b37b22012-11-06 11:51:44 +01003873 if (chip->options & NAND_BUSWIDTH_AUTO) {
3874 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3875 chip->options |= busw;
3876 nand_set_defaults(chip, busw);
3877 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3878 /*
3879 * Check, if buswidth is correct. Hardware drivers should set
3880 * chip correct!
3881 */
Ezequiel Garcia20171642013-11-25 08:30:31 -03003882 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3883 *maf_id, *dev_id);
3884 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3885 pr_warn("bus width %d instead %d bit\n",
Brian Norrisd0370212011-07-19 10:06:08 -07003886 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3887 busw ? 16 : 8);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003888 return ERR_PTR(-EINVAL);
3889 }
3890
Brian Norris7e74c2d2012-09-24 20:40:49 -07003891 nand_decode_bbm_options(mtd, chip, id_data);
3892
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003893 /* Calculate the address shift from the page size */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003894 chip->page_shift = ffs(mtd->writesize) - 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07003895 /* Convert chipsize to number of pages per chip -1 */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003896 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003897
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003898 chip->bbt_erase_shift = chip->phys_erase_shift =
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003899 ffs(mtd->erasesize) - 1;
Adrian Hunter69423d92008-12-10 13:37:21 +00003900 if (chip->chipsize & 0xffffffff)
3901 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Florian Fainelli7351d3a2010-09-07 13:23:45 +02003902 else {
3903 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3904 chip->chip_shift += 32 - 1;
3905 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003906
Artem Bityutskiy26d9be12011-04-28 20:26:59 +03003907 chip->badblockbits = 8;
Brian Norris49c50b92014-05-06 16:02:19 -07003908 chip->erase = single_erase;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003909
Brian Norris8b6e50c2011-05-25 14:59:01 -07003910 /* Do not replace user supplied command function! */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003911 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3912 chip->cmdfunc = nand_command_lp;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003913
Ezequiel Garcia20171642013-11-25 08:30:31 -03003914 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3915 *maf_id, *dev_id);
Huang Shijieffdac6cd2014-02-21 13:39:41 +08003916
3917 if (chip->onfi_version)
3918 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3919 chip->onfi_params.model);
3920 else if (chip->jedec_version)
3921 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3922 chip->jedec_params.model);
3923 else
3924 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3925 type->name);
3926
Rafał Miłecki3755a992014-10-21 00:01:04 +02003927 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Huang Shijie3723e932013-09-25 14:58:14 +08003928 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Rafał Miłecki3755a992014-10-21 00:01:04 +02003929 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003930 return type;
3931}
3932
Brian Norris5844fee2015-01-23 00:22:27 -08003933static int nand_dt_init(struct mtd_info *mtd, struct nand_chip *chip,
3934 struct device_node *dn)
3935{
3936 int ecc_mode, ecc_strength, ecc_step;
3937
3938 if (of_get_nand_bus_width(dn) == 16)
3939 chip->options |= NAND_BUSWIDTH_16;
3940
3941 if (of_get_nand_on_flash_bbt(dn))
3942 chip->bbt_options |= NAND_BBT_USE_FLASH;
3943
3944 ecc_mode = of_get_nand_ecc_mode(dn);
3945 ecc_strength = of_get_nand_ecc_strength(dn);
3946 ecc_step = of_get_nand_ecc_step_size(dn);
3947
3948 if ((ecc_step >= 0 && !(ecc_strength >= 0)) ||
3949 (!(ecc_step >= 0) && ecc_strength >= 0)) {
3950 pr_err("must set both strength and step size in DT\n");
3951 return -EINVAL;
3952 }
3953
3954 if (ecc_mode >= 0)
3955 chip->ecc.mode = ecc_mode;
3956
3957 if (ecc_strength >= 0)
3958 chip->ecc.strength = ecc_strength;
3959
3960 if (ecc_step > 0)
3961 chip->ecc.size = ecc_step;
3962
3963 return 0;
3964}
3965
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003966/**
David Woodhouse3b85c322006-09-25 17:06:53 +01003967 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07003968 * @mtd: MTD device structure
3969 * @maxchips: number of chips to scan for
3970 * @table: alternative NAND ID table
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003971 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07003972 * This is the first phase of the normal nand_scan() function. It reads the
3973 * flash ID and sets up MTD fields accordingly.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003974 *
David Woodhouse3b85c322006-09-25 17:06:53 +01003975 * The mtd->owner field must be set to the module of the caller.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003976 */
David Woodhouse5e81e882010-02-26 18:32:56 +00003977int nand_scan_ident(struct mtd_info *mtd, int maxchips,
3978 struct nand_flash_dev *table)
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003979{
Cai Zhiyongbb770822013-12-25 20:11:15 +08003980 int i, nand_maf_id, nand_dev_id;
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02003981 struct nand_chip *chip = mtd->priv;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003982 struct nand_flash_dev *type;
Brian Norris5844fee2015-01-23 00:22:27 -08003983 int ret;
3984
Marek Vasut61528d82015-09-03 18:35:37 +02003985 if (chip->flash_node) {
3986 ret = nand_dt_init(mtd, chip, chip->flash_node);
Brian Norris5844fee2015-01-23 00:22:27 -08003987 if (ret)
3988 return ret;
3989 }
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003990
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003991 /* Set the default functions */
Cai Zhiyongbb770822013-12-25 20:11:15 +08003992 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003993
3994 /* Read the flash type */
Cai Zhiyongbb770822013-12-25 20:11:15 +08003995 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
3996 &nand_dev_id, table);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02003997
3998 if (IS_ERR(type)) {
Ben Dooksb1c6e6d2009-11-02 18:12:33 +00003999 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
Brian Norrisd0370212011-07-19 10:06:08 -07004000 pr_warn("No NAND device found\n");
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004001 chip->select_chip(mtd, -1);
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004002 return PTR_ERR(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 }
4004
Huang Shijie07300162012-11-09 16:23:45 +08004005 chip->select_chip(mtd, -1);
4006
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004007 /* Check for a chip array */
David Woodhousee0c7d762006-05-13 18:07:53 +01004008 for (i = 1; i < maxchips; i++) {
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004009 chip->select_chip(mtd, i);
Karl Beldanef89a882008-09-15 14:37:29 +02004010 /* See comment in nand_get_flash_type for reset */
4011 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 /* Send the command for reading device ID */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004013 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 /* Read manufacturer and device IDs */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004015 if (nand_maf_id != chip->read_byte(mtd) ||
Huang Shijie07300162012-11-09 16:23:45 +08004016 nand_dev_id != chip->read_byte(mtd)) {
4017 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 break;
Huang Shijie07300162012-11-09 16:23:45 +08004019 }
4020 chip->select_chip(mtd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 }
4022 if (i > 1)
Ezequiel Garcia20171642013-11-25 08:30:31 -03004023 pr_info("%d chips detected\n", i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 /* Store the number of chips and calc total size for mtd */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004026 chip->numchips = i;
4027 mtd->size = i * chip->chipsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
David Woodhouse3b85c322006-09-25 17:06:53 +01004029 return 0;
4030}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004031EXPORT_SYMBOL(nand_scan_ident);
David Woodhouse3b85c322006-09-25 17:06:53 +01004032
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004033/*
4034 * Check if the chip configuration meet the datasheet requirements.
4035
4036 * If our configuration corrects A bits per B bytes and the minimum
4037 * required correction level is X bits per Y bytes, then we must ensure
4038 * both of the following are true:
4039 *
4040 * (1) A / B >= X / Y
4041 * (2) A >= X
4042 *
4043 * Requirement (1) ensures we can correct for the required bitflip density.
4044 * Requirement (2) ensures we can correct even when all bitflips are clumped
4045 * in the same sector.
4046 */
4047static bool nand_ecc_strength_good(struct mtd_info *mtd)
4048{
4049 struct nand_chip *chip = mtd->priv;
4050 struct nand_ecc_ctrl *ecc = &chip->ecc;
4051 int corr, ds_corr;
4052
4053 if (ecc->size == 0 || chip->ecc_step_ds == 0)
4054 /* Not enough information */
4055 return true;
4056
4057 /*
4058 * We get the number of corrected bits per page to compare
4059 * the correction density.
4060 */
4061 corr = (mtd->writesize * ecc->strength) / ecc->size;
4062 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
4063
4064 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
4065}
David Woodhouse3b85c322006-09-25 17:06:53 +01004066
4067/**
4068 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004069 * @mtd: MTD device structure
David Woodhouse3b85c322006-09-25 17:06:53 +01004070 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004071 * This is the second phase of the normal nand_scan() function. It fills out
4072 * all the uninitialized function pointers with the defaults and scans for a
4073 * bad block table if appropriate.
David Woodhouse3b85c322006-09-25 17:06:53 +01004074 */
4075int nand_scan_tail(struct mtd_info *mtd)
4076{
4077 int i;
4078 struct nand_chip *chip = mtd->priv;
Huang Shijie97de79e02013-10-18 14:20:53 +08004079 struct nand_ecc_ctrl *ecc = &chip->ecc;
Huang Shijief02ea4e2014-01-13 14:27:12 +08004080 struct nand_buffers *nbuf;
David Woodhouse3b85c322006-09-25 17:06:53 +01004081
Brian Norrise2414f42012-02-06 13:44:00 -08004082 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
4083 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4084 !(chip->bbt_options & NAND_BBT_USE_FLASH));
4085
Huang Shijief02ea4e2014-01-13 14:27:12 +08004086 if (!(chip->options & NAND_OWN_BUFFERS)) {
4087 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4088 + mtd->oobsize * 3, GFP_KERNEL);
4089 if (!nbuf)
4090 return -ENOMEM;
4091 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4092 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4093 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4094
4095 chip->buffers = nbuf;
4096 } else {
4097 if (!chip->buffers)
4098 return -ENOMEM;
4099 }
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004100
David Woodhouse7dcdcbef2006-10-21 17:09:53 +01004101 /* Set the internal oob buffer location, just after the page data */
David Woodhouse784f4d52006-10-22 01:47:45 +01004102 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004103
4104 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004105 * If no default placement scheme is given, select an appropriate one.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004106 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004107 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004108 switch (mtd->oobsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 case 8:
Huang Shijie97de79e02013-10-18 14:20:53 +08004110 ecc->layout = &nand_oob_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 break;
4112 case 16:
Huang Shijie97de79e02013-10-18 14:20:53 +08004113 ecc->layout = &nand_oob_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 break;
4115 case 64:
Huang Shijie97de79e02013-10-18 14:20:53 +08004116 ecc->layout = &nand_oob_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 break;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004118 case 128:
Huang Shijie97de79e02013-10-18 14:20:53 +08004119 ecc->layout = &nand_oob_128;
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 default:
Brian Norrisd0370212011-07-19 10:06:08 -07004122 pr_warn("No oob scheme defined for oobsize %d\n",
4123 mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 BUG();
4125 }
4126 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004127
David Woodhouse956e9442006-09-25 17:12:39 +01004128 if (!chip->write_page)
4129 chip->write_page = nand_write_page;
4130
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004131 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -07004132 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004133 * selected and we have 256 byte pagesize fallback to software ECC
David Woodhousee0c7d762006-05-13 18:07:53 +01004134 */
David Woodhouse956e9442006-09-25 17:12:39 +01004135
Huang Shijie97de79e02013-10-18 14:20:53 +08004136 switch (ecc->mode) {
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004137 case NAND_ECC_HW_OOB_FIRST:
4138 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Huang Shijie97de79e02013-10-18 14:20:53 +08004139 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004140 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004141 BUG();
4142 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004143 if (!ecc->read_page)
4144 ecc->read_page = nand_read_page_hwecc_oob_first;
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -07004145
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004146 case NAND_ECC_HW:
Brian Norris8b6e50c2011-05-25 14:59:01 -07004147 /* Use standard hwecc read page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004148 if (!ecc->read_page)
4149 ecc->read_page = nand_read_page_hwecc;
4150 if (!ecc->write_page)
4151 ecc->write_page = nand_write_page_hwecc;
4152 if (!ecc->read_page_raw)
4153 ecc->read_page_raw = nand_read_page_raw;
4154 if (!ecc->write_page_raw)
4155 ecc->write_page_raw = nand_write_page_raw;
4156 if (!ecc->read_oob)
4157 ecc->read_oob = nand_read_oob_std;
4158 if (!ecc->write_oob)
4159 ecc->write_oob = nand_write_oob_std;
4160 if (!ecc->read_subpage)
4161 ecc->read_subpage = nand_read_subpage;
4162 if (!ecc->write_subpage)
4163 ecc->write_subpage = nand_write_subpage_hwecc;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004164
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004165 case NAND_ECC_HW_SYNDROME:
Huang Shijie97de79e02013-10-18 14:20:53 +08004166 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4167 (!ecc->read_page ||
4168 ecc->read_page == nand_read_page_hwecc ||
4169 !ecc->write_page ||
4170 ecc->write_page == nand_write_page_hwecc)) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004171 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004172 BUG();
4173 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07004174 /* Use standard syndrome read/write page function? */
Huang Shijie97de79e02013-10-18 14:20:53 +08004175 if (!ecc->read_page)
4176 ecc->read_page = nand_read_page_syndrome;
4177 if (!ecc->write_page)
4178 ecc->write_page = nand_write_page_syndrome;
4179 if (!ecc->read_page_raw)
4180 ecc->read_page_raw = nand_read_page_raw_syndrome;
4181 if (!ecc->write_page_raw)
4182 ecc->write_page_raw = nand_write_page_raw_syndrome;
4183 if (!ecc->read_oob)
4184 ecc->read_oob = nand_read_oob_syndrome;
4185 if (!ecc->write_oob)
4186 ecc->write_oob = nand_write_oob_syndrome;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +02004187
Huang Shijie97de79e02013-10-18 14:20:53 +08004188 if (mtd->writesize >= ecc->size) {
4189 if (!ecc->strength) {
Mike Dunne2788c92012-04-25 12:06:10 -07004190 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
4191 BUG();
4192 }
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004193 break;
Mike Dunne2788c92012-04-25 12:06:10 -07004194 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004195 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
4196 ecc->size, mtd->writesize);
Huang Shijie97de79e02013-10-18 14:20:53 +08004197 ecc->mode = NAND_ECC_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004199 case NAND_ECC_SOFT:
Huang Shijie97de79e02013-10-18 14:20:53 +08004200 ecc->calculate = nand_calculate_ecc;
4201 ecc->correct = nand_correct_data;
4202 ecc->read_page = nand_read_page_swecc;
4203 ecc->read_subpage = nand_read_subpage;
4204 ecc->write_page = nand_write_page_swecc;
4205 ecc->read_page_raw = nand_read_page_raw;
4206 ecc->write_page_raw = nand_write_page_raw;
4207 ecc->read_oob = nand_read_oob_std;
4208 ecc->write_oob = nand_write_oob_std;
4209 if (!ecc->size)
4210 ecc->size = 256;
4211 ecc->bytes = 3;
4212 ecc->strength = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004214
Ivan Djelic193bd402011-03-11 11:05:33 +01004215 case NAND_ECC_SOFT_BCH:
4216 if (!mtd_nand_has_bch()) {
Erico Nunes148256f2014-03-11 01:31:26 -03004217 pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01004218 BUG();
4219 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004220 ecc->calculate = nand_bch_calculate_ecc;
4221 ecc->correct = nand_bch_correct_data;
4222 ecc->read_page = nand_read_page_swecc;
4223 ecc->read_subpage = nand_read_subpage;
4224 ecc->write_page = nand_write_page_swecc;
4225 ecc->read_page_raw = nand_read_page_raw;
4226 ecc->write_page_raw = nand_write_page_raw;
4227 ecc->read_oob = nand_read_oob_std;
4228 ecc->write_oob = nand_write_oob_std;
Ivan Djelic193bd402011-03-11 11:05:33 +01004229 /*
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004230 * Board driver should supply ecc.size and ecc.strength values
4231 * to select how many bits are correctable. Otherwise, default
4232 * to 4 bits for large page devices.
Ivan Djelic193bd402011-03-11 11:05:33 +01004233 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004234 if (!ecc->size && (mtd->oobsize >= 64)) {
4235 ecc->size = 512;
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004236 ecc->strength = 4;
Ivan Djelic193bd402011-03-11 11:05:33 +01004237 }
Aaron Sierrae0377cd2015-01-14 17:41:31 -06004238
4239 /* See nand_bch_init() for details. */
4240 ecc->bytes = DIV_ROUND_UP(
4241 ecc->strength * fls(8 * ecc->size), 8);
Huang Shijie97de79e02013-10-18 14:20:53 +08004242 ecc->priv = nand_bch_init(mtd, ecc->size, ecc->bytes,
4243 &ecc->layout);
4244 if (!ecc->priv) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07004245 pr_warn("BCH ECC initialization failed!\n");
Ivan Djelic193bd402011-03-11 11:05:33 +01004246 BUG();
4247 }
4248 break;
4249
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004250 case NAND_ECC_NONE:
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02004251 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Huang Shijie97de79e02013-10-18 14:20:53 +08004252 ecc->read_page = nand_read_page_raw;
4253 ecc->write_page = nand_write_page_raw;
4254 ecc->read_oob = nand_read_oob_std;
4255 ecc->read_page_raw = nand_read_page_raw;
4256 ecc->write_page_raw = nand_write_page_raw;
4257 ecc->write_oob = nand_write_oob_std;
4258 ecc->size = mtd->writesize;
4259 ecc->bytes = 0;
4260 ecc->strength = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 break;
David Woodhouse956e9442006-09-25 17:12:39 +01004262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 default:
Huang Shijie97de79e02013-10-18 14:20:53 +08004264 pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004265 BUG();
4266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
Brian Norris9ce244b2011-08-30 18:45:37 -07004268 /* For many systems, the standard OOB write also works for raw */
Huang Shijie97de79e02013-10-18 14:20:53 +08004269 if (!ecc->read_oob_raw)
4270 ecc->read_oob_raw = ecc->read_oob;
4271 if (!ecc->write_oob_raw)
4272 ecc->write_oob_raw = ecc->write_oob;
Brian Norris9ce244b2011-08-30 18:45:37 -07004273
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004274 /*
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004275 * The number of bytes available for a client to place data into
Brian Norris8b6e50c2011-05-25 14:59:01 -07004276 * the out of band area.
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004277 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004278 ecc->layout->oobavail = 0;
4279 for (i = 0; ecc->layout->oobfree[i].length
4280 && i < ARRAY_SIZE(ecc->layout->oobfree); i++)
4281 ecc->layout->oobavail += ecc->layout->oobfree[i].length;
4282 mtd->oobavail = ecc->layout->oobavail;
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004283
Thomas Petazzoni54c39e92014-07-02 15:16:32 +02004284 /* ECC sanity check: warn if it's too weak */
4285 if (!nand_ecc_strength_good(mtd))
4286 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
4287 mtd->name);
Ezequiel Garcia67a9ad92014-05-14 14:58:06 -03004288
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02004289 /*
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004290 * Set the number of read / write steps for one page depending on ECC
Brian Norris8b6e50c2011-05-25 14:59:01 -07004291 * mode.
Thomas Gleixner7aa65bf2006-05-23 11:54:38 +02004292 */
Huang Shijie97de79e02013-10-18 14:20:53 +08004293 ecc->steps = mtd->writesize / ecc->size;
4294 if (ecc->steps * ecc->size != mtd->writesize) {
Brian Norris9a4d4d62011-07-19 10:06:07 -07004295 pr_warn("Invalid ECC parameters\n");
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02004296 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 }
Huang Shijie97de79e02013-10-18 14:20:53 +08004298 ecc->total = ecc->steps * ecc->bytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004299
Brian Norris8b6e50c2011-05-25 14:59:01 -07004300 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Huang Shijie1d0ed692013-09-25 14:58:10 +08004301 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
Huang Shijie97de79e02013-10-18 14:20:53 +08004302 switch (ecc->steps) {
Thomas Gleixner29072b92006-09-28 15:38:36 +02004303 case 2:
4304 mtd->subpage_sft = 1;
4305 break;
4306 case 4:
4307 case 8:
Thomas Gleixner81ec5362007-12-12 17:27:03 +01004308 case 16:
Thomas Gleixner29072b92006-09-28 15:38:36 +02004309 mtd->subpage_sft = 2;
4310 break;
4311 }
4312 }
4313 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4314
Thomas Gleixner04bbd0e2006-05-25 09:45:29 +02004315 /* Initialize state */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004316 chip->state = FL_READY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 /* Invalidate the pagebuffer reference */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004319 chip->pagebuf = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004321 /* Large page NAND with SOFT_ECC should support subpage reads */
Ron Lee4007e2d2014-04-25 15:01:35 +09304322 switch (ecc->mode) {
4323 case NAND_ECC_SOFT:
4324 case NAND_ECC_SOFT_BCH:
4325 if (chip->page_shift > 9)
4326 chip->options |= NAND_SUBPAGE_READ;
4327 break;
4328
4329 default:
4330 break;
4331 }
Jeff Westfahla5ff4f12012-08-13 16:35:30 -05004332
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 /* Fill in remaining MTD driver data */
Huang Shijie963d1c22013-09-25 14:58:21 +08004334 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Maxim Levitsky93edbad2010-02-22 20:39:40 +02004335 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4336 MTD_CAP_NANDFLASH;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004337 mtd->_erase = nand_erase;
4338 mtd->_point = NULL;
4339 mtd->_unpoint = NULL;
4340 mtd->_read = nand_read;
4341 mtd->_write = nand_write;
4342 mtd->_panic_write = panic_nand_write;
4343 mtd->_read_oob = nand_read_oob;
4344 mtd->_write_oob = nand_write_oob;
4345 mtd->_sync = nand_sync;
4346 mtd->_lock = NULL;
4347 mtd->_unlock = NULL;
4348 mtd->_suspend = nand_suspend;
4349 mtd->_resume = nand_resume;
Scott Branden72ea4032014-11-20 11:18:05 -08004350 mtd->_reboot = nand_shutdown;
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03004351 mtd->_block_isreserved = nand_block_isreserved;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +02004352 mtd->_block_isbad = nand_block_isbad;
4353 mtd->_block_markbad = nand_block_markbad;
Anatolij Gustschincbcab652010-12-16 23:42:16 +01004354 mtd->writebufsize = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Mike Dunn6a918ba2012-03-11 14:21:11 -07004356 /* propagate ecc info to mtd_info */
Huang Shijie97de79e02013-10-18 14:20:53 +08004357 mtd->ecclayout = ecc->layout;
4358 mtd->ecc_strength = ecc->strength;
4359 mtd->ecc_step_size = ecc->size;
Shmulik Ladkaniea3b2ea2012-06-08 18:29:06 +03004360 /*
4361 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4362 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4363 * properly set.
4364 */
4365 if (!mtd->bitflip_threshold)
Brian Norris240181f2015-01-12 12:51:29 -08004366 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004368 /* Check, if we should skip the bad block table scan */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004369 if (chip->options & NAND_SKIP_BBTSCAN)
Thomas Gleixner0040bf32005-02-09 12:20:00 +00004370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
4372 /* Build bad block table */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004373 return chip->scan_bbt(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004375EXPORT_SYMBOL(nand_scan_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
Brian Norris8b6e50c2011-05-25 14:59:01 -07004377/*
4378 * is_module_text_address() isn't exported, and it's mostly a pointless
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004379 * test if this is a module _anyway_ -- they'd have to try _really_ hard
Brian Norris8b6e50c2011-05-25 14:59:01 -07004380 * to call us from in-kernel code if the core NAND support is modular.
4381 */
David Woodhouse3b85c322006-09-25 17:06:53 +01004382#ifdef MODULE
4383#define caller_is_module() (1)
4384#else
4385#define caller_is_module() \
Rusty Russella6e6abd2009-03-31 13:05:31 -06004386 is_module_text_address((unsigned long)__builtin_return_address(0))
David Woodhouse3b85c322006-09-25 17:06:53 +01004387#endif
4388
4389/**
4390 * nand_scan - [NAND Interface] Scan for the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004391 * @mtd: MTD device structure
4392 * @maxchips: number of chips to scan for
David Woodhouse3b85c322006-09-25 17:06:53 +01004393 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07004394 * This fills out all the uninitialized function pointers with the defaults.
4395 * The flash ID is read and the mtd/chip structures are filled with the
4396 * appropriate values. The mtd->owner field must be set to the module of the
4397 * caller.
David Woodhouse3b85c322006-09-25 17:06:53 +01004398 */
4399int nand_scan(struct mtd_info *mtd, int maxchips)
4400{
4401 int ret;
4402
4403 /* Many callers got this wrong, so check for it for a while... */
4404 if (!mtd->owner && caller_is_module()) {
Brian Norrisd0370212011-07-19 10:06:08 -07004405 pr_crit("%s called with NULL mtd->owner!\n", __func__);
David Woodhouse3b85c322006-09-25 17:06:53 +01004406 BUG();
4407 }
4408
David Woodhouse5e81e882010-02-26 18:32:56 +00004409 ret = nand_scan_ident(mtd, maxchips, NULL);
David Woodhouse3b85c322006-09-25 17:06:53 +01004410 if (!ret)
4411 ret = nand_scan_tail(mtd);
4412 return ret;
4413}
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004414EXPORT_SYMBOL(nand_scan);
David Woodhouse3b85c322006-09-25 17:06:53 +01004415
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004417 * nand_release - [NAND Interface] Free resources held by the NAND device
Brian Norris8b6e50c2011-05-25 14:59:01 -07004418 * @mtd: MTD device structure
4419 */
David Woodhousee0c7d762006-05-13 18:07:53 +01004420void nand_release(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421{
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004422 struct nand_chip *chip = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
Ivan Djelic193bd402011-03-11 11:05:33 +01004424 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
4425 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4426
Jamie Iles5ffcaf32011-05-23 10:22:46 +01004427 mtd_device_unregister(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Jesper Juhlfa671642005-11-07 01:01:27 -08004429 /* Free bad block table memory */
Thomas Gleixnerace4dfe2006-05-24 12:07:37 +02004430 kfree(chip->bbt);
David Woodhouse4bf63fc2006-09-25 17:08:04 +01004431 if (!(chip->options & NAND_OWN_BUFFERS))
4432 kfree(chip->buffers);
Brian Norris58373ff2010-07-15 12:15:44 -07004433
4434 /* Free bad block descriptor memory */
4435 if (chip->badblock_pattern && chip->badblock_pattern->options
4436 & NAND_BBT_DYNAMICSTRUCT)
4437 kfree(chip->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438}
David Woodhousee0c7d762006-05-13 18:07:53 +01004439EXPORT_SYMBOL_GPL(nand_release);
Richard Purdie8fe833c2006-03-31 02:31:14 -08004440
4441static int __init nand_base_init(void)
4442{
4443 led_trigger_register_simple("nand-disk", &nand_led_trigger);
4444 return 0;
4445}
4446
4447static void __exit nand_base_exit(void)
4448{
4449 led_trigger_unregister_simple(nand_led_trigger);
4450}
4451
4452module_init(nand_base_init);
4453module_exit(nand_base_exit);
4454
David Woodhousee0c7d762006-05-13 18:07:53 +01004455MODULE_LICENSE("GPL");
Florian Fainelli7351d3a2010-09-07 13:23:45 +02004456MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4457MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
David Woodhousee0c7d762006-05-13 18:07:53 +01004458MODULE_DESCRIPTION("Generic NAND flash driver code");