blob: 9e8fc1ffe24f8fc0ec5e6e5e651e78f060d2b041 [file] [log] [blame]
Wolfgang Denk932394a2005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02007 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02008 * Additional technical information is available on
Scott Woodc45912d2008-10-24 16:20:43 -05009 * http://www.linux-mtd.infradead.org/doc/nand.html
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020010 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020011 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
William Juulcfa460a2007-10-31 13:53:06 +010012 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk932394a2005-08-17 12:55:25 +020013 *
William Juulcfa460a2007-10-31 13:53:06 +010014 * Credits:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020015 * David Woodhouse for adding multichip support
16 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020017 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
18 * rework for 2K page size chips
19 *
William Juulcfa460a2007-10-31 13:53:06 +010020 * TODO:
Wolfgang Denk932394a2005-08-17 12:55:25 +020021 * Enable cached programming for 2k page size chips
22 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Sergey Lapindfe64e22013-01-14 03:46:50 +000023 * if we have HW ECC support.
Scott Woodc45912d2008-10-24 16:20:43 -050024 * BBT table is not serialized, has to be fixed
Wolfgang Denk932394a2005-08-17 12:55:25 +020025 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020026 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License version 2 as
28 * published by the Free Software Foundation.
29 *
30 */
31
Heiko Schocherff94bc42014-06-24 10:10:04 +020032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Wolfgang Denk932394a2005-08-17 12:55:25 +020033#include <common.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020034#include <malloc.h>
35#include <watchdog.h>
William Juulcfa460a2007-10-31 13:53:06 +010036#include <linux/err.h>
Mike Frysinger7b15e2b2012-04-09 13:39:55 +000037#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020038#include <linux/mtd/mtd.h>
39#include <linux/mtd/nand.h>
40#include <linux/mtd/nand_ecc.h>
Christian Hitz4c6de852011-10-12 09:31:59 +020041#include <linux/mtd/nand_bch.h>
Stefan Roese10bb62d2009-04-24 15:58:33 +020042#ifdef CONFIG_MTD_PARTITIONS
43#include <linux/mtd/partitions.h>
44#endif
Wolfgang Denk932394a2005-08-17 12:55:25 +020045#include <asm/io.h>
46#include <asm/errno.h>
47
Heiko Schocherff94bc42014-06-24 10:10:04 +020048static bool is_module_text_address(unsigned long addr) {return 0;}
Heiko Schocherff94bc42014-06-24 10:10:04 +020049
Wolfgang Denk932394a2005-08-17 12:55:25 +020050/* Define default oob placement schemes for large and small page devices */
William Juulcfa460a2007-10-31 13:53:06 +010051static struct nand_ecclayout nand_oob_8 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020052 .eccbytes = 3,
53 .eccpos = {0, 1, 2},
William Juulcfa460a2007-10-31 13:53:06 +010054 .oobfree = {
55 {.offset = 3,
56 .length = 2},
57 {.offset = 6,
Christian Hitz90e3f392011-10-12 09:32:01 +020058 .length = 2} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020059};
60
William Juulcfa460a2007-10-31 13:53:06 +010061static struct nand_ecclayout nand_oob_16 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020062 .eccbytes = 6,
63 .eccpos = {0, 1, 2, 3, 6, 7},
William Juulcfa460a2007-10-31 13:53:06 +010064 .oobfree = {
65 {.offset = 8,
Christian Hitz90e3f392011-10-12 09:32:01 +020066 . length = 8} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020067};
68
William Juulcfa460a2007-10-31 13:53:06 +010069static struct nand_ecclayout nand_oob_64 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020070 .eccbytes = 24,
71 .eccpos = {
William Juulcfa460a2007-10-31 13:53:06 +010072 40, 41, 42, 43, 44, 45, 46, 47,
73 48, 49, 50, 51, 52, 53, 54, 55,
74 56, 57, 58, 59, 60, 61, 62, 63},
75 .oobfree = {
76 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +020077 .length = 38} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020078};
79
William Juulcfa460a2007-10-31 13:53:06 +010080static struct nand_ecclayout nand_oob_128 = {
Sergei Poselenov248ae5c2008-06-06 15:42:43 +020081 .eccbytes = 48,
82 .eccpos = {
Christian Hitz90e3f392011-10-12 09:32:01 +020083 80, 81, 82, 83, 84, 85, 86, 87,
84 88, 89, 90, 91, 92, 93, 94, 95,
85 96, 97, 98, 99, 100, 101, 102, 103,
William Juulcfa460a2007-10-31 13:53:06 +010086 104, 105, 106, 107, 108, 109, 110, 111,
87 112, 113, 114, 115, 116, 117, 118, 119,
88 120, 121, 122, 123, 124, 125, 126, 127},
89 .oobfree = {
90 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +020091 .length = 78} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020092};
93
Heiko Schocherff94bc42014-06-24 10:10:04 +020094static int nand_get_device(struct mtd_info *mtd, int new_state);
William Juulcfa460a2007-10-31 13:53:06 +010095
96static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
97 struct mtd_oob_ops *ops);
98
Heiko Schocherff94bc42014-06-24 10:10:04 +020099/*
100 * For devices which display every fart in the system on a separate LED. Is
101 * compiled away when LED support is disabled.
102 */
103DEFINE_LED_TRIGGER(nand_led_trigger);
Sergei Poselenov248ae5c2008-06-06 15:42:43 +0200104
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200105static int check_offs_len(struct mtd_info *mtd,
106 loff_t ofs, uint64_t len)
107{
108 struct nand_chip *chip = mtd->priv;
109 int ret = 0;
110
111 /* Start address must align on block boundary */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200112 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
113 pr_debug("%s: unaligned address\n", __func__);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200114 ret = -EINVAL;
115 }
116
117 /* Length must align on block boundary */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200118 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
119 pr_debug("%s: length not block aligned\n", __func__);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200120 ret = -EINVAL;
121 }
122
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200123 return ret;
124}
125
Wolfgang Denk932394a2005-08-17 12:55:25 +0200126/**
127 * nand_release_device - [GENERIC] release chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000128 * @mtd: MTD device structure
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200129 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200130 * Release chip lock and wake up anyone waiting on the device.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200131 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200132static void nand_release_device(struct mtd_info *mtd)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100133{
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200134 struct nand_chip *chip = mtd->priv;
135
136 /* De-select the NAND device */
137 chip->select_chip(mtd, -1);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100138}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200139
140/**
141 * nand_read_byte - [DEFAULT] read one byte from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000142 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200143 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200144 * Default read function for 8bit buswidth
Wolfgang Denk932394a2005-08-17 12:55:25 +0200145 */
Simon Schwarz82645f82011-10-31 06:34:44 +0000146uint8_t nand_read_byte(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200147{
William Juulcfa460a2007-10-31 13:53:06 +0100148 struct nand_chip *chip = mtd->priv;
149 return readb(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200150}
151
152/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200153 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000154 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200155 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000156 * Default read function for 16bit buswidth with endianness conversion.
157 *
Wolfgang Denk932394a2005-08-17 12:55:25 +0200158 */
William Juulcfa460a2007-10-31 13:53:06 +0100159static uint8_t nand_read_byte16(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200160{
William Juulcfa460a2007-10-31 13:53:06 +0100161 struct nand_chip *chip = mtd->priv;
162 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200163}
164
165/**
166 * nand_read_word - [DEFAULT] read one word from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000167 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200168 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000169 * Default read function for 16bit buswidth without endianness conversion.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200170 */
171static u16 nand_read_word(struct mtd_info *mtd)
172{
William Juulcfa460a2007-10-31 13:53:06 +0100173 struct nand_chip *chip = mtd->priv;
174 return readw(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200175}
176
177/**
178 * nand_select_chip - [DEFAULT] control CE line
Sergey Lapindfe64e22013-01-14 03:46:50 +0000179 * @mtd: MTD device structure
180 * @chipnr: chipnumber to select, -1 for deselect
Wolfgang Denk932394a2005-08-17 12:55:25 +0200181 *
182 * Default select function for 1 chip devices.
183 */
William Juulcfa460a2007-10-31 13:53:06 +0100184static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200185{
William Juulcfa460a2007-10-31 13:53:06 +0100186 struct nand_chip *chip = mtd->priv;
187
188 switch (chipnr) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200189 case -1:
William Juulcfa460a2007-10-31 13:53:06 +0100190 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200191 break;
192 case 0:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200193 break;
194
195 default:
196 BUG();
197 }
198}
199
200/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200201 * nand_write_byte - [DEFAULT] write single byte to chip
202 * @mtd: MTD device structure
203 * @byte: value to write
204 *
205 * Default function to write a byte to I/O[7:0]
206 */
207static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
208{
209 struct nand_chip *chip = mtd->priv;
210
211 chip->write_buf(mtd, &byte, 1);
212}
213
214/**
215 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
216 * @mtd: MTD device structure
217 * @byte: value to write
218 *
219 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
220 */
221static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
222{
223 struct nand_chip *chip = mtd->priv;
224 uint16_t word = byte;
225
226 /*
227 * It's not entirely clear what should happen to I/O[15:8] when writing
228 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
229 *
230 * When the host supports a 16-bit bus width, only data is
231 * transferred at the 16-bit width. All address and command line
232 * transfers shall use only the lower 8-bits of the data bus. During
233 * command transfers, the host may place any value on the upper
234 * 8-bits of the data bus. During address transfers, the host shall
235 * set the upper 8-bits of the data bus to 00h.
236 *
237 * One user of the write_byte callback is nand_onfi_set_features. The
238 * four parameters are specified to be written to I/O[7:0], but this is
239 * neither an address nor a command transfer. Let's assume a 0 on the
240 * upper I/O lines is OK.
241 */
242 chip->write_buf(mtd, (uint8_t *)&word, 2);
243}
244
Scott Wood27331062015-06-22 22:38:32 -0500245#if !defined(CONFIG_BLACKFIN)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200246static void iowrite8_rep(void *addr, const uint8_t *buf, int len)
247{
248 int i;
249
250 for (i = 0; i < len; i++)
251 writeb(buf[i], addr);
252}
253static void ioread8_rep(void *addr, uint8_t *buf, int len)
254{
255 int i;
256
257 for (i = 0; i < len; i++)
258 buf[i] = readb(addr);
259}
260
261static void ioread16_rep(void *addr, void *buf, int len)
262{
263 int i;
264 u16 *p = (u16 *) buf;
Stefan Roesebe16aba2014-09-05 09:57:01 +0200265
Heiko Schocherff94bc42014-06-24 10:10:04 +0200266 for (i = 0; i < len; i++)
267 p[i] = readw(addr);
268}
269
270static void iowrite16_rep(void *addr, void *buf, int len)
271{
272 int i;
273 u16 *p = (u16 *) buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200274
275 for (i = 0; i < len; i++)
276 writew(p[i], addr);
277}
278#endif
279
280/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200281 * nand_write_buf - [DEFAULT] write buffer to chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000282 * @mtd: MTD device structure
283 * @buf: data buffer
284 * @len: number of bytes to write
Wolfgang Denk932394a2005-08-17 12:55:25 +0200285 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000286 * Default write function for 8bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200287 */
Simon Schwarz82645f82011-10-31 06:34:44 +0000288void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200289{
William Juulcfa460a2007-10-31 13:53:06 +0100290 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200291
Heiko Schocherff94bc42014-06-24 10:10:04 +0200292 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200293}
294
295/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200296 * nand_read_buf - [DEFAULT] read chip data into buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000297 * @mtd: MTD device structure
298 * @buf: buffer to store date
299 * @len: number of bytes to read
Wolfgang Denk932394a2005-08-17 12:55:25 +0200300 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000301 * Default read function for 8bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200302 */
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400303void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200304{
William Juulcfa460a2007-10-31 13:53:06 +0100305 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200306
Heiko Schocherff94bc42014-06-24 10:10:04 +0200307 ioread8_rep(chip->IO_ADDR_R, buf, len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200308}
309
Heiko Schocherff94bc42014-06-24 10:10:04 +0200310/**
311 * nand_write_buf16 - [DEFAULT] write buffer to chip
312 * @mtd: MTD device structure
313 * @buf: data buffer
314 * @len: number of bytes to write
315 *
316 * Default write function for 16bit buswidth.
317 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200318void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200319{
320 struct nand_chip *chip = mtd->priv;
321 u16 *p = (u16 *) buf;
322
323 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
324}
325
326/**
327 * nand_read_buf16 - [DEFAULT] read chip data into buffer
328 * @mtd: MTD device structure
329 * @buf: buffer to store date
330 * @len: number of bytes to read
331 *
332 * Default read function for 16bit buswidth.
333 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200334void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200335{
336 struct nand_chip *chip = mtd->priv;
337 u16 *p = (u16 *) buf;
338
339 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
340}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200341
342/**
343 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000344 * @mtd: MTD device structure
345 * @ofs: offset from device start
346 * @getchip: 0, if the chip is already selected
Wolfgang Denk932394a2005-08-17 12:55:25 +0200347 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200348 * Check, if the block is bad.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200349 */
350static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
351{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000352 int page, chipnr, res = 0, i = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100353 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200354 u16 bad;
355
Sergey Lapindfe64e22013-01-14 03:46:50 +0000356 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200357 ofs += mtd->erasesize - mtd->writesize;
358
William Juulcfa460a2007-10-31 13:53:06 +0100359 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Thomas Knoblocha7988652007-05-05 07:04:42 +0200360
Wolfgang Denk932394a2005-08-17 12:55:25 +0200361 if (getchip) {
William Juulcfa460a2007-10-31 13:53:06 +0100362 chipnr = (int)(ofs >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200363
Heiko Schocherff94bc42014-06-24 10:10:04 +0200364 nand_get_device(mtd, FL_READING);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200365
366 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +0100367 chip->select_chip(mtd, chipnr);
Thomas Knoblocha7988652007-05-05 07:04:42 +0200368 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200369
Sergey Lapindfe64e22013-01-14 03:46:50 +0000370 do {
371 if (chip->options & NAND_BUSWIDTH_16) {
372 chip->cmdfunc(mtd, NAND_CMD_READOOB,
373 chip->badblockpos & 0xFE, page);
374 bad = cpu_to_le16(chip->read_word(mtd));
375 if (chip->badblockpos & 0x1)
376 bad >>= 8;
377 else
378 bad &= 0xFF;
379 } else {
380 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
381 page);
382 bad = chip->read_byte(mtd);
383 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200384
Sergey Lapindfe64e22013-01-14 03:46:50 +0000385 if (likely(chip->badblockbits == 8))
386 res = bad != 0xFF;
387 else
388 res = hweight8(bad) < chip->badblockbits;
389 ofs += mtd->writesize;
390 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
391 i++;
392 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200393
Heiko Schocherff94bc42014-06-24 10:10:04 +0200394 if (getchip) {
395 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200396 nand_release_device(mtd);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200397 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200398
Wolfgang Denk932394a2005-08-17 12:55:25 +0200399 return res;
400}
401
402/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200403 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Sergey Lapindfe64e22013-01-14 03:46:50 +0000404 * @mtd: MTD device structure
405 * @ofs: offset from device start
Wolfgang Denk932394a2005-08-17 12:55:25 +0200406 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000407 * This is the default implementation, which can be overridden by a hardware
Heiko Schocherff94bc42014-06-24 10:10:04 +0200408 * specific driver. It provides the details for writing a bad block marker to a
409 * block.
410 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200411static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
412{
William Juulcfa460a2007-10-31 13:53:06 +0100413 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200414 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +0100415 uint8_t buf[2] = { 0, 0 };
Heiko Schocherff94bc42014-06-24 10:10:04 +0200416 int ret = 0, res, i = 0;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200417
Scott Woodd3963722015-06-26 19:03:26 -0500418 memset(&ops, 0, sizeof(ops));
Heiko Schocherff94bc42014-06-24 10:10:04 +0200419 ops.oobbuf = buf;
420 ops.ooboffs = chip->badblockpos;
421 if (chip->options & NAND_BUSWIDTH_16) {
422 ops.ooboffs &= ~0x01;
423 ops.len = ops.ooblen = 2;
424 } else {
425 ops.len = ops.ooblen = 1;
426 }
427 ops.mode = MTD_OPS_PLACE_OOB;
428
429 /* Write to first/last page(s) if necessary */
430 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
431 ofs += mtd->erasesize - mtd->writesize;
432 do {
433 res = nand_do_write_oob(mtd, ofs, &ops);
434 if (!ret)
435 ret = res;
436
437 i++;
438 ofs += mtd->writesize;
439 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
440
441 return ret;
442}
443
444/**
445 * nand_block_markbad_lowlevel - mark a block bad
446 * @mtd: MTD device structure
447 * @ofs: offset from device start
448 *
449 * This function performs the generic NAND bad block marking steps (i.e., bad
450 * block table(s) and/or marker(s)). We only allow the hardware driver to
451 * specify how to write bad block markers to OOB (chip->block_markbad).
452 *
453 * We try operations in the following order:
454 * (1) erase the affected block, to allow OOB marker to be written cleanly
455 * (2) write bad block marker to OOB area of affected block (unless flag
456 * NAND_BBT_NO_OOB_BBM is present)
457 * (3) update the BBT
458 * Note that we retain the first error encountered in (2) or (3), finish the
459 * procedures, and dump the error in the end.
460*/
461static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
462{
463 struct nand_chip *chip = mtd->priv;
464 int res, ret = 0;
465
466 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000467 struct erase_info einfo;
468
469 /* Attempt erase before marking OOB */
470 memset(&einfo, 0, sizeof(einfo));
471 einfo.mtd = mtd;
472 einfo.addr = ofs;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200473 einfo.len = 1ULL << chip->phys_erase_shift;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000474 nand_erase_nand(mtd, &einfo, 0);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200475
Heiko Schocherff94bc42014-06-24 10:10:04 +0200476 /* Write bad block marker to OOB */
477 nand_get_device(mtd, FL_WRITING);
478 ret = chip->block_markbad(mtd, ofs);
Scott Woodc45912d2008-10-24 16:20:43 -0500479 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +0100480 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000481
Heiko Schocherff94bc42014-06-24 10:10:04 +0200482 /* Mark block bad in BBT */
483 if (chip->bbt) {
484 res = nand_markbad_bbt(mtd, ofs);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000485 if (!ret)
486 ret = res;
487 }
488
William Juulcfa460a2007-10-31 13:53:06 +0100489 if (!ret)
490 mtd->ecc_stats.badblocks++;
Scott Woodc45912d2008-10-24 16:20:43 -0500491
William Juulcfa460a2007-10-31 13:53:06 +0100492 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200493}
494
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200495/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200496 * nand_check_wp - [GENERIC] check if the chip is write protected
Sergey Lapindfe64e22013-01-14 03:46:50 +0000497 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200498 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000499 * Check, if the device is write protected. The function expects, that the
500 * device is already selected.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200501 */
William Juulcfa460a2007-10-31 13:53:06 +0100502static int nand_check_wp(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200503{
William Juulcfa460a2007-10-31 13:53:06 +0100504 struct nand_chip *chip = mtd->priv;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200505
Sergey Lapindfe64e22013-01-14 03:46:50 +0000506 /* Broken xD cards report WP despite being writable */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200507 if (chip->options & NAND_BROKEN_XD)
508 return 0;
509
Wolfgang Denk932394a2005-08-17 12:55:25 +0200510 /* Check the WP bit */
William Juulcfa460a2007-10-31 13:53:06 +0100511 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
512 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200513}
Markus Klotzbücher43638c62006-03-06 15:04:25 +0100514
Wolfgang Denk932394a2005-08-17 12:55:25 +0200515/**
Scott Woodd3963722015-06-26 19:03:26 -0500516 * nand_block_isreserved - [GENERIC] Check if a block is marked reserved.
Sergey Lapindfe64e22013-01-14 03:46:50 +0000517 * @mtd: MTD device structure
518 * @ofs: offset from device start
Ezequiel Garcia86a720a2014-05-21 19:06:12 -0300519 *
Scott Woodd3963722015-06-26 19:03:26 -0500520 * Check if the block is marked as reserved.
Ezequiel Garcia86a720a2014-05-21 19:06:12 -0300521 */
522static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs)
523{
524 struct nand_chip *chip = mtd->priv;
525
526 if (!chip->bbt)
527 return 0;
528 /* Return info from the table */
529 return nand_isreserved_bbt(mtd, ofs);
530}
531
532/**
533 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
534 * @mtd: MTD device structure
535 * @ofs: offset from device start
Sergey Lapindfe64e22013-01-14 03:46:50 +0000536 * @getchip: 0, if the chip is already selected
537 * @allowbbt: 1, if its allowed to access the bbt area
Wolfgang Denk932394a2005-08-17 12:55:25 +0200538 *
539 * Check, if the block is bad. Either by reading the bad block table or
540 * calling of the scan function.
541 */
William Juulcfa460a2007-10-31 13:53:06 +0100542static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
543 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200544{
William Juulcfa460a2007-10-31 13:53:06 +0100545 struct nand_chip *chip = mtd->priv;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200546
Masahiro Yamadaab37b762014-12-26 22:20:58 +0900547 if (!(chip->options & NAND_SKIP_BBTSCAN) &&
548 !(chip->options & NAND_BBT_SCANNED)) {
Rostislav Lisovy35c204d2014-10-22 13:40:44 +0200549 chip->options |= NAND_BBT_SCANNED;
Masahiro Yamadabf80ee62014-12-26 22:20:57 +0900550 chip->scan_bbt(mtd);
Rostislav Lisovy35c204d2014-10-22 13:40:44 +0200551 }
552
William Juulcfa460a2007-10-31 13:53:06 +0100553 if (!chip->bbt)
554 return chip->block_bad(mtd, ofs, getchip);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200555
Wolfgang Denk932394a2005-08-17 12:55:25 +0200556 /* Return info from the table */
William Juulcfa460a2007-10-31 13:53:06 +0100557 return nand_isbad_bbt(mtd, ofs, allowbbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200558}
559
Sergey Lapindfe64e22013-01-14 03:46:50 +0000560/* Wait for the ready pin, after a command. The timeout is caught later. */
William Juulcfa460a2007-10-31 13:53:06 +0100561void nand_wait_ready(struct mtd_info *mtd)
562{
563 struct nand_chip *chip = mtd->priv;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200564 u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000565 u32 time_start;
Stefan Roese12072262008-01-05 16:43:25 +0100566
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000567 time_start = get_timer(0);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000568 /* Wait until command is processed or timeout occurs */
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000569 while (get_timer(time_start) < timeo) {
Stefan Roese12072262008-01-05 16:43:25 +0100570 if (chip->dev_ready)
571 if (chip->dev_ready(mtd))
572 break;
573 }
William Juulcfa460a2007-10-31 13:53:06 +0100574}
Heiko Schocherff94bc42014-06-24 10:10:04 +0200575EXPORT_SYMBOL_GPL(nand_wait_ready);
William Juulcfa460a2007-10-31 13:53:06 +0100576
Wolfgang Denk932394a2005-08-17 12:55:25 +0200577/**
Scott Woodd3963722015-06-26 19:03:26 -0500578 * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands.
579 * @mtd: MTD device structure
580 * @timeo: Timeout in ms
581 *
582 * Wait for status ready (i.e. command done) or timeout.
583 */
584static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo)
585{
586 register struct nand_chip *chip = mtd->priv;
587 u32 time_start;
588
589 timeo = (CONFIG_SYS_HZ * timeo) / 1000;
590 time_start = get_timer(0);
591 while (get_timer(time_start) < timeo) {
592 if ((chip->read_byte(mtd) & NAND_STATUS_READY))
593 break;
594 WATCHDOG_RESET();
595 }
596};
597
598/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200599 * nand_command - [DEFAULT] Send command to NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000600 * @mtd: MTD device structure
601 * @command: the command to be sent
602 * @column: the column address for this command, -1 if none
603 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200604 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000605 * Send command to NAND device. This function is used for small page devices
Heiko Schocherff94bc42014-06-24 10:10:04 +0200606 * (512 Bytes per page).
Wolfgang Denk932394a2005-08-17 12:55:25 +0200607 */
William Juulcfa460a2007-10-31 13:53:06 +0100608static void nand_command(struct mtd_info *mtd, unsigned int command,
609 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200610{
William Juulcfa460a2007-10-31 13:53:06 +0100611 register struct nand_chip *chip = mtd->priv;
612 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200613
Sergey Lapindfe64e22013-01-14 03:46:50 +0000614 /* Write out the command to the device */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200615 if (command == NAND_CMD_SEQIN) {
616 int readcmd;
617
William Juulcfa460a2007-10-31 13:53:06 +0100618 if (column >= mtd->writesize) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200619 /* OOB area */
William Juulcfa460a2007-10-31 13:53:06 +0100620 column -= mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200621 readcmd = NAND_CMD_READOOB;
622 } else if (column < 256) {
623 /* First 256 bytes --> READ0 */
624 readcmd = NAND_CMD_READ0;
625 } else {
626 column -= 256;
627 readcmd = NAND_CMD_READ1;
628 }
William Juulcfa460a2007-10-31 13:53:06 +0100629 chip->cmd_ctrl(mtd, readcmd, ctrl);
630 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200631 }
William Juulcfa460a2007-10-31 13:53:06 +0100632 chip->cmd_ctrl(mtd, command, ctrl);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200633
Sergey Lapindfe64e22013-01-14 03:46:50 +0000634 /* Address cycle, when necessary */
William Juulcfa460a2007-10-31 13:53:06 +0100635 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
636 /* Serially input address */
637 if (column != -1) {
638 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200639 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530640 !nand_opcode_8bits(command))
William Juulcfa460a2007-10-31 13:53:06 +0100641 column >>= 1;
642 chip->cmd_ctrl(mtd, column, ctrl);
643 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200644 }
William Juulcfa460a2007-10-31 13:53:06 +0100645 if (page_addr != -1) {
646 chip->cmd_ctrl(mtd, page_addr, ctrl);
647 ctrl &= ~NAND_CTRL_CHANGE;
648 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
649 /* One more address cycle for devices > 32MiB */
650 if (chip->chipsize > (32 << 20))
651 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
652 }
653 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200654
655 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000656 * Program and erase have their own busy handlers status and sequential
657 * in needs no delay
William Juulcfa460a2007-10-31 13:53:06 +0100658 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200659 switch (command) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200660
Wolfgang Denk932394a2005-08-17 12:55:25 +0200661 case NAND_CMD_PAGEPROG:
662 case NAND_CMD_ERASE1:
663 case NAND_CMD_ERASE2:
664 case NAND_CMD_SEQIN:
665 case NAND_CMD_STATUS:
666 return;
667
668 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100669 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200670 break;
William Juulcfa460a2007-10-31 13:53:06 +0100671 udelay(chip->chip_delay);
672 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
673 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
674 chip->cmd_ctrl(mtd,
675 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Scott Woodd3963722015-06-26 19:03:26 -0500676 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
677 nand_wait_status_ready(mtd, 250);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200678 return;
679
William Juulcfa460a2007-10-31 13:53:06 +0100680 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200681 default:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200682 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200683 * If we don't have access to the busy pin, we apply the given
684 * command delay
William Juulcfa460a2007-10-31 13:53:06 +0100685 */
686 if (!chip->dev_ready) {
687 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200688 return;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200689 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200690 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000691 /*
692 * Apply this short delay always to ensure that we do wait tWB in
693 * any case on any machine.
694 */
William Juulcfa460a2007-10-31 13:53:06 +0100695 ndelay(100);
696
697 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200698}
699
700/**
701 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000702 * @mtd: MTD device structure
703 * @command: the command to be sent
704 * @column: the column address for this command, -1 if none
705 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200706 *
William Juulcfa460a2007-10-31 13:53:06 +0100707 * Send command to NAND device. This is the version for the new large page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000708 * devices. We don't have the separate regions as we have in the small page
709 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200710 */
William Juulcfa460a2007-10-31 13:53:06 +0100711static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
712 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200713{
William Juulcfa460a2007-10-31 13:53:06 +0100714 register struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200715
716 /* Emulate NAND_CMD_READOOB */
717 if (command == NAND_CMD_READOOB) {
William Juulcfa460a2007-10-31 13:53:06 +0100718 column += mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200719 command = NAND_CMD_READ0;
720 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200721
William Juulcfa460a2007-10-31 13:53:06 +0100722 /* Command latch cycle */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200723 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200724
725 if (column != -1 || page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100726 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200727
728 /* Serially input address */
729 if (column != -1) {
730 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200731 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530732 !nand_opcode_8bits(command))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200733 column >>= 1;
William Juulcfa460a2007-10-31 13:53:06 +0100734 chip->cmd_ctrl(mtd, column, ctrl);
735 ctrl &= ~NAND_CTRL_CHANGE;
736 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200737 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200738 if (page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100739 chip->cmd_ctrl(mtd, page_addr, ctrl);
740 chip->cmd_ctrl(mtd, page_addr >> 8,
741 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200742 /* One more address cycle for devices > 128MiB */
William Juulcfa460a2007-10-31 13:53:06 +0100743 if (chip->chipsize > (128 << 20))
744 chip->cmd_ctrl(mtd, page_addr >> 16,
745 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200746 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200747 }
William Juulcfa460a2007-10-31 13:53:06 +0100748 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200749
750 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000751 * Program and erase have their own busy handlers status, sequential
Scott Woodd3963722015-06-26 19:03:26 -0500752 * in and status need no delay.
William Juulcfa460a2007-10-31 13:53:06 +0100753 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200754 switch (command) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200755
Wolfgang Denk932394a2005-08-17 12:55:25 +0200756 case NAND_CMD_CACHEDPROG:
757 case NAND_CMD_PAGEPROG:
758 case NAND_CMD_ERASE1:
759 case NAND_CMD_ERASE2:
760 case NAND_CMD_SEQIN:
William Juulcfa460a2007-10-31 13:53:06 +0100761 case NAND_CMD_RNDIN:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200762 case NAND_CMD_STATUS:
William Juulcfa460a2007-10-31 13:53:06 +0100763 return;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200764
765 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100766 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200767 break;
William Juulcfa460a2007-10-31 13:53:06 +0100768 udelay(chip->chip_delay);
769 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
770 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
771 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
772 NAND_NCE | NAND_CTRL_CHANGE);
Scott Woodd3963722015-06-26 19:03:26 -0500773 /* EZ-NAND can take upto 250ms as per ONFi v4.0 */
774 nand_wait_status_ready(mtd, 250);
William Juulcfa460a2007-10-31 13:53:06 +0100775 return;
776
777 case NAND_CMD_RNDOUT:
778 /* No ready / busy check necessary */
779 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
780 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
781 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
782 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200783 return;
784
785 case NAND_CMD_READ0:
William Juulcfa460a2007-10-31 13:53:06 +0100786 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
787 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
788 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
789 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200790
William Juulcfa460a2007-10-31 13:53:06 +0100791 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200792 default:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200793 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200794 * If we don't have access to the busy pin, we apply the given
Sergey Lapindfe64e22013-01-14 03:46:50 +0000795 * command delay.
William Juulcfa460a2007-10-31 13:53:06 +0100796 */
797 if (!chip->dev_ready) {
798 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200799 return;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200800 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200801 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200802
Sergey Lapindfe64e22013-01-14 03:46:50 +0000803 /*
804 * Apply this short delay always to ensure that we do wait tWB in
805 * any case on any machine.
806 */
William Juulcfa460a2007-10-31 13:53:06 +0100807 ndelay(100);
808
809 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200810}
811
812/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200813 * panic_nand_get_device - [GENERIC] Get chip for selected access
Sergey Lapindfe64e22013-01-14 03:46:50 +0000814 * @chip: the nand chip descriptor
815 * @mtd: MTD device structure
816 * @new_state: the state which is requested
Wolfgang Denk932394a2005-08-17 12:55:25 +0200817 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200818 * Used when in panic, no locks are taken.
819 */
820static void panic_nand_get_device(struct nand_chip *chip,
821 struct mtd_info *mtd, int new_state)
822{
823 /* Hardware controller shared among independent devices */
824 chip->controller->active = chip;
825 chip->state = new_state;
826}
827
828/**
829 * nand_get_device - [GENERIC] Get chip for selected access
830 * @mtd: MTD device structure
831 * @new_state: the state which is requested
832 *
Wolfgang Denk932394a2005-08-17 12:55:25 +0200833 * Get the device and lock it for exclusive access
834 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200835static int
Heiko Schocherff94bc42014-06-24 10:10:04 +0200836nand_get_device(struct mtd_info *mtd, int new_state)
William Juulcfa460a2007-10-31 13:53:06 +0100837{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200838 struct nand_chip *chip = mtd->priv;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200839 chip->state = new_state;
William Juulcfa460a2007-10-31 13:53:06 +0100840 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200841}
842
843/**
844 * panic_nand_wait - [GENERIC] wait until the command is done
845 * @mtd: MTD device structure
846 * @chip: NAND chip structure
847 * @timeo: timeout
848 *
849 * Wait for command done. This is a helper function for nand_wait used when
850 * we are in interrupt context. May happen when in panic and trying to write
851 * an oops through mtdoops.
852 */
853static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
854 unsigned long timeo)
855{
856 int i;
857 for (i = 0; i < timeo; i++) {
858 if (chip->dev_ready) {
859 if (chip->dev_ready(mtd))
860 break;
861 } else {
862 if (chip->read_byte(mtd) & NAND_STATUS_READY)
863 break;
864 }
865 mdelay(1);
866 }
William Juulcfa460a2007-10-31 13:53:06 +0100867}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200868
869/**
Sergey Lapindfe64e22013-01-14 03:46:50 +0000870 * nand_wait - [DEFAULT] wait until the command is done
871 * @mtd: MTD device structure
872 * @chip: NAND chip structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200873 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000874 * Wait for command done. This applies to erase and program only. Erase can
875 * take up to 400ms and program up to 20ms according to general NAND and
876 * SmartMedia specs.
William Juulcfa460a2007-10-31 13:53:06 +0100877 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200878static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200879{
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100880
Heiko Schocherff94bc42014-06-24 10:10:04 +0200881 int status, state = chip->state;
882 unsigned long timeo = (state == FL_ERASING ? 400 : 20);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100883
Heiko Schocherff94bc42014-06-24 10:10:04 +0200884 led_trigger_event(nand_led_trigger, LED_FULL);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100885
Heiko Schocherff94bc42014-06-24 10:10:04 +0200886 /*
887 * Apply this short delay always to ensure that we do wait tWB in any
888 * case on any machine.
889 */
890 ndelay(100);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100891
Heiko Schocherff94bc42014-06-24 10:10:04 +0200892 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
893
Heiko Schocherff94bc42014-06-24 10:10:04 +0200894 u32 timer = (CONFIG_SYS_HZ * timeo) / 1000;
895 u32 time_start;
896
897 time_start = get_timer(0);
898 while (get_timer(time_start) < timer) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200899 if (chip->dev_ready) {
900 if (chip->dev_ready(mtd))
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100901 break;
902 } else {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200903 if (chip->read_byte(mtd) & NAND_STATUS_READY)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100904 break;
905 }
906 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200907 led_trigger_event(nand_led_trigger, LED_OFF);
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100908
Heiko Schocherff94bc42014-06-24 10:10:04 +0200909 status = (int)chip->read_byte(mtd);
910 /* This can happen if in case of timeout or buggy dev_ready */
911 WARN_ON(!(status & NAND_STATUS_READY));
912 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200913}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200914
915/**
Sergey Lapindfe64e22013-01-14 03:46:50 +0000916 * nand_read_page_raw - [INTERN] read raw page data without ecc
917 * @mtd: mtd info structure
918 * @chip: nand chip info structure
919 * @buf: buffer to store read data
920 * @oob_required: caller requires OOB data read to chip->oob_poi
921 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -0500922 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000923 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200924 */
William Juulcfa460a2007-10-31 13:53:06 +0100925static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000926 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200927{
William Juulcfa460a2007-10-31 13:53:06 +0100928 chip->read_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000929 if (oob_required)
930 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +0100931 return 0;
932}
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200933
William Juulcfa460a2007-10-31 13:53:06 +0100934/**
Sergey Lapindfe64e22013-01-14 03:46:50 +0000935 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
936 * @mtd: mtd info structure
937 * @chip: nand chip info structure
938 * @buf: buffer to store read data
939 * @oob_required: caller requires OOB data read to chip->oob_poi
940 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -0500941 *
942 * We need a special oob layout and handling even when OOB isn't used.
943 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200944static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000945 struct nand_chip *chip, uint8_t *buf,
946 int oob_required, int page)
David Brownell7e866612009-11-07 16:27:01 -0500947{
948 int eccsize = chip->ecc.size;
949 int eccbytes = chip->ecc.bytes;
950 uint8_t *oob = chip->oob_poi;
951 int steps, size;
952
953 for (steps = chip->ecc.steps; steps > 0; steps--) {
954 chip->read_buf(mtd, buf, eccsize);
955 buf += eccsize;
956
957 if (chip->ecc.prepad) {
958 chip->read_buf(mtd, oob, chip->ecc.prepad);
959 oob += chip->ecc.prepad;
960 }
961
962 chip->read_buf(mtd, oob, eccbytes);
963 oob += eccbytes;
964
965 if (chip->ecc.postpad) {
966 chip->read_buf(mtd, oob, chip->ecc.postpad);
967 oob += chip->ecc.postpad;
968 }
969 }
970
971 size = mtd->oobsize - (oob - chip->oob_poi);
972 if (size)
973 chip->read_buf(mtd, oob, size);
974
975 return 0;
976}
977
978/**
Sergey Lapindfe64e22013-01-14 03:46:50 +0000979 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
980 * @mtd: mtd info structure
981 * @chip: nand chip info structure
982 * @buf: buffer to store read data
983 * @oob_required: caller requires OOB data read to chip->oob_poi
984 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +0100985 */
986static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000987 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +0100988{
989 int i, eccsize = chip->ecc.size;
990 int eccbytes = chip->ecc.bytes;
991 int eccsteps = chip->ecc.steps;
992 uint8_t *p = buf;
993 uint8_t *ecc_calc = chip->buffers->ecccalc;
994 uint8_t *ecc_code = chip->buffers->ecccode;
995 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200996 unsigned int max_bitflips = 0;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200997
Sergey Lapindfe64e22013-01-14 03:46:50 +0000998 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200999
William Juulcfa460a2007-10-31 13:53:06 +01001000 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1001 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001002
William Juulcfa460a2007-10-31 13:53:06 +01001003 for (i = 0; i < chip->ecc.total; i++)
1004 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001005
William Juulcfa460a2007-10-31 13:53:06 +01001006 eccsteps = chip->ecc.steps;
1007 p = buf;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001008
William Juulcfa460a2007-10-31 13:53:06 +01001009 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1010 int stat;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001011
William Juulcfa460a2007-10-31 13:53:06 +01001012 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001013 if (stat < 0) {
Scott Woodc45912d2008-10-24 16:20:43 -05001014 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001015 } else {
Scott Woodc45912d2008-10-24 16:20:43 -05001016 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001017 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1018 }
Scott Woodc45912d2008-10-24 16:20:43 -05001019 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001020 return max_bitflips;
Scott Woodc45912d2008-10-24 16:20:43 -05001021}
1022
1023/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001024 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Sergey Lapindfe64e22013-01-14 03:46:50 +00001025 * @mtd: mtd info structure
1026 * @chip: nand chip info structure
1027 * @data_offs: offset of requested data within the page
1028 * @readlen: data length
1029 * @bufpoi: buffer to store read data
Heiko Schocher4e67c572014-07-15 16:08:43 +02001030 * @page: page number to read
Scott Woodc45912d2008-10-24 16:20:43 -05001031 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001032static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001033 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1034 int page)
Scott Woodc45912d2008-10-24 16:20:43 -05001035{
1036 int start_step, end_step, num_steps;
1037 uint32_t *eccpos = chip->ecc.layout->eccpos;
1038 uint8_t *p;
1039 int data_col_addr, i, gaps = 0;
1040 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1041 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001042 int index;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001043 unsigned int max_bitflips = 0;
Scott Woodc45912d2008-10-24 16:20:43 -05001044
Sergey Lapindfe64e22013-01-14 03:46:50 +00001045 /* Column address within the page aligned to ECC size (256bytes) */
Scott Woodc45912d2008-10-24 16:20:43 -05001046 start_step = data_offs / chip->ecc.size;
1047 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1048 num_steps = end_step - start_step + 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001049 index = start_step * chip->ecc.bytes;
Scott Woodc45912d2008-10-24 16:20:43 -05001050
Sergey Lapindfe64e22013-01-14 03:46:50 +00001051 /* Data size aligned to ECC ecc.size */
Scott Woodc45912d2008-10-24 16:20:43 -05001052 datafrag_len = num_steps * chip->ecc.size;
1053 eccfrag_len = num_steps * chip->ecc.bytes;
1054
1055 data_col_addr = start_step * chip->ecc.size;
1056 /* If we read not a page aligned data */
1057 if (data_col_addr != 0)
1058 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1059
1060 p = bufpoi + data_col_addr;
1061 chip->read_buf(mtd, p, datafrag_len);
1062
Sergey Lapindfe64e22013-01-14 03:46:50 +00001063 /* Calculate ECC */
Scott Woodc45912d2008-10-24 16:20:43 -05001064 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1065 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1066
Sergey Lapindfe64e22013-01-14 03:46:50 +00001067 /*
1068 * The performance is faster if we position offsets according to
1069 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
1070 */
Scott Woodc45912d2008-10-24 16:20:43 -05001071 for (i = 0; i < eccfrag_len - 1; i++) {
Scott Woodd3963722015-06-26 19:03:26 -05001072 if (eccpos[i + index] + 1 != eccpos[i + index + 1]) {
Scott Woodc45912d2008-10-24 16:20:43 -05001073 gaps = 1;
1074 break;
1075 }
1076 }
1077 if (gaps) {
1078 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1079 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1080 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001081 /*
1082 * Send the command to read the particular ECC bytes take care
1083 * about buswidth alignment in read_buf.
1084 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001085 aligned_pos = eccpos[index] & ~(busw - 1);
Scott Woodc45912d2008-10-24 16:20:43 -05001086 aligned_len = eccfrag_len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001087 if (eccpos[index] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001088 aligned_len++;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001089 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001090 aligned_len++;
1091
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001092 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1093 mtd->writesize + aligned_pos, -1);
Scott Woodc45912d2008-10-24 16:20:43 -05001094 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1095 }
1096
1097 for (i = 0; i < eccfrag_len; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001098 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Scott Woodc45912d2008-10-24 16:20:43 -05001099
1100 p = bufpoi + data_col_addr;
1101 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1102 int stat;
1103
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001104 stat = chip->ecc.correct(mtd, p,
1105 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001106 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001107 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001108 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001109 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001110 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1111 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001112 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001113 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001114}
1115
Wolfgang Denk932394a2005-08-17 12:55:25 +02001116/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001117 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
1118 * @mtd: mtd info structure
1119 * @chip: nand chip info structure
1120 * @buf: buffer to store read data
1121 * @oob_required: caller requires OOB data read to chip->oob_poi
1122 * @page: page number to read
Wolfgang Denk932394a2005-08-17 12:55:25 +02001123 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001124 * Not for syndrome calculating ECC controllers which need a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001125 */
William Juulcfa460a2007-10-31 13:53:06 +01001126static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001127 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001128{
William Juulcfa460a2007-10-31 13:53:06 +01001129 int i, eccsize = chip->ecc.size;
1130 int eccbytes = chip->ecc.bytes;
1131 int eccsteps = chip->ecc.steps;
1132 uint8_t *p = buf;
1133 uint8_t *ecc_calc = chip->buffers->ecccalc;
1134 uint8_t *ecc_code = chip->buffers->ecccode;
1135 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001136 unsigned int max_bitflips = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001137
William Juulcfa460a2007-10-31 13:53:06 +01001138 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1139 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1140 chip->read_buf(mtd, p, eccsize);
1141 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1142 }
1143 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001144
William Juulcfa460a2007-10-31 13:53:06 +01001145 for (i = 0; i < chip->ecc.total; i++)
1146 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk932394a2005-08-17 12:55:25 +02001147
William Juulcfa460a2007-10-31 13:53:06 +01001148 eccsteps = chip->ecc.steps;
1149 p = buf;
1150
1151 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1152 int stat;
1153
1154 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001155 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001156 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001157 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001158 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001159 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1160 }
William Juulcfa460a2007-10-31 13:53:06 +01001161 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001162 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001163}
1164
1165/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001166 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
1167 * @mtd: mtd info structure
1168 * @chip: nand chip info structure
1169 * @buf: buffer to store read data
1170 * @oob_required: caller requires OOB data read to chip->oob_poi
1171 * @page: page number to read
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001172 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001173 * Hardware ECC for large page chips, require OOB to be read first. For this
1174 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1175 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1176 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1177 * the data area, by overwriting the NAND manufacturer bad block markings.
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001178 */
1179static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001180 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001181{
1182 int i, eccsize = chip->ecc.size;
1183 int eccbytes = chip->ecc.bytes;
1184 int eccsteps = chip->ecc.steps;
1185 uint8_t *p = buf;
1186 uint8_t *ecc_code = chip->buffers->ecccode;
1187 uint32_t *eccpos = chip->ecc.layout->eccpos;
1188 uint8_t *ecc_calc = chip->buffers->ecccalc;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001189 unsigned int max_bitflips = 0;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001190
1191 /* Read the OOB area first */
1192 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1193 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1194 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1195
1196 for (i = 0; i < chip->ecc.total; i++)
1197 ecc_code[i] = chip->oob_poi[eccpos[i]];
1198
1199 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1200 int stat;
1201
1202 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1203 chip->read_buf(mtd, p, eccsize);
1204 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1205
1206 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001207 if (stat < 0) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001208 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001209 } else {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001210 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001211 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1212 }
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001213 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001214 return max_bitflips;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001215}
1216
1217/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001218 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
1219 * @mtd: mtd info structure
1220 * @chip: nand chip info structure
1221 * @buf: buffer to store read data
1222 * @oob_required: caller requires OOB data read to chip->oob_poi
1223 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001224 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001225 * The hw generator calculates the error syndrome automatically. Therefore we
1226 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01001227 */
1228static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001229 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001230{
1231 int i, eccsize = chip->ecc.size;
1232 int eccbytes = chip->ecc.bytes;
1233 int eccsteps = chip->ecc.steps;
1234 uint8_t *p = buf;
1235 uint8_t *oob = chip->oob_poi;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001236 unsigned int max_bitflips = 0;
William Juulcfa460a2007-10-31 13:53:06 +01001237
1238 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1239 int stat;
1240
1241 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1242 chip->read_buf(mtd, p, eccsize);
1243
1244 if (chip->ecc.prepad) {
1245 chip->read_buf(mtd, oob, chip->ecc.prepad);
1246 oob += chip->ecc.prepad;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001247 }
1248
William Juulcfa460a2007-10-31 13:53:06 +01001249 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1250 chip->read_buf(mtd, oob, eccbytes);
1251 stat = chip->ecc.correct(mtd, p, oob, NULL);
1252
Heiko Schocherff94bc42014-06-24 10:10:04 +02001253 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001254 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001255 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001256 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001257 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1258 }
William Juulcfa460a2007-10-31 13:53:06 +01001259
1260 oob += eccbytes;
1261
1262 if (chip->ecc.postpad) {
1263 chip->read_buf(mtd, oob, chip->ecc.postpad);
1264 oob += chip->ecc.postpad;
1265 }
1266 }
1267
1268 /* Calculate remaining oob bytes */
1269 i = mtd->oobsize - (oob - chip->oob_poi);
1270 if (i)
1271 chip->read_buf(mtd, oob, i);
1272
Heiko Schocherff94bc42014-06-24 10:10:04 +02001273 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001274}
1275
1276/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001277 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
1278 * @chip: nand chip structure
1279 * @oob: oob destination address
1280 * @ops: oob ops structure
1281 * @len: size of oob to transfer
William Juulcfa460a2007-10-31 13:53:06 +01001282 */
1283static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
1284 struct mtd_oob_ops *ops, size_t len)
1285{
Christian Hitz90e3f392011-10-12 09:32:01 +02001286 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001287
Sergey Lapindfe64e22013-01-14 03:46:50 +00001288 case MTD_OPS_PLACE_OOB:
1289 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01001290 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1291 return oob + len;
1292
Sergey Lapindfe64e22013-01-14 03:46:50 +00001293 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01001294 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1295 uint32_t boffs = 0, roffs = ops->ooboffs;
1296 size_t bytes = 0;
1297
Christian Hitz90e3f392011-10-12 09:32:01 +02001298 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001299 /* Read request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01001300 if (unlikely(roffs)) {
1301 if (roffs >= free->length) {
1302 roffs -= free->length;
1303 continue;
1304 }
1305 boffs = free->offset + roffs;
1306 bytes = min_t(size_t, len,
1307 (free->length - roffs));
1308 roffs = 0;
1309 } else {
1310 bytes = min_t(size_t, len, free->length);
1311 boffs = free->offset;
1312 }
1313 memcpy(oob, chip->oob_poi + boffs, bytes);
1314 oob += bytes;
1315 }
1316 return oob;
1317 }
1318 default:
1319 BUG();
1320 }
1321 return NULL;
1322}
1323
1324/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001325 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1326 * @mtd: MTD device structure
1327 * @retry_mode: the retry mode to use
1328 *
1329 * Some vendors supply a special command to shift the Vt threshold, to be used
1330 * when there are too many bitflips in a page (i.e., ECC error). After setting
1331 * a new threshold, the host should retry reading the page.
1332 */
1333static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1334{
1335 struct nand_chip *chip = mtd->priv;
1336
1337 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1338
1339 if (retry_mode >= chip->read_retries)
1340 return -EINVAL;
1341
1342 if (!chip->setup_read_retry)
1343 return -EOPNOTSUPP;
1344
1345 return chip->setup_read_retry(mtd, retry_mode);
1346}
1347
1348/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001349 * nand_do_read_ops - [INTERN] Read data with ECC
1350 * @mtd: MTD device structure
1351 * @from: offset to read from
1352 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01001353 *
1354 * Internal function. Called with chip held.
1355 */
1356static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1357 struct mtd_oob_ops *ops)
1358{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001359 int chipnr, page, realpage, col, bytes, aligned, oob_required;
William Juulcfa460a2007-10-31 13:53:06 +01001360 struct nand_chip *chip = mtd->priv;
William Juulcfa460a2007-10-31 13:53:06 +01001361 int ret = 0;
1362 uint32_t readlen = ops->len;
1363 uint32_t oobreadlen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001364 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001365 mtd->oobavail : mtd->oobsize;
1366
William Juulcfa460a2007-10-31 13:53:06 +01001367 uint8_t *bufpoi, *oob, *buf;
Scott Woodd3963722015-06-26 19:03:26 -05001368 int use_bufpoi;
Paul Burton40462e52013-09-04 15:16:56 +01001369 unsigned int max_bitflips = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001370 int retry_mode = 0;
1371 bool ecc_fail = false;
William Juulcfa460a2007-10-31 13:53:06 +01001372
1373 chipnr = (int)(from >> chip->chip_shift);
1374 chip->select_chip(mtd, chipnr);
1375
1376 realpage = (int)(from >> chip->page_shift);
1377 page = realpage & chip->pagemask;
1378
1379 col = (int)(from & (mtd->writesize - 1));
1380
1381 buf = ops->datbuf;
1382 oob = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001383 oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01001384
Christian Hitz90e3f392011-10-12 09:32:01 +02001385 while (1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001386 unsigned int ecc_failures = mtd->ecc_stats.failed;
Scott Wood6f2ffc32011-02-02 18:15:57 -06001387
Heiko Schocherff94bc42014-06-24 10:10:04 +02001388 WATCHDOG_RESET();
William Juulcfa460a2007-10-31 13:53:06 +01001389 bytes = min(mtd->writesize - col, readlen);
1390 aligned = (bytes == mtd->writesize);
1391
Scott Woodd3963722015-06-26 19:03:26 -05001392 if (!aligned)
1393 use_bufpoi = 1;
1394 else
1395 use_bufpoi = 0;
1396
Sergey Lapindfe64e22013-01-14 03:46:50 +00001397 /* Is the current page in the buffer? */
William Juulcfa460a2007-10-31 13:53:06 +01001398 if (realpage != chip->pagebuf || oob) {
Scott Woodd3963722015-06-26 19:03:26 -05001399 bufpoi = use_bufpoi ? chip->buffers->databuf : buf;
1400
1401 if (use_bufpoi && aligned)
1402 pr_debug("%s: using read bounce buffer for buf@%p\n",
1403 __func__, buf);
William Juulcfa460a2007-10-31 13:53:06 +01001404
Heiko Schocherff94bc42014-06-24 10:10:04 +02001405read_retry:
Sergey Lapindfe64e22013-01-14 03:46:50 +00001406 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
William Juulcfa460a2007-10-31 13:53:06 +01001407
Paul Burton40462e52013-09-04 15:16:56 +01001408 /*
1409 * Now read the page into the buffer. Absent an error,
1410 * the read methods return max bitflips per ecc step.
1411 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001412 if (unlikely(ops->mode == MTD_OPS_RAW))
1413 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
1414 oob_required,
1415 page);
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001416 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001417 !oob)
Christian Hitz90e3f392011-10-12 09:32:01 +02001418 ret = chip->ecc.read_subpage(mtd, chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001419 col, bytes, bufpoi,
1420 page);
William Juulcfa460a2007-10-31 13:53:06 +01001421 else
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001422 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001423 oob_required, page);
1424 if (ret < 0) {
Scott Woodd3963722015-06-26 19:03:26 -05001425 if (use_bufpoi)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001426 /* Invalidate page cache */
1427 chip->pagebuf = -1;
William Juulcfa460a2007-10-31 13:53:06 +01001428 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001429 }
William Juulcfa460a2007-10-31 13:53:06 +01001430
Paul Burton40462e52013-09-04 15:16:56 +01001431 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1432
William Juulcfa460a2007-10-31 13:53:06 +01001433 /* Transfer not aligned data */
Scott Woodd3963722015-06-26 19:03:26 -05001434 if (use_bufpoi) {
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001435 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001436 !(mtd->ecc_stats.failed - ecc_failures) &&
Paul Burton40462e52013-09-04 15:16:56 +01001437 (ops->mode != MTD_OPS_RAW)) {
Scott Woodc45912d2008-10-24 16:20:43 -05001438 chip->pagebuf = realpage;
Paul Burton40462e52013-09-04 15:16:56 +01001439 chip->pagebuf_bitflips = ret;
1440 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001441 /* Invalidate page cache */
1442 chip->pagebuf = -1;
Paul Burton40462e52013-09-04 15:16:56 +01001443 }
William Juulcfa460a2007-10-31 13:53:06 +01001444 memcpy(buf, chip->buffers->databuf + col, bytes);
1445 }
1446
William Juulcfa460a2007-10-31 13:53:06 +01001447 if (unlikely(oob)) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001448 int toread = min(oobreadlen, max_oobsize);
1449
1450 if (toread) {
1451 oob = nand_transfer_oob(chip,
1452 oob, ops, toread);
1453 oobreadlen -= toread;
1454 }
William Juulcfa460a2007-10-31 13:53:06 +01001455 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001456
1457 if (chip->options & NAND_NEED_READRDY) {
1458 /* Apply delay or wait for ready/busy pin */
1459 if (!chip->dev_ready)
1460 udelay(chip->chip_delay);
1461 else
1462 nand_wait_ready(mtd);
1463 }
1464
1465 if (mtd->ecc_stats.failed - ecc_failures) {
1466 if (retry_mode + 1 < chip->read_retries) {
1467 retry_mode++;
1468 ret = nand_setup_read_retry(mtd,
1469 retry_mode);
1470 if (ret < 0)
1471 break;
1472
1473 /* Reset failures; retry */
1474 mtd->ecc_stats.failed = ecc_failures;
1475 goto read_retry;
1476 } else {
1477 /* No more retry modes; real failure */
1478 ecc_fail = true;
1479 }
1480 }
1481
1482 buf += bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001483 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001484 memcpy(buf, chip->buffers->databuf + col, bytes);
1485 buf += bytes;
Paul Burton40462e52013-09-04 15:16:56 +01001486 max_bitflips = max_t(unsigned int, max_bitflips,
1487 chip->pagebuf_bitflips);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001488 }
1489
William Juulcfa460a2007-10-31 13:53:06 +01001490 readlen -= bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001491
Heiko Schocherff94bc42014-06-24 10:10:04 +02001492 /* Reset to retry mode 0 */
1493 if (retry_mode) {
1494 ret = nand_setup_read_retry(mtd, 0);
1495 if (ret < 0)
1496 break;
1497 retry_mode = 0;
1498 }
1499
William Juulcfa460a2007-10-31 13:53:06 +01001500 if (!readlen)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001501 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001502
Sergey Lapindfe64e22013-01-14 03:46:50 +00001503 /* For subsequent reads align to page boundary */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001504 col = 0;
1505 /* Increment page address */
1506 realpage++;
1507
William Juulcfa460a2007-10-31 13:53:06 +01001508 page = realpage & chip->pagemask;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001509 /* Check, if we cross a chip boundary */
1510 if (!page) {
1511 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01001512 chip->select_chip(mtd, -1);
1513 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001514 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001515 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001516 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001517
William Juulcfa460a2007-10-31 13:53:06 +01001518 ops->retlen = ops->len - (size_t) readlen;
1519 if (oob)
1520 ops->oobretlen = ops->ooblen - oobreadlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001521
Heiko Schocherff94bc42014-06-24 10:10:04 +02001522 if (ret < 0)
William Juulcfa460a2007-10-31 13:53:06 +01001523 return ret;
1524
Heiko Schocherff94bc42014-06-24 10:10:04 +02001525 if (ecc_fail)
William Juulcfa460a2007-10-31 13:53:06 +01001526 return -EBADMSG;
1527
Paul Burton40462e52013-09-04 15:16:56 +01001528 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001529}
1530
1531/**
Christian Hitz90e3f392011-10-12 09:32:01 +02001532 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Sergey Lapindfe64e22013-01-14 03:46:50 +00001533 * @mtd: MTD device structure
1534 * @from: offset to read from
1535 * @len: number of bytes to read
1536 * @retlen: pointer to variable to store the number of read bytes
1537 * @buf: the databuffer to put data
Wolfgang Denk932394a2005-08-17 12:55:25 +02001538 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001539 * Get hold of the chip and call nand_do_read.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001540 */
William Juulcfa460a2007-10-31 13:53:06 +01001541static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1542 size_t *retlen, uint8_t *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001543{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001544 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01001545 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001546
Heiko Schocherff94bc42014-06-24 10:10:04 +02001547 nand_get_device(mtd, FL_READING);
Scott Woodd3963722015-06-26 19:03:26 -05001548 memset(&ops, 0, sizeof(ops));
Sergey Lapindfe64e22013-01-14 03:46:50 +00001549 ops.len = len;
1550 ops.datbuf = buf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001551 ops.mode = MTD_OPS_PLACE_OOB;
1552 ret = nand_do_read_ops(mtd, from, &ops);
1553 *retlen = ops.retlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001554 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001555 return ret;
1556}
1557
William Juulcfa460a2007-10-31 13:53:06 +01001558/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001559 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
1560 * @mtd: mtd info structure
1561 * @chip: nand chip info structure
1562 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001563 */
1564static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001565 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001566{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001567 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
William Juulcfa460a2007-10-31 13:53:06 +01001568 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001569 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001570}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001571
1572/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001573 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
William Juulcfa460a2007-10-31 13:53:06 +01001574 * with syndromes
Sergey Lapindfe64e22013-01-14 03:46:50 +00001575 * @mtd: mtd info structure
1576 * @chip: nand chip info structure
1577 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001578 */
1579static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001580 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001581{
William Juulcfa460a2007-10-31 13:53:06 +01001582 int length = mtd->oobsize;
1583 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1584 int eccsize = chip->ecc.size;
Scott Woodd3963722015-06-26 19:03:26 -05001585 uint8_t *bufpoi = chip->oob_poi;
William Juulcfa460a2007-10-31 13:53:06 +01001586 int i, toread, sndrnd = 0, pos;
1587
1588 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1589 for (i = 0; i < chip->ecc.steps; i++) {
1590 if (sndrnd) {
1591 pos = eccsize + i * (eccsize + chunk);
1592 if (mtd->writesize > 512)
1593 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1594 else
1595 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1596 } else
1597 sndrnd = 1;
1598 toread = min_t(int, length, chunk);
1599 chip->read_buf(mtd, bufpoi, toread);
1600 bufpoi += toread;
1601 length -= toread;
1602 }
1603 if (length > 0)
1604 chip->read_buf(mtd, bufpoi, length);
1605
Sergey Lapindfe64e22013-01-14 03:46:50 +00001606 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001607}
1608
1609/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001610 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
1611 * @mtd: mtd info structure
1612 * @chip: nand chip info structure
1613 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001614 */
1615static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1616 int page)
1617{
1618 int status = 0;
1619 const uint8_t *buf = chip->oob_poi;
1620 int length = mtd->oobsize;
1621
1622 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1623 chip->write_buf(mtd, buf, length);
1624 /* Send command to program the OOB data */
1625 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1626
1627 status = chip->waitfunc(mtd, chip);
1628
1629 return status & NAND_STATUS_FAIL ? -EIO : 0;
1630}
1631
1632/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001633 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
1634 * with syndrome - only for large page flash
1635 * @mtd: mtd info structure
1636 * @chip: nand chip info structure
1637 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001638 */
1639static int nand_write_oob_syndrome(struct mtd_info *mtd,
1640 struct nand_chip *chip, int page)
1641{
1642 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1643 int eccsize = chip->ecc.size, length = mtd->oobsize;
1644 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1645 const uint8_t *bufpoi = chip->oob_poi;
1646
1647 /*
1648 * data-ecc-data-ecc ... ecc-oob
1649 * or
1650 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1651 */
1652 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1653 pos = steps * (eccsize + chunk);
1654 steps = 0;
1655 } else
1656 pos = eccsize;
1657
1658 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1659 for (i = 0; i < steps; i++) {
1660 if (sndcmd) {
1661 if (mtd->writesize <= 512) {
1662 uint32_t fill = 0xFFFFFFFF;
1663
1664 len = eccsize;
1665 while (len > 0) {
1666 int num = min_t(int, len, 4);
1667 chip->write_buf(mtd, (uint8_t *)&fill,
1668 num);
1669 len -= num;
1670 }
1671 } else {
1672 pos = eccsize + i * (eccsize + chunk);
1673 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1674 }
1675 } else
1676 sndcmd = 1;
1677 len = min_t(int, length, chunk);
1678 chip->write_buf(mtd, bufpoi, len);
1679 bufpoi += len;
1680 length -= len;
1681 }
1682 if (length > 0)
1683 chip->write_buf(mtd, bufpoi, length);
1684
1685 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1686 status = chip->waitfunc(mtd, chip);
1687
1688 return status & NAND_STATUS_FAIL ? -EIO : 0;
1689}
1690
1691/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001692 * nand_do_read_oob - [INTERN] NAND read out-of-band
1693 * @mtd: MTD device structure
1694 * @from: offset to read from
1695 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01001696 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001697 * NAND read out-of-band data from the spare area.
William Juulcfa460a2007-10-31 13:53:06 +01001698 */
1699static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
1700 struct mtd_oob_ops *ops)
1701{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001702 int page, realpage, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01001703 struct nand_chip *chip = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001704 struct mtd_ecc_stats stats;
William Juulcfa460a2007-10-31 13:53:06 +01001705 int readlen = ops->ooblen;
1706 int len;
1707 uint8_t *buf = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001708 int ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +01001709
Heiko Schocherff94bc42014-06-24 10:10:04 +02001710 pr_debug("%s: from = 0x%08Lx, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02001711 __func__, (unsigned long long)from, readlen);
William Juulcfa460a2007-10-31 13:53:06 +01001712
Sergey Lapindfe64e22013-01-14 03:46:50 +00001713 stats = mtd->ecc_stats;
1714
1715 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01001716 len = chip->ecc.layout->oobavail;
1717 else
1718 len = mtd->oobsize;
1719
1720 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001721 pr_debug("%s: attempt to start read outside oob\n",
1722 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001723 return -EINVAL;
1724 }
1725
1726 /* Do not allow reads past end of device */
1727 if (unlikely(from >= mtd->size ||
1728 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
1729 (from >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001730 pr_debug("%s: attempt to read beyond end of device\n",
1731 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001732 return -EINVAL;
1733 }
1734
1735 chipnr = (int)(from >> chip->chip_shift);
1736 chip->select_chip(mtd, chipnr);
1737
1738 /* Shift to get page */
1739 realpage = (int)(from >> chip->page_shift);
1740 page = realpage & chip->pagemask;
1741
Christian Hitz90e3f392011-10-12 09:32:01 +02001742 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06001743 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02001744
Sergey Lapindfe64e22013-01-14 03:46:50 +00001745 if (ops->mode == MTD_OPS_RAW)
1746 ret = chip->ecc.read_oob_raw(mtd, chip, page);
1747 else
1748 ret = chip->ecc.read_oob(mtd, chip, page);
1749
1750 if (ret < 0)
1751 break;
William Juulcfa460a2007-10-31 13:53:06 +01001752
1753 len = min(len, readlen);
1754 buf = nand_transfer_oob(chip, buf, ops, len);
1755
Heiko Schocherff94bc42014-06-24 10:10:04 +02001756 if (chip->options & NAND_NEED_READRDY) {
1757 /* Apply delay or wait for ready/busy pin */
1758 if (!chip->dev_ready)
1759 udelay(chip->chip_delay);
1760 else
1761 nand_wait_ready(mtd);
1762 }
1763
William Juulcfa460a2007-10-31 13:53:06 +01001764 readlen -= len;
1765 if (!readlen)
1766 break;
1767
1768 /* Increment page address */
1769 realpage++;
1770
1771 page = realpage & chip->pagemask;
1772 /* Check, if we cross a chip boundary */
1773 if (!page) {
1774 chipnr++;
1775 chip->select_chip(mtd, -1);
1776 chip->select_chip(mtd, chipnr);
1777 }
William Juulcfa460a2007-10-31 13:53:06 +01001778 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001779 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01001780
Sergey Lapindfe64e22013-01-14 03:46:50 +00001781 ops->oobretlen = ops->ooblen - readlen;
1782
1783 if (ret < 0)
1784 return ret;
1785
1786 if (mtd->ecc_stats.failed - stats.failed)
1787 return -EBADMSG;
1788
1789 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
William Juulcfa460a2007-10-31 13:53:06 +01001790}
1791
1792/**
1793 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00001794 * @mtd: MTD device structure
1795 * @from: offset to read from
1796 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01001797 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001798 * NAND read data and/or out-of-band data.
William Juulcfa460a2007-10-31 13:53:06 +01001799 */
1800static int nand_read_oob(struct mtd_info *mtd, loff_t from,
1801 struct mtd_oob_ops *ops)
1802{
William Juulcfa460a2007-10-31 13:53:06 +01001803 int ret = -ENOTSUPP;
1804
1805 ops->retlen = 0;
1806
1807 /* Do not allow reads past end of device */
1808 if (ops->datbuf && (from + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001809 pr_debug("%s: attempt to read beyond end of device\n",
1810 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01001811 return -EINVAL;
1812 }
1813
Heiko Schocherff94bc42014-06-24 10:10:04 +02001814 nand_get_device(mtd, FL_READING);
William Juulcfa460a2007-10-31 13:53:06 +01001815
Christian Hitz90e3f392011-10-12 09:32:01 +02001816 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001817 case MTD_OPS_PLACE_OOB:
1818 case MTD_OPS_AUTO_OOB:
1819 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01001820 break;
1821
1822 default:
1823 goto out;
1824 }
1825
1826 if (!ops->datbuf)
1827 ret = nand_do_read_oob(mtd, from, ops);
1828 else
1829 ret = nand_do_read_ops(mtd, from, ops);
1830
Christian Hitz90e3f392011-10-12 09:32:01 +02001831out:
William Juulcfa460a2007-10-31 13:53:06 +01001832 nand_release_device(mtd);
1833 return ret;
1834}
1835
1836
1837/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001838 * nand_write_page_raw - [INTERN] raw page write function
1839 * @mtd: mtd info structure
1840 * @chip: nand chip info structure
1841 * @buf: data buffer
1842 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05001843 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001844 * Not for syndrome calculating ECC controllers, which use a special oob layout.
William Juulcfa460a2007-10-31 13:53:06 +01001845 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001846static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1847 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01001848{
1849 chip->write_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001850 if (oob_required)
1851 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
1852
1853 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001854}
1855
1856/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001857 * nand_write_page_raw_syndrome - [INTERN] raw page write function
1858 * @mtd: mtd info structure
1859 * @chip: nand chip info structure
1860 * @buf: data buffer
1861 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05001862 *
1863 * We need a special oob layout and handling even when ECC isn't checked.
1864 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001865static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Christian Hitz90e3f392011-10-12 09:32:01 +02001866 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001867 const uint8_t *buf, int oob_required)
David Brownell7e866612009-11-07 16:27:01 -05001868{
1869 int eccsize = chip->ecc.size;
1870 int eccbytes = chip->ecc.bytes;
1871 uint8_t *oob = chip->oob_poi;
1872 int steps, size;
1873
1874 for (steps = chip->ecc.steps; steps > 0; steps--) {
1875 chip->write_buf(mtd, buf, eccsize);
1876 buf += eccsize;
1877
1878 if (chip->ecc.prepad) {
1879 chip->write_buf(mtd, oob, chip->ecc.prepad);
1880 oob += chip->ecc.prepad;
1881 }
1882
Heiko Schocher4e67c572014-07-15 16:08:43 +02001883 chip->write_buf(mtd, oob, eccbytes);
David Brownell7e866612009-11-07 16:27:01 -05001884 oob += eccbytes;
1885
1886 if (chip->ecc.postpad) {
1887 chip->write_buf(mtd, oob, chip->ecc.postpad);
1888 oob += chip->ecc.postpad;
1889 }
1890 }
1891
1892 size = mtd->oobsize - (oob - chip->oob_poi);
1893 if (size)
1894 chip->write_buf(mtd, oob, size);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001895
1896 return 0;
David Brownell7e866612009-11-07 16:27:01 -05001897}
1898/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001899 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
1900 * @mtd: mtd info structure
1901 * @chip: nand chip info structure
1902 * @buf: data buffer
1903 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01001904 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001905static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
1906 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01001907{
1908 int i, eccsize = chip->ecc.size;
1909 int eccbytes = chip->ecc.bytes;
1910 int eccsteps = chip->ecc.steps;
1911 uint8_t *ecc_calc = chip->buffers->ecccalc;
1912 const uint8_t *p = buf;
1913 uint32_t *eccpos = chip->ecc.layout->eccpos;
1914
Sergey Lapindfe64e22013-01-14 03:46:50 +00001915 /* Software ECC calculation */
William Juulcfa460a2007-10-31 13:53:06 +01001916 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1917 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1918
1919 for (i = 0; i < chip->ecc.total; i++)
1920 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1921
Sergey Lapindfe64e22013-01-14 03:46:50 +00001922 return chip->ecc.write_page_raw(mtd, chip, buf, 1);
William Juulcfa460a2007-10-31 13:53:06 +01001923}
1924
1925/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001926 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
1927 * @mtd: mtd info structure
1928 * @chip: nand chip info structure
1929 * @buf: data buffer
1930 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01001931 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001932static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
1933 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01001934{
1935 int i, eccsize = chip->ecc.size;
1936 int eccbytes = chip->ecc.bytes;
1937 int eccsteps = chip->ecc.steps;
1938 uint8_t *ecc_calc = chip->buffers->ecccalc;
1939 const uint8_t *p = buf;
1940 uint32_t *eccpos = chip->ecc.layout->eccpos;
1941
1942 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1943 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1944 chip->write_buf(mtd, p, eccsize);
1945 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1946 }
1947
1948 for (i = 0; i < chip->ecc.total; i++)
1949 chip->oob_poi[eccpos[i]] = ecc_calc[i];
1950
1951 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001952
1953 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001954}
1955
Heiko Schocherff94bc42014-06-24 10:10:04 +02001956
1957/**
Scott Woodd3963722015-06-26 19:03:26 -05001958 * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write
Heiko Schocherff94bc42014-06-24 10:10:04 +02001959 * @mtd: mtd info structure
1960 * @chip: nand chip info structure
1961 * @offset: column address of subpage within the page
1962 * @data_len: data length
1963 * @buf: data buffer
1964 * @oob_required: must write chip->oob_poi to OOB
1965 */
1966static int nand_write_subpage_hwecc(struct mtd_info *mtd,
1967 struct nand_chip *chip, uint32_t offset,
1968 uint32_t data_len, const uint8_t *buf,
1969 int oob_required)
1970{
1971 uint8_t *oob_buf = chip->oob_poi;
1972 uint8_t *ecc_calc = chip->buffers->ecccalc;
1973 int ecc_size = chip->ecc.size;
1974 int ecc_bytes = chip->ecc.bytes;
1975 int ecc_steps = chip->ecc.steps;
1976 uint32_t *eccpos = chip->ecc.layout->eccpos;
1977 uint32_t start_step = offset / ecc_size;
1978 uint32_t end_step = (offset + data_len - 1) / ecc_size;
1979 int oob_bytes = mtd->oobsize / ecc_steps;
1980 int step, i;
1981
1982 for (step = 0; step < ecc_steps; step++) {
1983 /* configure controller for WRITE access */
1984 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
1985
1986 /* write data (untouched subpages already masked by 0xFF) */
1987 chip->write_buf(mtd, buf, ecc_size);
1988
1989 /* mask ECC of un-touched subpages by padding 0xFF */
1990 if ((step < start_step) || (step > end_step))
1991 memset(ecc_calc, 0xff, ecc_bytes);
1992 else
1993 chip->ecc.calculate(mtd, buf, ecc_calc);
1994
1995 /* mask OOB of un-touched subpages by padding 0xFF */
1996 /* if oob_required, preserve OOB metadata of written subpage */
1997 if (!oob_required || (step < start_step) || (step > end_step))
1998 memset(oob_buf, 0xff, oob_bytes);
1999
2000 buf += ecc_size;
2001 ecc_calc += ecc_bytes;
2002 oob_buf += oob_bytes;
2003 }
2004
2005 /* copy calculated ECC for whole page to chip->buffer->oob */
2006 /* this include masked-value(0xFF) for unwritten subpages */
2007 ecc_calc = chip->buffers->ecccalc;
2008 for (i = 0; i < chip->ecc.total; i++)
2009 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2010
2011 /* write OOB buffer to NAND device */
2012 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2013
2014 return 0;
2015}
2016
2017
William Juulcfa460a2007-10-31 13:53:06 +01002018/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002019 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
2020 * @mtd: mtd info structure
2021 * @chip: nand chip info structure
2022 * @buf: data buffer
2023 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002024 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002025 * The hw generator calculates the error syndrome automatically. Therefore we
2026 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01002027 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002028static int nand_write_page_syndrome(struct mtd_info *mtd,
2029 struct nand_chip *chip,
2030 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002031{
2032 int i, eccsize = chip->ecc.size;
2033 int eccbytes = chip->ecc.bytes;
2034 int eccsteps = chip->ecc.steps;
2035 const uint8_t *p = buf;
2036 uint8_t *oob = chip->oob_poi;
2037
2038 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2039
2040 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2041 chip->write_buf(mtd, p, eccsize);
2042
2043 if (chip->ecc.prepad) {
2044 chip->write_buf(mtd, oob, chip->ecc.prepad);
2045 oob += chip->ecc.prepad;
2046 }
2047
2048 chip->ecc.calculate(mtd, p, oob);
2049 chip->write_buf(mtd, oob, eccbytes);
2050 oob += eccbytes;
2051
2052 if (chip->ecc.postpad) {
2053 chip->write_buf(mtd, oob, chip->ecc.postpad);
2054 oob += chip->ecc.postpad;
2055 }
2056 }
2057
2058 /* Calculate remaining oob bytes */
2059 i = mtd->oobsize - (oob - chip->oob_poi);
2060 if (i)
2061 chip->write_buf(mtd, oob, i);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002062
2063 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002064}
2065
2066/**
2067 * nand_write_page - [REPLACEABLE] write one page
Sergey Lapindfe64e22013-01-14 03:46:50 +00002068 * @mtd: MTD device structure
2069 * @chip: NAND chip descriptor
Heiko Schocherff94bc42014-06-24 10:10:04 +02002070 * @offset: address offset within the page
2071 * @data_len: length of actual data to be written
Sergey Lapindfe64e22013-01-14 03:46:50 +00002072 * @buf: the data to write
2073 * @oob_required: must write chip->oob_poi to OOB
2074 * @page: page number to write
2075 * @cached: cached programming
2076 * @raw: use _raw version of write_page
William Juulcfa460a2007-10-31 13:53:06 +01002077 */
2078static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02002079 uint32_t offset, int data_len, const uint8_t *buf,
2080 int oob_required, int page, int cached, int raw)
William Juulcfa460a2007-10-31 13:53:06 +01002081{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002082 int status, subpage;
2083
2084 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2085 chip->ecc.write_subpage)
2086 subpage = offset || (data_len < mtd->writesize);
2087 else
2088 subpage = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002089
2090 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2091
2092 if (unlikely(raw))
Heiko Schocherff94bc42014-06-24 10:10:04 +02002093 status = chip->ecc.write_page_raw(mtd, chip, buf,
2094 oob_required);
2095 else if (subpage)
2096 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
2097 buf, oob_required);
William Juulcfa460a2007-10-31 13:53:06 +01002098 else
Sergey Lapindfe64e22013-01-14 03:46:50 +00002099 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2100
2101 if (status < 0)
2102 return status;
William Juulcfa460a2007-10-31 13:53:06 +01002103
2104 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00002105 * Cached progamming disabled for now. Not sure if it's worth the
2106 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
William Juulcfa460a2007-10-31 13:53:06 +01002107 */
2108 cached = 0;
2109
Heiko Schocherff94bc42014-06-24 10:10:04 +02002110 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
William Juulcfa460a2007-10-31 13:53:06 +01002111
2112 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2113 status = chip->waitfunc(mtd, chip);
2114 /*
2115 * See if operation failed and additional status checks are
Sergey Lapindfe64e22013-01-14 03:46:50 +00002116 * available.
William Juulcfa460a2007-10-31 13:53:06 +01002117 */
2118 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2119 status = chip->errstat(mtd, chip, FL_WRITING, status,
2120 page);
2121
2122 if (status & NAND_STATUS_FAIL)
2123 return -EIO;
2124 } else {
2125 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
2126 status = chip->waitfunc(mtd, chip);
2127 }
2128
William Juulcfa460a2007-10-31 13:53:06 +01002129 return 0;
2130}
2131
2132/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002133 * nand_fill_oob - [INTERN] Transfer client buffer to oob
2134 * @mtd: MTD device structure
2135 * @oob: oob data buffer
2136 * @len: oob data write length
2137 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01002138 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002139static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2140 struct mtd_oob_ops *ops)
William Juulcfa460a2007-10-31 13:53:06 +01002141{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002142 struct nand_chip *chip = mtd->priv;
2143
2144 /*
2145 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2146 * data from a previous OOB read.
2147 */
2148 memset(chip->oob_poi, 0xff, mtd->oobsize);
2149
Christian Hitz90e3f392011-10-12 09:32:01 +02002150 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01002151
Sergey Lapindfe64e22013-01-14 03:46:50 +00002152 case MTD_OPS_PLACE_OOB:
2153 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002154 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2155 return oob + len;
2156
Sergey Lapindfe64e22013-01-14 03:46:50 +00002157 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01002158 struct nand_oobfree *free = chip->ecc.layout->oobfree;
2159 uint32_t boffs = 0, woffs = ops->ooboffs;
2160 size_t bytes = 0;
2161
Christian Hitz90e3f392011-10-12 09:32:01 +02002162 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002163 /* Write request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01002164 if (unlikely(woffs)) {
2165 if (woffs >= free->length) {
2166 woffs -= free->length;
2167 continue;
2168 }
2169 boffs = free->offset + woffs;
2170 bytes = min_t(size_t, len,
2171 (free->length - woffs));
2172 woffs = 0;
2173 } else {
2174 bytes = min_t(size_t, len, free->length);
2175 boffs = free->offset;
2176 }
2177 memcpy(chip->oob_poi + boffs, oob, bytes);
2178 oob += bytes;
2179 }
2180 return oob;
2181 }
2182 default:
2183 BUG();
2184 }
2185 return NULL;
2186}
2187
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002188#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
William Juulcfa460a2007-10-31 13:53:06 +01002189
2190/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002191 * nand_do_write_ops - [INTERN] NAND write with ECC
2192 * @mtd: MTD device structure
2193 * @to: offset to write to
2194 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01002195 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002196 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002197 */
2198static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2199 struct mtd_oob_ops *ops)
2200{
2201 int chipnr, realpage, page, blockmask, column;
2202 struct nand_chip *chip = mtd->priv;
2203 uint32_t writelen = ops->len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002204
2205 uint32_t oobwritelen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002206 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002207 mtd->oobavail : mtd->oobsize;
2208
William Juulcfa460a2007-10-31 13:53:06 +01002209 uint8_t *oob = ops->oobbuf;
2210 uint8_t *buf = ops->datbuf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002211 int ret;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002212 int oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01002213
2214 ops->retlen = 0;
2215 if (!writelen)
2216 return 0;
2217
Heiko Schocherff94bc42014-06-24 10:10:04 +02002218 /* Reject writes, which are not page aligned */
2219 if (NOTALIGNED(to)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002220 pr_notice("%s: attempt to write non page aligned data\n",
2221 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002222 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002223 }
2224
2225 column = to & (mtd->writesize - 1);
William Juulcfa460a2007-10-31 13:53:06 +01002226
2227 chipnr = (int)(to >> chip->chip_shift);
2228 chip->select_chip(mtd, chipnr);
2229
2230 /* Check, if it is write protected */
2231 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002232 ret = -EIO;
2233 goto err_out;
William Juulcfa460a2007-10-31 13:53:06 +01002234 }
2235
2236 realpage = (int)(to >> chip->page_shift);
2237 page = realpage & chip->pagemask;
2238 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2239
2240 /* Invalidate the page cache, when we write to the cached page */
Scott Woodd3963722015-06-26 19:03:26 -05002241 if (to <= ((loff_t)chip->pagebuf << chip->page_shift) &&
2242 ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len))
William Juulcfa460a2007-10-31 13:53:06 +01002243 chip->pagebuf = -1;
2244
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002245 /* Don't allow multipage oob writes with offset */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002246 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2247 ret = -EINVAL;
2248 goto err_out;
2249 }
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002250
Christian Hitz90e3f392011-10-12 09:32:01 +02002251 while (1) {
William Juulcfa460a2007-10-31 13:53:06 +01002252 int bytes = mtd->writesize;
2253 int cached = writelen > bytes && page != blockmask;
2254 uint8_t *wbuf = buf;
Scott Woodd3963722015-06-26 19:03:26 -05002255 int use_bufpoi;
2256 int part_pagewr = (column || writelen < (mtd->writesize - 1));
2257
2258 if (part_pagewr)
2259 use_bufpoi = 1;
2260 else
2261 use_bufpoi = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002262
Heiko Schocherff94bc42014-06-24 10:10:04 +02002263 WATCHDOG_RESET();
Scott Woodd3963722015-06-26 19:03:26 -05002264 /* Partial page write?, or need to use bounce buffer */
2265 if (use_bufpoi) {
2266 pr_debug("%s: using write bounce buffer for buf@%p\n",
2267 __func__, buf);
William Juulcfa460a2007-10-31 13:53:06 +01002268 cached = 0;
Scott Woodd3963722015-06-26 19:03:26 -05002269 if (part_pagewr)
2270 bytes = min_t(int, bytes - column, writelen);
William Juulcfa460a2007-10-31 13:53:06 +01002271 chip->pagebuf = -1;
2272 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2273 memcpy(&chip->buffers->databuf[column], buf, bytes);
2274 wbuf = chip->buffers->databuf;
2275 }
2276
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002277 if (unlikely(oob)) {
2278 size_t len = min(oobwritelen, oobmaxlen);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002279 oob = nand_fill_oob(mtd, oob, len, ops);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002280 oobwritelen -= len;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002281 } else {
2282 /* We still need to erase leftover OOB data */
2283 memset(chip->oob_poi, 0xff, mtd->oobsize);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002284 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02002285 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2286 oob_required, page, cached,
2287 (ops->mode == MTD_OPS_RAW));
William Juulcfa460a2007-10-31 13:53:06 +01002288 if (ret)
2289 break;
2290
2291 writelen -= bytes;
2292 if (!writelen)
2293 break;
2294
2295 column = 0;
2296 buf += bytes;
2297 realpage++;
2298
2299 page = realpage & chip->pagemask;
2300 /* Check, if we cross a chip boundary */
2301 if (!page) {
2302 chipnr++;
2303 chip->select_chip(mtd, -1);
2304 chip->select_chip(mtd, chipnr);
2305 }
2306 }
2307
2308 ops->retlen = ops->len - writelen;
2309 if (unlikely(oob))
2310 ops->oobretlen = ops->ooblen;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002311
2312err_out:
2313 chip->select_chip(mtd, -1);
2314 return ret;
2315}
2316
2317/**
2318 * panic_nand_write - [MTD Interface] NAND write with ECC
2319 * @mtd: MTD device structure
2320 * @to: offset to write to
2321 * @len: number of bytes to write
2322 * @retlen: pointer to variable to store the number of written bytes
2323 * @buf: the data to write
2324 *
2325 * NAND write with ECC. Used when performing writes in interrupt context, this
2326 * may for example be called by mtdoops when writing an oops while in panic.
2327 */
2328static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2329 size_t *retlen, const uint8_t *buf)
2330{
2331 struct nand_chip *chip = mtd->priv;
2332 struct mtd_oob_ops ops;
2333 int ret;
2334
2335 /* Wait for the device to get ready */
2336 panic_nand_wait(mtd, chip, 400);
2337
2338 /* Grab the device */
2339 panic_nand_get_device(chip, mtd, FL_WRITING);
2340
Scott Woodd3963722015-06-26 19:03:26 -05002341 memset(&ops, 0, sizeof(ops));
Heiko Schocherff94bc42014-06-24 10:10:04 +02002342 ops.len = len;
2343 ops.datbuf = (uint8_t *)buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002344 ops.mode = MTD_OPS_PLACE_OOB;
2345
2346 ret = nand_do_write_ops(mtd, to, &ops);
2347
2348 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002349 return ret;
2350}
2351
2352/**
2353 * nand_write - [MTD Interface] NAND write with ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00002354 * @mtd: MTD device structure
2355 * @to: offset to write to
2356 * @len: number of bytes to write
2357 * @retlen: pointer to variable to store the number of written bytes
2358 * @buf: the data to write
Wolfgang Denk932394a2005-08-17 12:55:25 +02002359 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002360 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002361 */
2362static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2363 size_t *retlen, const uint8_t *buf)
2364{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002365 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01002366 int ret;
2367
Heiko Schocherff94bc42014-06-24 10:10:04 +02002368 nand_get_device(mtd, FL_WRITING);
Scott Woodd3963722015-06-26 19:03:26 -05002369 memset(&ops, 0, sizeof(ops));
Sergey Lapindfe64e22013-01-14 03:46:50 +00002370 ops.len = len;
2371 ops.datbuf = (uint8_t *)buf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002372 ops.mode = MTD_OPS_PLACE_OOB;
2373 ret = nand_do_write_ops(mtd, to, &ops);
2374 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002375 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01002376 return ret;
2377}
2378
2379/**
2380 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002381 * @mtd: MTD device structure
2382 * @to: offset to write to
2383 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002384 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002385 * NAND write out-of-band.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002386 */
William Juulcfa460a2007-10-31 13:53:06 +01002387static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2388 struct mtd_oob_ops *ops)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002389{
William Juulcfa460a2007-10-31 13:53:06 +01002390 int chipnr, page, status, len;
2391 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002392
Heiko Schocherff94bc42014-06-24 10:10:04 +02002393 pr_debug("%s: to = 0x%08x, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02002394 __func__, (unsigned int)to, (int)ops->ooblen);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002395
Sergey Lapindfe64e22013-01-14 03:46:50 +00002396 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01002397 len = chip->ecc.layout->oobavail;
2398 else
2399 len = mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002400
2401 /* Do not allow write past end of page */
William Juulcfa460a2007-10-31 13:53:06 +01002402 if ((ops->ooboffs + ops->ooblen) > len) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002403 pr_debug("%s: attempt to write past end of page\n",
2404 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002405 return -EINVAL;
2406 }
2407
William Juulcfa460a2007-10-31 13:53:06 +01002408 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002409 pr_debug("%s: attempt to start write outside oob\n",
2410 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002411 return -EINVAL;
2412 }
2413
Christian Hitz90e3f392011-10-12 09:32:01 +02002414 /* Do not allow write past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01002415 if (unlikely(to >= mtd->size ||
2416 ops->ooboffs + ops->ooblen >
2417 ((mtd->size >> chip->page_shift) -
2418 (to >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002419 pr_debug("%s: attempt to write beyond end of device\n",
2420 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002421 return -EINVAL;
2422 }
2423
William Juulcfa460a2007-10-31 13:53:06 +01002424 chipnr = (int)(to >> chip->chip_shift);
2425 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002426
William Juulcfa460a2007-10-31 13:53:06 +01002427 /* Shift to get page */
2428 page = (int)(to >> chip->page_shift);
2429
2430 /*
2431 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2432 * of my DiskOnChip 2000 test units) will clear the whole data page too
2433 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2434 * it in the doc2000 driver in August 1999. dwmw2.
2435 */
2436 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002437
2438 /* Check, if it is write protected */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002439 if (nand_check_wp(mtd)) {
2440 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002441 return -EROFS;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002442 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002443
Wolfgang Denk932394a2005-08-17 12:55:25 +02002444 /* Invalidate the page cache, if we write to the cached page */
William Juulcfa460a2007-10-31 13:53:06 +01002445 if (page == chip->pagebuf)
2446 chip->pagebuf = -1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002447
Sergey Lapindfe64e22013-01-14 03:46:50 +00002448 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
2449
2450 if (ops->mode == MTD_OPS_RAW)
2451 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2452 else
2453 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002454
Heiko Schocherff94bc42014-06-24 10:10:04 +02002455 chip->select_chip(mtd, -1);
2456
William Juulcfa460a2007-10-31 13:53:06 +01002457 if (status)
2458 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002459
William Juulcfa460a2007-10-31 13:53:06 +01002460 ops->oobretlen = ops->ooblen;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002461
William Juulcfa460a2007-10-31 13:53:06 +01002462 return 0;
2463}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002464
William Juulcfa460a2007-10-31 13:53:06 +01002465/**
2466 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002467 * @mtd: MTD device structure
2468 * @to: offset to write to
2469 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002470 */
2471static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2472 struct mtd_oob_ops *ops)
2473{
William Juulcfa460a2007-10-31 13:53:06 +01002474 int ret = -ENOTSUPP;
2475
2476 ops->retlen = 0;
2477
2478 /* Do not allow writes past end of device */
2479 if (ops->datbuf && (to + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002480 pr_debug("%s: attempt to write beyond end of device\n",
2481 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002482 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002483 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002484
Heiko Schocherff94bc42014-06-24 10:10:04 +02002485 nand_get_device(mtd, FL_WRITING);
William Juulcfa460a2007-10-31 13:53:06 +01002486
Christian Hitz90e3f392011-10-12 09:32:01 +02002487 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002488 case MTD_OPS_PLACE_OOB:
2489 case MTD_OPS_AUTO_OOB:
2490 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002491 break;
2492
2493 default:
2494 goto out;
2495 }
2496
2497 if (!ops->datbuf)
2498 ret = nand_do_write_oob(mtd, to, ops);
2499 else
2500 ret = nand_do_write_ops(mtd, to, ops);
2501
Christian Hitz90e3f392011-10-12 09:32:01 +02002502out:
William Juulcfa460a2007-10-31 13:53:06 +01002503 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002504 return ret;
2505}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002506
2507/**
Scott Woodd3963722015-06-26 19:03:26 -05002508 * single_erase - [GENERIC] NAND standard block erase command function
Sergey Lapindfe64e22013-01-14 03:46:50 +00002509 * @mtd: MTD device structure
2510 * @page: the page address of the block which will be erased
Wolfgang Denk932394a2005-08-17 12:55:25 +02002511 *
Scott Woodd3963722015-06-26 19:03:26 -05002512 * Standard erase command for NAND chips. Returns NAND status.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002513 */
Scott Woodd3963722015-06-26 19:03:26 -05002514static int single_erase(struct mtd_info *mtd, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002515{
William Juulcfa460a2007-10-31 13:53:06 +01002516 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002517 /* Send commands to erase a block */
William Juulcfa460a2007-10-31 13:53:06 +01002518 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2519 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Scott Woodd3963722015-06-26 19:03:26 -05002520
2521 return chip->waitfunc(mtd, chip);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002522}
2523
2524/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02002525 * nand_erase - [MTD Interface] erase block(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00002526 * @mtd: MTD device structure
2527 * @instr: erase instruction
Wolfgang Denk932394a2005-08-17 12:55:25 +02002528 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002529 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002530 */
William Juulcfa460a2007-10-31 13:53:06 +01002531static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002532{
William Juulcfa460a2007-10-31 13:53:06 +01002533 return nand_erase_nand(mtd, instr, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002534}
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002535
Wolfgang Denk932394a2005-08-17 12:55:25 +02002536/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002537 * nand_erase_nand - [INTERN] erase block(s)
2538 * @mtd: MTD device structure
2539 * @instr: erase instruction
2540 * @allowbbt: allow erasing the bbt area
Wolfgang Denk932394a2005-08-17 12:55:25 +02002541 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002542 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002543 */
William Juulcfa460a2007-10-31 13:53:06 +01002544int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2545 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002546{
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002547 int page, status, pages_per_block, ret, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002548 struct nand_chip *chip = mtd->priv;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002549 loff_t len;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002550
Heiko Schocherff94bc42014-06-24 10:10:04 +02002551 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2552 __func__, (unsigned long long)instr->addr,
2553 (unsigned long long)instr->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002554
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002555 if (check_offs_len(mtd, instr->addr, instr->len))
Wolfgang Denk932394a2005-08-17 12:55:25 +02002556 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002557
Wolfgang Denk932394a2005-08-17 12:55:25 +02002558 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002559 nand_get_device(mtd, FL_ERASING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002560
2561 /* Shift to get first page */
William Juulcfa460a2007-10-31 13:53:06 +01002562 page = (int)(instr->addr >> chip->page_shift);
2563 chipnr = (int)(instr->addr >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002564
2565 /* Calculate pages in each block */
William Juulcfa460a2007-10-31 13:53:06 +01002566 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
William Juul4cbb6512007-11-08 10:39:53 +01002567
Wolfgang Denk932394a2005-08-17 12:55:25 +02002568 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +01002569 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002570
Wolfgang Denk932394a2005-08-17 12:55:25 +02002571 /* Check, if it is write protected */
2572 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002573 pr_debug("%s: device is write protected!\n",
2574 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002575 instr->state = MTD_ERASE_FAILED;
2576 goto erase_exit;
2577 }
2578
2579 /* Loop through the pages */
2580 len = instr->len;
2581
2582 instr->state = MTD_ERASING;
2583
2584 while (len) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002585 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02002586
Sergey Lapindfe64e22013-01-14 03:46:50 +00002587 /* Check if we have a bad block, we do not erase bad blocks! */
Masahiro Yamada756963d2014-12-16 15:36:33 +09002588 if (!instr->scrub && nand_block_checkbad(mtd, ((loff_t) page) <<
William Juulcfa460a2007-10-31 13:53:06 +01002589 chip->page_shift, 0, allowbbt)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002590 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02002591 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002592 instr->state = MTD_ERASE_FAILED;
2593 goto erase_exit;
2594 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002595
William Juulcfa460a2007-10-31 13:53:06 +01002596 /*
2597 * Invalidate the page cache, if we erase the block which
Sergey Lapindfe64e22013-01-14 03:46:50 +00002598 * contains the current cached page.
William Juulcfa460a2007-10-31 13:53:06 +01002599 */
2600 if (page <= chip->pagebuf && chip->pagebuf <
2601 (page + pages_per_block))
2602 chip->pagebuf = -1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002603
Scott Woodd3963722015-06-26 19:03:26 -05002604 status = chip->erase(mtd, page & chip->pagemask);
William Juulcfa460a2007-10-31 13:53:06 +01002605
2606 /*
2607 * See if operation failed and additional status checks are
2608 * available
2609 */
2610 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2611 status = chip->errstat(mtd, chip, FL_ERASING,
2612 status, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002613
2614 /* See if block erase succeeded */
William Juulcfa460a2007-10-31 13:53:06 +01002615 if (status & NAND_STATUS_FAIL) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002616 pr_debug("%s: failed erase, page 0x%08x\n",
2617 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002618 instr->state = MTD_ERASE_FAILED;
Christian Hitz90e3f392011-10-12 09:32:01 +02002619 instr->fail_addr =
2620 ((loff_t)page << chip->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002621 goto erase_exit;
2622 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002623
Wolfgang Denk932394a2005-08-17 12:55:25 +02002624 /* Increment page address and decrement length */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002625 len -= (1ULL << chip->phys_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002626 page += pages_per_block;
2627
2628 /* Check, if we cross a chip boundary */
William Juulcfa460a2007-10-31 13:53:06 +01002629 if (len && !(page & chip->pagemask)) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02002630 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01002631 chip->select_chip(mtd, -1);
2632 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002633 }
2634 }
2635 instr->state = MTD_ERASE_DONE;
2636
Christian Hitz90e3f392011-10-12 09:32:01 +02002637erase_exit:
Wolfgang Denk932394a2005-08-17 12:55:25 +02002638
2639 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002640
2641 /* Deselect and wake up anyone waiting on the device */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002642 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002643 nand_release_device(mtd);
2644
Scott Woodc45912d2008-10-24 16:20:43 -05002645 /* Do call back function */
2646 if (!ret)
2647 mtd_erase_callback(instr);
2648
Wolfgang Denk932394a2005-08-17 12:55:25 +02002649 /* Return more or less happy */
2650 return ret;
2651}
2652
2653/**
2654 * nand_sync - [MTD Interface] sync
Sergey Lapindfe64e22013-01-14 03:46:50 +00002655 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02002656 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002657 * Sync is actually a wait for chip ready function.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002658 */
William Juulcfa460a2007-10-31 13:53:06 +01002659static void nand_sync(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002660{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002661 pr_debug("%s: called\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002662
2663 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002664 nand_get_device(mtd, FL_SYNCING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002665 /* Release it and go back */
William Juulcfa460a2007-10-31 13:53:06 +01002666 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002667}
2668
Wolfgang Denk932394a2005-08-17 12:55:25 +02002669/**
William Juulcfa460a2007-10-31 13:53:06 +01002670 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00002671 * @mtd: MTD device structure
2672 * @offs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02002673 */
William Juulcfa460a2007-10-31 13:53:06 +01002674static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002675{
William Juulcfa460a2007-10-31 13:53:06 +01002676 return nand_block_checkbad(mtd, offs, 1, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002677}
2678
2679/**
William Juulcfa460a2007-10-31 13:53:06 +01002680 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00002681 * @mtd: MTD device structure
2682 * @ofs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02002683 */
William Juulcfa460a2007-10-31 13:53:06 +01002684static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002685{
Wolfgang Denk932394a2005-08-17 12:55:25 +02002686 int ret;
2687
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002688 ret = nand_block_isbad(mtd, ofs);
2689 if (ret) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002690 /* If it was bad already, return success and do nothing */
Wolfgang Denk932394a2005-08-17 12:55:25 +02002691 if (ret > 0)
2692 return 0;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002693 return ret;
2694 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002695
Heiko Schocherff94bc42014-06-24 10:10:04 +02002696 return nand_block_markbad_lowlevel(mtd, ofs);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002697}
2698
Heiko Schocherff94bc42014-06-24 10:10:04 +02002699/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002700 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
2701 * @mtd: MTD device structure
2702 * @chip: nand chip info structure
2703 * @addr: feature address.
2704 * @subfeature_param: the subfeature parameters, a four bytes array.
William Juulcfa460a2007-10-31 13:53:06 +01002705 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002706static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
2707 int addr, uint8_t *subfeature_param)
2708{
2709 int status;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002710 int i;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002711
Heiko Schocherff94bc42014-06-24 10:10:04 +02002712#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
2713 if (!chip->onfi_version ||
2714 !(le16_to_cpu(chip->onfi_params.opt_cmd)
2715 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00002716 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002717#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00002718
2719 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002720 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
2721 chip->write_byte(mtd, subfeature_param[i]);
2722
Sergey Lapindfe64e22013-01-14 03:46:50 +00002723 status = chip->waitfunc(mtd, chip);
2724 if (status & NAND_STATUS_FAIL)
2725 return -EIO;
2726 return 0;
2727}
2728
2729/**
2730 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
2731 * @mtd: MTD device structure
2732 * @chip: nand chip info structure
2733 * @addr: feature address.
2734 * @subfeature_param: the subfeature parameters, a four bytes array.
2735 */
2736static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
2737 int addr, uint8_t *subfeature_param)
2738{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002739 int i;
2740
2741#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
2742 if (!chip->onfi_version ||
2743 !(le16_to_cpu(chip->onfi_params.opt_cmd)
2744 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00002745 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002746#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00002747
2748 /* clear the sub feature parameters */
2749 memset(subfeature_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
2750
2751 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02002752 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
2753 *subfeature_param++ = chip->read_byte(mtd);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002754 return 0;
2755}
2756
2757/* Set default functions */
William Juulcfa460a2007-10-31 13:53:06 +01002758static void nand_set_defaults(struct nand_chip *chip, int busw)
2759{
2760 /* check for proper chip_delay setup, set 20us if not */
2761 if (!chip->chip_delay)
2762 chip->chip_delay = 20;
2763
2764 /* check, if a user supplied command function given */
2765 if (chip->cmdfunc == NULL)
2766 chip->cmdfunc = nand_command;
2767
2768 /* check, if a user supplied wait function given */
2769 if (chip->waitfunc == NULL)
2770 chip->waitfunc = nand_wait;
2771
2772 if (!chip->select_chip)
2773 chip->select_chip = nand_select_chip;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002774
2775 /* set for ONFI nand */
2776 if (!chip->onfi_set_features)
2777 chip->onfi_set_features = nand_onfi_set_features;
2778 if (!chip->onfi_get_features)
2779 chip->onfi_get_features = nand_onfi_get_features;
2780
2781 /* If called twice, pointers that depend on busw may need to be reset */
2782 if (!chip->read_byte || chip->read_byte == nand_read_byte)
William Juulcfa460a2007-10-31 13:53:06 +01002783 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
2784 if (!chip->read_word)
2785 chip->read_word = nand_read_word;
2786 if (!chip->block_bad)
2787 chip->block_bad = nand_block_bad;
2788 if (!chip->block_markbad)
2789 chip->block_markbad = nand_default_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002790 if (!chip->write_buf || chip->write_buf == nand_write_buf)
William Juulcfa460a2007-10-31 13:53:06 +01002791 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002792 if (!chip->write_byte || chip->write_byte == nand_write_byte)
2793 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
2794 if (!chip->read_buf || chip->read_buf == nand_read_buf)
William Juulcfa460a2007-10-31 13:53:06 +01002795 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
William Juulcfa460a2007-10-31 13:53:06 +01002796 if (!chip->scan_bbt)
2797 chip->scan_bbt = nand_default_bbt;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002798
2799 if (!chip->controller) {
William Juulcfa460a2007-10-31 13:53:06 +01002800 chip->controller = &chip->hwcontrol;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002801 spin_lock_init(&chip->controller->lock);
2802 init_waitqueue_head(&chip->controller->wq);
2803 }
2804
William Juulcfa460a2007-10-31 13:53:06 +01002805}
2806
Sergey Lapindfe64e22013-01-14 03:46:50 +00002807/* Sanitize ONFI strings so we can safely print them */
Christian Hitz5454ddb2011-10-12 09:32:05 +02002808static void sanitize_string(char *s, size_t len)
2809{
2810 ssize_t i;
2811
Sergey Lapindfe64e22013-01-14 03:46:50 +00002812 /* Null terminate */
Christian Hitz5454ddb2011-10-12 09:32:05 +02002813 s[len - 1] = 0;
2814
Sergey Lapindfe64e22013-01-14 03:46:50 +00002815 /* Remove non printable chars */
Christian Hitz5454ddb2011-10-12 09:32:05 +02002816 for (i = 0; i < len - 1; i++) {
2817 if (s[i] < ' ' || s[i] > 127)
2818 s[i] = '?';
2819 }
2820
Sergey Lapindfe64e22013-01-14 03:46:50 +00002821 /* Remove trailing spaces */
Christian Hitz5454ddb2011-10-12 09:32:05 +02002822 strim(s);
2823}
2824
Florian Fainelli0272c712011-02-25 00:01:34 +00002825static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
William Juulcfa460a2007-10-31 13:53:06 +01002826{
Florian Fainelli0272c712011-02-25 00:01:34 +00002827 int i;
Florian Fainelli0272c712011-02-25 00:01:34 +00002828 while (len--) {
2829 crc ^= *p++ << 8;
2830 for (i = 0; i < 8; i++)
2831 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
Scott Woodc45912d2008-10-24 16:20:43 -05002832 }
2833
Florian Fainelli0272c712011-02-25 00:01:34 +00002834 return crc;
2835}
William Juulcfa460a2007-10-31 13:53:06 +01002836
Heiko Schocher4e67c572014-07-15 16:08:43 +02002837#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocherff94bc42014-06-24 10:10:04 +02002838/* Parse the Extended Parameter Page. */
2839static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
2840 struct nand_chip *chip, struct nand_onfi_params *p)
2841{
2842 struct onfi_ext_param_page *ep;
2843 struct onfi_ext_section *s;
2844 struct onfi_ext_ecc_info *ecc;
2845 uint8_t *cursor;
2846 int ret = -EINVAL;
2847 int len;
2848 int i;
2849
2850 len = le16_to_cpu(p->ext_param_page_length) * 16;
2851 ep = kmalloc(len, GFP_KERNEL);
2852 if (!ep)
2853 return -ENOMEM;
2854
2855 /* Send our own NAND_CMD_PARAM. */
2856 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2857
2858 /* Use the Change Read Column command to skip the ONFI param pages. */
2859 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
2860 sizeof(*p) * p->num_of_param_pages , -1);
2861
2862 /* Read out the Extended Parameter Page. */
2863 chip->read_buf(mtd, (uint8_t *)ep, len);
2864 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
2865 != le16_to_cpu(ep->crc))) {
2866 pr_debug("fail in the CRC.\n");
2867 goto ext_out;
2868 }
2869
2870 /*
2871 * Check the signature.
2872 * Do not strictly follow the ONFI spec, maybe changed in future.
2873 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002874 if (strncmp((char *)ep->sig, "EPPS", 4)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002875 pr_debug("The signature is invalid.\n");
2876 goto ext_out;
2877 }
2878
2879 /* find the ECC section. */
2880 cursor = (uint8_t *)(ep + 1);
2881 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
2882 s = ep->sections + i;
2883 if (s->type == ONFI_SECTION_TYPE_2)
2884 break;
2885 cursor += s->length * 16;
2886 }
2887 if (i == ONFI_EXT_SECTION_MAX) {
2888 pr_debug("We can not find the ECC section.\n");
2889 goto ext_out;
2890 }
2891
2892 /* get the info we want. */
2893 ecc = (struct onfi_ext_ecc_info *)cursor;
2894
2895 if (!ecc->codeword_size) {
2896 pr_debug("Invalid codeword size\n");
2897 goto ext_out;
2898 }
2899
2900 chip->ecc_strength_ds = ecc->ecc_bits;
2901 chip->ecc_step_ds = 1 << ecc->codeword_size;
2902 ret = 0;
2903
2904ext_out:
2905 kfree(ep);
2906 return ret;
2907}
2908
2909static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
2910{
2911 struct nand_chip *chip = mtd->priv;
2912 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
2913
2914 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
2915 feature);
2916}
2917
2918/*
2919 * Configure chip properties from Micron vendor-specific ONFI table
2920 */
2921static void nand_onfi_detect_micron(struct nand_chip *chip,
2922 struct nand_onfi_params *p)
2923{
2924 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
2925
2926 if (le16_to_cpu(p->vendor_revision) < 1)
2927 return;
2928
2929 chip->read_retries = micron->read_retry_options;
2930 chip->setup_read_retry = nand_setup_read_retry_micron;
2931}
2932
Florian Fainelli0272c712011-02-25 00:01:34 +00002933/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00002934 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli0272c712011-02-25 00:01:34 +00002935 */
Christian Hitz90e3f392011-10-12 09:32:01 +02002936static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00002937 int *busw)
2938{
2939 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisb9ae6092014-05-06 00:46:16 +05302940 int i, j;
Florian Fainelli0272c712011-02-25 00:01:34 +00002941 int val;
2942
Sergey Lapindfe64e22013-01-14 03:46:50 +00002943 /* Try ONFI for unknown chip or LP */
Florian Fainelli0272c712011-02-25 00:01:34 +00002944 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
2945 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
2946 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
2947 return 0;
2948
Florian Fainelli0272c712011-02-25 00:01:34 +00002949 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
2950 for (i = 0; i < 3; i++) {
Brian Norrisb9ae6092014-05-06 00:46:16 +05302951 for (j = 0; j < sizeof(*p); j++)
2952 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00002953 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
Christian Hitz90e3f392011-10-12 09:32:01 +02002954 le16_to_cpu(p->crc)) {
Wolfgang Denkd1a24f02011-02-02 22:36:10 +01002955 break;
Florian Fainelli0272c712011-02-25 00:01:34 +00002956 }
Florian Fainelli3e9b3492010-06-12 20:59:25 +02002957 }
William Juulcfa460a2007-10-31 13:53:06 +01002958
Heiko Schocherff94bc42014-06-24 10:10:04 +02002959 if (i == 3) {
2960 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli0272c712011-02-25 00:01:34 +00002961 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002962 }
Florian Fainelli0272c712011-02-25 00:01:34 +00002963
Sergey Lapindfe64e22013-01-14 03:46:50 +00002964 /* Check version */
Florian Fainelli0272c712011-02-25 00:01:34 +00002965 val = le16_to_cpu(p->revision);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002966 if (val & (1 << 5))
2967 chip->onfi_version = 23;
2968 else if (val & (1 << 4))
Florian Fainelli0272c712011-02-25 00:01:34 +00002969 chip->onfi_version = 22;
2970 else if (val & (1 << 3))
2971 chip->onfi_version = 21;
2972 else if (val & (1 << 2))
2973 chip->onfi_version = 20;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002974 else if (val & (1 << 1))
Florian Fainelli0272c712011-02-25 00:01:34 +00002975 chip->onfi_version = 10;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002976
2977 if (!chip->onfi_version) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002978 pr_info("unsupported ONFI version: %d\n", val);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02002979 return 0;
2980 }
Florian Fainelli0272c712011-02-25 00:01:34 +00002981
Christian Hitz5454ddb2011-10-12 09:32:05 +02002982 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
2983 sanitize_string(p->model, sizeof(p->model));
William Juulcfa460a2007-10-31 13:53:06 +01002984 if (!mtd->name)
Florian Fainelli0272c712011-02-25 00:01:34 +00002985 mtd->name = p->model;
William Juulcfa460a2007-10-31 13:53:06 +01002986
Heiko Schocherff94bc42014-06-24 10:10:04 +02002987 mtd->writesize = le32_to_cpu(p->byte_per_page);
2988
2989 /*
2990 * pages_per_block and blocks_per_lun may not be a power-of-2 size
2991 * (don't ask me who thought of this...). MTD assumes that these
2992 * dimensions will be power-of-2, so just truncate the remaining area.
2993 */
2994 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
2995 mtd->erasesize *= mtd->writesize;
2996
2997 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
2998
2999 /* See erasesize comment */
3000 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3001 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3002 chip->bits_per_cell = p->bits_per_cell;
3003
3004 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
3005 *busw = NAND_BUSWIDTH_16;
3006 else
3007 *busw = 0;
3008
3009 if (p->ecc_bits != 0xff) {
3010 chip->ecc_strength_ds = p->ecc_bits;
3011 chip->ecc_step_ds = 512;
3012 } else if (chip->onfi_version >= 21 &&
3013 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3014
3015 /*
3016 * The nand_flash_detect_ext_param_page() uses the
3017 * Change Read Column command which maybe not supported
3018 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3019 * now. We do not replace user supplied command function.
3020 */
3021 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3022 chip->cmdfunc = nand_command_lp;
3023
3024 /* The Extended Parameter Page is supported since ONFI 2.1. */
3025 if (nand_flash_detect_ext_param_page(mtd, chip, p))
3026 pr_warn("Failed to detect ONFI extended param page\n");
3027 } else {
3028 pr_warn("Could not retrieve ONFI ECC requirements\n");
3029 }
3030
3031 if (p->jedec_id == NAND_MFR_MICRON)
3032 nand_onfi_detect_micron(chip, p);
3033
Florian Fainelli0272c712011-02-25 00:01:34 +00003034 return 1;
3035}
3036#else
Heiko Schocherff94bc42014-06-24 10:10:04 +02003037static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003038 int *busw)
3039{
3040 return 0;
3041}
3042#endif
3043
Florian Fainelli0272c712011-02-25 00:01:34 +00003044/*
Heiko Schocher4e67c572014-07-15 16:08:43 +02003045 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3046 */
3047static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3048 int *busw)
3049{
3050 struct nand_jedec_params *p = &chip->jedec_params;
3051 struct jedec_ecc_info *ecc;
3052 int val;
3053 int i, j;
3054
3055 /* Try JEDEC for unknown chip or LP */
3056 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3057 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3058 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3059 chip->read_byte(mtd) != 'C')
3060 return 0;
3061
3062 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3063 for (i = 0; i < 3; i++) {
3064 for (j = 0; j < sizeof(*p); j++)
3065 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3066
3067 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3068 le16_to_cpu(p->crc))
3069 break;
3070 }
3071
3072 if (i == 3) {
3073 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3074 return 0;
3075 }
3076
3077 /* Check version */
3078 val = le16_to_cpu(p->revision);
3079 if (val & (1 << 2))
3080 chip->jedec_version = 10;
3081 else if (val & (1 << 1))
3082 chip->jedec_version = 1; /* vendor specific version */
3083
3084 if (!chip->jedec_version) {
3085 pr_info("unsupported JEDEC version: %d\n", val);
3086 return 0;
3087 }
3088
3089 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3090 sanitize_string(p->model, sizeof(p->model));
3091 if (!mtd->name)
3092 mtd->name = p->model;
3093
3094 mtd->writesize = le32_to_cpu(p->byte_per_page);
3095
3096 /* Please reference to the comment for nand_flash_detect_onfi. */
3097 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3098 mtd->erasesize *= mtd->writesize;
3099
3100 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3101
3102 /* Please reference to the comment for nand_flash_detect_onfi. */
3103 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3104 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3105 chip->bits_per_cell = p->bits_per_cell;
3106
3107 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3108 *busw = NAND_BUSWIDTH_16;
3109 else
3110 *busw = 0;
3111
3112 /* ECC info */
3113 ecc = &p->ecc_info[0];
3114
3115 if (ecc->codeword_size >= 9) {
3116 chip->ecc_strength_ds = ecc->ecc_bits;
3117 chip->ecc_step_ds = 1 << ecc->codeword_size;
3118 } else {
3119 pr_warn("Invalid codeword size\n");
3120 }
3121
3122 return 1;
3123}
3124
3125/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003126 * nand_id_has_period - Check if an ID string has a given wraparound period
3127 * @id_data: the ID string
3128 * @arrlen: the length of the @id_data array
3129 * @period: the period of repitition
3130 *
3131 * Check if an ID string is repeated within a given sequence of bytes at
3132 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Heiko Schocherff94bc42014-06-24 10:10:04 +02003133 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Sergey Lapindfe64e22013-01-14 03:46:50 +00003134 * if the repetition has a period of @period; otherwise, returns zero.
3135 */
3136static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3137{
3138 int i, j;
3139 for (i = 0; i < period; i++)
3140 for (j = i + period; j < arrlen; j += period)
3141 if (id_data[i] != id_data[j])
3142 return 0;
3143 return 1;
3144}
3145
3146/*
3147 * nand_id_len - Get the length of an ID string returned by CMD_READID
3148 * @id_data: the ID string
3149 * @arrlen: the length of the @id_data array
3150
3151 * Returns the length of the ID string, according to known wraparound/trailing
3152 * zero patterns. If no pattern exists, returns the length of the array.
3153 */
3154static int nand_id_len(u8 *id_data, int arrlen)
3155{
3156 int last_nonzero, period;
3157
3158 /* Find last non-zero byte */
3159 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3160 if (id_data[last_nonzero])
3161 break;
3162
3163 /* All zeros */
3164 if (last_nonzero < 0)
3165 return 0;
3166
3167 /* Calculate wraparound period */
3168 for (period = 1; period < arrlen; period++)
3169 if (nand_id_has_period(id_data, arrlen, period))
3170 break;
3171
3172 /* There's a repeated pattern */
3173 if (period < arrlen)
3174 return period;
3175
3176 /* There are trailing zeros */
3177 if (last_nonzero < arrlen - 1)
3178 return last_nonzero + 1;
3179
3180 /* No pattern detected */
3181 return arrlen;
3182}
3183
Heiko Schocherff94bc42014-06-24 10:10:04 +02003184/* Extract the bits of per cell from the 3rd byte of the extended ID */
3185static int nand_get_bits_per_cell(u8 cellinfo)
3186{
3187 int bits;
3188
3189 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3190 bits >>= NAND_CI_CELLTYPE_SHIFT;
3191 return bits + 1;
3192}
3193
Sergey Lapindfe64e22013-01-14 03:46:50 +00003194/*
3195 * Many new NAND share similar device ID codes, which represent the size of the
3196 * chip. The rest of the parameters must be decoded according to generic or
3197 * manufacturer-specific "extended ID" decoding patterns.
3198 */
3199static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3200 u8 id_data[8], int *busw)
3201{
3202 int extid, id_len;
3203 /* The 3rd id byte holds MLC / multichip data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003204 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Sergey Lapindfe64e22013-01-14 03:46:50 +00003205 /* The 4th id byte is the important one */
3206 extid = id_data[3];
3207
3208 id_len = nand_id_len(id_data, 8);
3209
3210 /*
3211 * Field definitions are in the following datasheets:
3212 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
3213 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
3214 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
3215 *
3216 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3217 * ID to decide what to do.
3218 */
3219 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003220 !nand_is_slc(chip) && id_data[5] != 0x00) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003221 /* Calc pagesize */
3222 mtd->writesize = 2048 << (extid & 0x03);
3223 extid >>= 2;
3224 /* Calc oobsize */
3225 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3226 case 1:
3227 mtd->oobsize = 128;
3228 break;
3229 case 2:
3230 mtd->oobsize = 218;
3231 break;
3232 case 3:
3233 mtd->oobsize = 400;
3234 break;
3235 case 4:
3236 mtd->oobsize = 436;
3237 break;
3238 case 5:
3239 mtd->oobsize = 512;
3240 break;
3241 case 6:
Sergey Lapindfe64e22013-01-14 03:46:50 +00003242 mtd->oobsize = 640;
3243 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003244 case 7:
3245 default: /* Other cases are "reserved" (unknown) */
3246 mtd->oobsize = 1024;
3247 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003248 }
3249 extid >>= 2;
3250 /* Calc blocksize */
3251 mtd->erasesize = (128 * 1024) <<
3252 (((extid >> 1) & 0x04) | (extid & 0x03));
3253 *busw = 0;
3254 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003255 !nand_is_slc(chip)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003256 unsigned int tmp;
3257
3258 /* Calc pagesize */
3259 mtd->writesize = 2048 << (extid & 0x03);
3260 extid >>= 2;
3261 /* Calc oobsize */
3262 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3263 case 0:
3264 mtd->oobsize = 128;
3265 break;
3266 case 1:
3267 mtd->oobsize = 224;
3268 break;
3269 case 2:
3270 mtd->oobsize = 448;
3271 break;
3272 case 3:
3273 mtd->oobsize = 64;
3274 break;
3275 case 4:
3276 mtd->oobsize = 32;
3277 break;
3278 case 5:
3279 mtd->oobsize = 16;
3280 break;
3281 default:
3282 mtd->oobsize = 640;
3283 break;
3284 }
3285 extid >>= 2;
3286 /* Calc blocksize */
3287 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3288 if (tmp < 0x03)
3289 mtd->erasesize = (128 * 1024) << tmp;
3290 else if (tmp == 0x03)
3291 mtd->erasesize = 768 * 1024;
3292 else
3293 mtd->erasesize = (64 * 1024) << tmp;
3294 *busw = 0;
3295 } else {
3296 /* Calc pagesize */
3297 mtd->writesize = 1024 << (extid & 0x03);
3298 extid >>= 2;
3299 /* Calc oobsize */
3300 mtd->oobsize = (8 << (extid & 0x01)) *
3301 (mtd->writesize >> 9);
3302 extid >>= 2;
3303 /* Calc blocksize. Blocksize is multiples of 64KiB */
3304 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3305 extid >>= 2;
3306 /* Get buswidth information */
3307 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003308
3309 /*
3310 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3311 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3312 * follows:
3313 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3314 * 110b -> 24nm
3315 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3316 */
3317 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
3318 nand_is_slc(chip) &&
3319 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3320 !(id_data[4] & 0x80) /* !BENAND */) {
3321 mtd->oobsize = 32 * mtd->writesize >> 9;
3322 }
3323
Sergey Lapindfe64e22013-01-14 03:46:50 +00003324 }
3325}
3326
Heiko Schocherff94bc42014-06-24 10:10:04 +02003327/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003328 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3329 * decodes a matching ID table entry and assigns the MTD size parameters for
3330 * the chip.
3331 */
3332static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003333 struct nand_flash_dev *type, u8 id_data[8],
Sergey Lapindfe64e22013-01-14 03:46:50 +00003334 int *busw)
3335{
3336 int maf_id = id_data[0];
3337
3338 mtd->erasesize = type->erasesize;
3339 mtd->writesize = type->pagesize;
3340 mtd->oobsize = mtd->writesize / 32;
3341 *busw = type->options & NAND_BUSWIDTH_16;
3342
Heiko Schocherff94bc42014-06-24 10:10:04 +02003343 /* All legacy ID NAND are small-page, SLC */
3344 chip->bits_per_cell = 1;
3345
Sergey Lapindfe64e22013-01-14 03:46:50 +00003346 /*
3347 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3348 * some Spansion chips have erasesize that conflicts with size
3349 * listed in nand_ids table.
3350 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3351 */
3352 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3353 && id_data[6] == 0x00 && id_data[7] == 0x00
3354 && mtd->writesize == 512) {
3355 mtd->erasesize = 128 * 1024;
3356 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3357 }
3358}
3359
Heiko Schocherff94bc42014-06-24 10:10:04 +02003360/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003361 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3362 * heuristic patterns using various detected parameters (e.g., manufacturer,
3363 * page size, cell-type information).
3364 */
3365static void nand_decode_bbm_options(struct mtd_info *mtd,
3366 struct nand_chip *chip, u8 id_data[8])
3367{
3368 int maf_id = id_data[0];
3369
3370 /* Set the bad block position */
3371 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3372 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3373 else
3374 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3375
3376 /*
3377 * Bad block marker is stored in the last page of each block on Samsung
3378 * and Hynix MLC devices; stored in first two pages of each block on
3379 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3380 * AMD/Spansion, and Macronix. All others scan only the first page.
3381 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003382 if (!nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003383 (maf_id == NAND_MFR_SAMSUNG ||
3384 maf_id == NAND_MFR_HYNIX))
3385 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003386 else if ((nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003387 (maf_id == NAND_MFR_SAMSUNG ||
3388 maf_id == NAND_MFR_HYNIX ||
3389 maf_id == NAND_MFR_TOSHIBA ||
3390 maf_id == NAND_MFR_AMD ||
3391 maf_id == NAND_MFR_MACRONIX)) ||
3392 (mtd->writesize == 2048 &&
3393 maf_id == NAND_MFR_MICRON))
3394 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3395}
3396
Heiko Schocherff94bc42014-06-24 10:10:04 +02003397static inline bool is_full_id_nand(struct nand_flash_dev *type)
3398{
3399 return type->id_len;
3400}
3401
3402static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3403 struct nand_flash_dev *type, u8 *id_data, int *busw)
3404{
Heiko Schocherff94bc42014-06-24 10:10:04 +02003405 if (!strncmp((char *)type->id, (char *)id_data, type->id_len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003406 mtd->writesize = type->pagesize;
3407 mtd->erasesize = type->erasesize;
3408 mtd->oobsize = type->oobsize;
3409
3410 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
3411 chip->chipsize = (uint64_t)type->chipsize << 20;
3412 chip->options |= type->options;
3413 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3414 chip->ecc_step_ds = NAND_ECC_STEP(type);
Scott Woodd3963722015-06-26 19:03:26 -05003415 chip->onfi_timing_mode_default =
3416 type->onfi_timing_mode_default;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003417
3418 *busw = type->options & NAND_BUSWIDTH_16;
3419
3420 if (!mtd->name)
3421 mtd->name = type->name;
3422
3423 return true;
3424 }
3425 return false;
3426}
3427
Sergey Lapindfe64e22013-01-14 03:46:50 +00003428/*
3429 * Get the flash and manufacturer id and lookup if the type is supported.
Florian Fainelli0272c712011-02-25 00:01:34 +00003430 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003431static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Florian Fainelli0272c712011-02-25 00:01:34 +00003432 struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003433 int *maf_id, int *dev_id,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003434 struct nand_flash_dev *type)
Florian Fainelli0272c712011-02-25 00:01:34 +00003435{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003436 int busw;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003437 int i, maf_idx;
3438 u8 id_data[8];
Florian Fainelli0272c712011-02-25 00:01:34 +00003439
3440 /* Select the device */
3441 chip->select_chip(mtd, 0);
3442
3443 /*
3444 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Sergey Lapindfe64e22013-01-14 03:46:50 +00003445 * after power-up.
Florian Fainelli0272c712011-02-25 00:01:34 +00003446 */
3447 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3448
3449 /* Send the command for reading device ID */
3450 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3451
3452 /* Read manufacturer and device IDs */
3453 *maf_id = chip->read_byte(mtd);
3454 *dev_id = chip->read_byte(mtd);
3455
Sergey Lapindfe64e22013-01-14 03:46:50 +00003456 /*
3457 * Try again to make sure, as some systems the bus-hold or other
Florian Fainelli0272c712011-02-25 00:01:34 +00003458 * interface concerns can cause random data which looks like a
3459 * possibly credible NAND flash to appear. If the two results do
3460 * not match, ignore the device completely.
3461 */
3462
3463 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3464
Sergey Lapindfe64e22013-01-14 03:46:50 +00003465 /* Read entire ID string */
3466 for (i = 0; i < 8; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003467 id_data[i] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00003468
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003469 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003470 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003471 *maf_id, *dev_id, id_data[0], id_data[1]);
Florian Fainelli0272c712011-02-25 00:01:34 +00003472 return ERR_PTR(-ENODEV);
3473 }
3474
3475 if (!type)
3476 type = nand_flash_ids;
3477
Heiko Schocherff94bc42014-06-24 10:10:04 +02003478 for (; type->name != NULL; type++) {
3479 if (is_full_id_nand(type)) {
3480 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3481 goto ident_done;
3482 } else if (*dev_id == type->dev_id) {
3483 break;
3484 }
3485 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003486
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003487 chip->onfi_version = 0;
3488 if (!type->name || !type->pagesize) {
Scott Woodd3963722015-06-26 19:03:26 -05003489 /* Check if the chip is ONFI compliant */
Sergey Lapindfe64e22013-01-14 03:46:50 +00003490 if (nand_flash_detect_onfi(mtd, chip, &busw))
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003491 goto ident_done;
Heiko Schocher4e67c572014-07-15 16:08:43 +02003492
3493 /* Check if the chip is JEDEC compliant */
3494 if (nand_flash_detect_jedec(mtd, chip, &busw))
3495 goto ident_done;
Florian Fainelli0272c712011-02-25 00:01:34 +00003496 }
3497
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003498 if (!type->name)
3499 return ERR_PTR(-ENODEV);
3500
Florian Fainelli0272c712011-02-25 00:01:34 +00003501 if (!mtd->name)
3502 mtd->name = type->name;
3503
3504 chip->chipsize = (uint64_t)type->chipsize << 20;
Florian Fainelli0272c712011-02-25 00:01:34 +00003505
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003506 if (!type->pagesize && chip->init_size) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003507 /* Set the pagesize, oobsize, erasesize by the driver */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003508 busw = chip->init_size(mtd, chip, id_data);
3509 } else if (!type->pagesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003510 /* Decode parameters from extended ID */
3511 nand_decode_ext_id(mtd, chip, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003512 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003513 nand_decode_id(mtd, chip, type, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003514 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003515 /* Get chip options */
Marek Vasut9c790a72012-08-30 13:39:38 +00003516 chip->options |= type->options;
Florian Fainelli0272c712011-02-25 00:01:34 +00003517
Sergey Lapindfe64e22013-01-14 03:46:50 +00003518 /*
3519 * Check if chip is not a Samsung device. Do not clear the
3520 * options for chips which do not have an extended id.
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003521 */
3522 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3523 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3524ident_done:
3525
William Juulcfa460a2007-10-31 13:53:06 +01003526 /* Try to identify manufacturer */
3527 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
3528 if (nand_manuf_ids[maf_idx].id == *maf_id)
3529 break;
3530 }
3531
Heiko Schocherff94bc42014-06-24 10:10:04 +02003532 if (chip->options & NAND_BUSWIDTH_AUTO) {
3533 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3534 chip->options |= busw;
3535 nand_set_defaults(chip, busw);
3536 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3537 /*
3538 * Check, if buswidth is correct. Hardware drivers should set
3539 * chip correct!
3540 */
3541 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3542 *maf_id, *dev_id);
3543 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3544 pr_warn("bus width %d instead %d bit\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003545 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3546 busw ? 16 : 8);
William Juulcfa460a2007-10-31 13:53:06 +01003547 return ERR_PTR(-EINVAL);
3548 }
3549
Sergey Lapindfe64e22013-01-14 03:46:50 +00003550 nand_decode_bbm_options(mtd, chip, id_data);
3551
William Juulcfa460a2007-10-31 13:53:06 +01003552 /* Calculate the address shift from the page size */
3553 chip->page_shift = ffs(mtd->writesize) - 1;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003554 /* Convert chipsize to number of pages per chip -1 */
William Juulcfa460a2007-10-31 13:53:06 +01003555 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
3556
3557 chip->bbt_erase_shift = chip->phys_erase_shift =
3558 ffs(mtd->erasesize) - 1;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04003559 if (chip->chipsize & 0xffffffff)
Sandeep Paulraj4f41e7e2009-11-07 14:24:06 -05003560 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003561 else {
3562 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3563 chip->chip_shift += 32 - 1;
3564 }
3565
3566 chip->badblockbits = 8;
Scott Woodd3963722015-06-26 19:03:26 -05003567 chip->erase = single_erase;
William Juulcfa460a2007-10-31 13:53:06 +01003568
Sergey Lapindfe64e22013-01-14 03:46:50 +00003569 /* Do not replace user supplied command function! */
William Juulcfa460a2007-10-31 13:53:06 +01003570 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3571 chip->cmdfunc = nand_command_lp;
3572
Heiko Schocherff94bc42014-06-24 10:10:04 +02003573 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3574 *maf_id, *dev_id);
Heiko Schocher4e67c572014-07-15 16:08:43 +02003575
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003576#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocher4e67c572014-07-15 16:08:43 +02003577 if (chip->onfi_version)
3578 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3579 chip->onfi_params.model);
3580 else if (chip->jedec_version)
3581 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3582 chip->jedec_params.model);
3583 else
3584 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3585 type->name);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003586#else
Heiko Schocher4e67c572014-07-15 16:08:43 +02003587 if (chip->jedec_version)
3588 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3589 chip->jedec_params.model);
3590 else
3591 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3592 type->name);
3593
3594 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3595 type->name);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003596#endif
Heiko Schocher4e67c572014-07-15 16:08:43 +02003597
Scott Woodd3963722015-06-26 19:03:26 -05003598 pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02003599 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Scott Woodd3963722015-06-26 19:03:26 -05003600 mtd->erasesize >> 10, mtd->writesize, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01003601 return type;
3602}
3603
3604/**
3605 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00003606 * @mtd: MTD device structure
3607 * @maxchips: number of chips to scan for
3608 * @table: alternative NAND ID table
William Juulcfa460a2007-10-31 13:53:06 +01003609 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00003610 * This is the first phase of the normal nand_scan() function. It reads the
3611 * flash ID and sets up MTD fields accordingly.
William Juulcfa460a2007-10-31 13:53:06 +01003612 *
3613 * The mtd->owner field must be set to the module of the caller.
3614 */
Lei Wen245eb902011-01-06 09:48:18 +08003615int nand_scan_ident(struct mtd_info *mtd, int maxchips,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003616 struct nand_flash_dev *table)
William Juulcfa460a2007-10-31 13:53:06 +01003617{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003618 int i, nand_maf_id, nand_dev_id;
William Juulcfa460a2007-10-31 13:53:06 +01003619 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003620 struct nand_flash_dev *type;
William Juulcfa460a2007-10-31 13:53:06 +01003621
William Juulcfa460a2007-10-31 13:53:06 +01003622 /* Set the default functions */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003623 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
William Juulcfa460a2007-10-31 13:53:06 +01003624
3625 /* Read the flash type */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003626 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
3627 &nand_dev_id, table);
William Juulcfa460a2007-10-31 13:53:06 +01003628
3629 if (IS_ERR(type)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003630 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3631 pr_warn("No NAND device found\n");
William Juulcfa460a2007-10-31 13:53:06 +01003632 chip->select_chip(mtd, -1);
3633 return PTR_ERR(type);
3634 }
3635
Heiko Schocherff94bc42014-06-24 10:10:04 +02003636 chip->select_chip(mtd, -1);
3637
William Juulcfa460a2007-10-31 13:53:06 +01003638 /* Check for a chip array */
3639 for (i = 1; i < maxchips; i++) {
3640 chip->select_chip(mtd, i);
Karl Beldan33efde52008-09-15 16:08:03 +02003641 /* See comment in nand_get_flash_type for reset */
3642 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01003643 /* Send the command for reading device ID */
3644 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3645 /* Read manufacturer and device IDs */
3646 if (nand_maf_id != chip->read_byte(mtd) ||
Heiko Schocherff94bc42014-06-24 10:10:04 +02003647 nand_dev_id != chip->read_byte(mtd)) {
3648 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01003649 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003650 }
3651 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01003652 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003653
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01003654#ifdef DEBUG
William Juulcfa460a2007-10-31 13:53:06 +01003655 if (i > 1)
Heiko Schocherff94bc42014-06-24 10:10:04 +02003656 pr_info("%d chips detected\n", i);
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01003657#endif
William Juulcfa460a2007-10-31 13:53:06 +01003658
3659 /* Store the number of chips and calc total size for mtd */
3660 chip->numchips = i;
3661 mtd->size = i * chip->chipsize;
3662
3663 return 0;
3664}
Heiko Schocherff94bc42014-06-24 10:10:04 +02003665EXPORT_SYMBOL(nand_scan_ident);
William Juulcfa460a2007-10-31 13:53:06 +01003666
Scott Woodd3963722015-06-26 19:03:26 -05003667/*
3668 * Check if the chip configuration meet the datasheet requirements.
3669
3670 * If our configuration corrects A bits per B bytes and the minimum
3671 * required correction level is X bits per Y bytes, then we must ensure
3672 * both of the following are true:
3673 *
3674 * (1) A / B >= X / Y
3675 * (2) A >= X
3676 *
3677 * Requirement (1) ensures we can correct for the required bitflip density.
3678 * Requirement (2) ensures we can correct even when all bitflips are clumped
3679 * in the same sector.
3680 */
3681static bool nand_ecc_strength_good(struct mtd_info *mtd)
3682{
3683 struct nand_chip *chip = mtd->priv;
3684 struct nand_ecc_ctrl *ecc = &chip->ecc;
3685 int corr, ds_corr;
3686
3687 if (ecc->size == 0 || chip->ecc_step_ds == 0)
3688 /* Not enough information */
3689 return true;
3690
3691 /*
3692 * We get the number of corrected bits per page to compare
3693 * the correction density.
3694 */
3695 corr = (mtd->writesize * ecc->strength) / ecc->size;
3696 ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds;
3697
3698 return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds;
3699}
William Juulcfa460a2007-10-31 13:53:06 +01003700
3701/**
3702 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00003703 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01003704 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00003705 * This is the second phase of the normal nand_scan() function. It fills out
3706 * all the uninitialized function pointers with the defaults and scans for a
3707 * bad block table if appropriate.
William Juulcfa460a2007-10-31 13:53:06 +01003708 */
3709int nand_scan_tail(struct mtd_info *mtd)
3710{
3711 int i;
3712 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003713 struct nand_ecc_ctrl *ecc = &chip->ecc;
Heiko Schocher4e67c572014-07-15 16:08:43 +02003714 struct nand_buffers *nbuf;
William Juulcfa460a2007-10-31 13:53:06 +01003715
Sergey Lapindfe64e22013-01-14 03:46:50 +00003716 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
3717 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
3718 !(chip->bbt_options & NAND_BBT_USE_FLASH));
3719
Heiko Schocher4e67c572014-07-15 16:08:43 +02003720 if (!(chip->options & NAND_OWN_BUFFERS)) {
Heiko Schocher4e67c572014-07-15 16:08:43 +02003721 nbuf = kzalloc(sizeof(struct nand_buffers), GFP_KERNEL);
Heiko Schocher4e67c572014-07-15 16:08:43 +02003722 chip->buffers = nbuf;
3723 } else {
3724 if (!chip->buffers)
3725 return -ENOMEM;
3726 }
William Juulcfa460a2007-10-31 13:53:06 +01003727
3728 /* Set the internal oob buffer location, just after the page data */
3729 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
3730
3731 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003732 * If no default placement scheme is given, select an appropriate one.
William Juulcfa460a2007-10-31 13:53:06 +01003733 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003734 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
William Juulcfa460a2007-10-31 13:53:06 +01003735 switch (mtd->oobsize) {
3736 case 8:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003737 ecc->layout = &nand_oob_8;
William Juulcfa460a2007-10-31 13:53:06 +01003738 break;
3739 case 16:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003740 ecc->layout = &nand_oob_16;
William Juulcfa460a2007-10-31 13:53:06 +01003741 break;
3742 case 64:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003743 ecc->layout = &nand_oob_64;
William Juulcfa460a2007-10-31 13:53:06 +01003744 break;
3745 case 128:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003746 ecc->layout = &nand_oob_128;
William Juulcfa460a2007-10-31 13:53:06 +01003747 break;
3748 default:
Sergey Lapindfe64e22013-01-14 03:46:50 +00003749 pr_warn("No oob scheme defined for oobsize %d\n",
3750 mtd->oobsize);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003751 BUG();
William Juulcfa460a2007-10-31 13:53:06 +01003752 }
3753 }
3754
3755 if (!chip->write_page)
3756 chip->write_page = nand_write_page;
3757
3758 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003759 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
William Juulcfa460a2007-10-31 13:53:06 +01003760 * selected and we have 256 byte pagesize fallback to software ECC
3761 */
William Juulcfa460a2007-10-31 13:53:06 +01003762
Heiko Schocherff94bc42014-06-24 10:10:04 +02003763 switch (ecc->mode) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04003764 case NAND_ECC_HW_OOB_FIRST:
3765 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003766 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Scott Woodd3963722015-06-26 19:03:26 -05003767 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04003768 BUG();
3769 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003770 if (!ecc->read_page)
3771 ecc->read_page = nand_read_page_hwecc_oob_first;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04003772
William Juulcfa460a2007-10-31 13:53:06 +01003773 case NAND_ECC_HW:
Sergey Lapindfe64e22013-01-14 03:46:50 +00003774 /* Use standard hwecc read page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003775 if (!ecc->read_page)
3776 ecc->read_page = nand_read_page_hwecc;
3777 if (!ecc->write_page)
3778 ecc->write_page = nand_write_page_hwecc;
3779 if (!ecc->read_page_raw)
3780 ecc->read_page_raw = nand_read_page_raw;
3781 if (!ecc->write_page_raw)
3782 ecc->write_page_raw = nand_write_page_raw;
3783 if (!ecc->read_oob)
3784 ecc->read_oob = nand_read_oob_std;
3785 if (!ecc->write_oob)
3786 ecc->write_oob = nand_write_oob_std;
3787 if (!ecc->read_subpage)
3788 ecc->read_subpage = nand_read_subpage;
3789 if (!ecc->write_subpage)
3790 ecc->write_subpage = nand_write_subpage_hwecc;
William Juulcfa460a2007-10-31 13:53:06 +01003791
3792 case NAND_ECC_HW_SYNDROME:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003793 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
3794 (!ecc->read_page ||
3795 ecc->read_page == nand_read_page_hwecc ||
3796 !ecc->write_page ||
3797 ecc->write_page == nand_write_page_hwecc)) {
Scott Woodd3963722015-06-26 19:03:26 -05003798 pr_warn("No ECC functions supplied; hardware ECC not possible\n");
William Juulcfa460a2007-10-31 13:53:06 +01003799 BUG();
3800 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00003801 /* Use standard syndrome read/write page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003802 if (!ecc->read_page)
3803 ecc->read_page = nand_read_page_syndrome;
3804 if (!ecc->write_page)
3805 ecc->write_page = nand_write_page_syndrome;
3806 if (!ecc->read_page_raw)
3807 ecc->read_page_raw = nand_read_page_raw_syndrome;
3808 if (!ecc->write_page_raw)
3809 ecc->write_page_raw = nand_write_page_raw_syndrome;
3810 if (!ecc->read_oob)
3811 ecc->read_oob = nand_read_oob_syndrome;
3812 if (!ecc->write_oob)
3813 ecc->write_oob = nand_write_oob_syndrome;
William Juulcfa460a2007-10-31 13:53:06 +01003814
Heiko Schocherff94bc42014-06-24 10:10:04 +02003815 if (mtd->writesize >= ecc->size) {
3816 if (!ecc->strength) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003817 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
3818 BUG();
3819 }
William Juulcfa460a2007-10-31 13:53:06 +01003820 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003821 }
Scott Woodd3963722015-06-26 19:03:26 -05003822 pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n",
3823 ecc->size, mtd->writesize);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003824 ecc->mode = NAND_ECC_SOFT;
William Juulcfa460a2007-10-31 13:53:06 +01003825
3826 case NAND_ECC_SOFT:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003827 ecc->calculate = nand_calculate_ecc;
3828 ecc->correct = nand_correct_data;
3829 ecc->read_page = nand_read_page_swecc;
3830 ecc->read_subpage = nand_read_subpage;
3831 ecc->write_page = nand_write_page_swecc;
3832 ecc->read_page_raw = nand_read_page_raw;
3833 ecc->write_page_raw = nand_write_page_raw;
3834 ecc->read_oob = nand_read_oob_std;
3835 ecc->write_oob = nand_write_oob_std;
3836 if (!ecc->size)
3837 ecc->size = 256;
3838 ecc->bytes = 3;
3839 ecc->strength = 1;
William Juulcfa460a2007-10-31 13:53:06 +01003840 break;
3841
Christian Hitz4c6de852011-10-12 09:31:59 +02003842 case NAND_ECC_SOFT_BCH:
3843 if (!mtd_nand_has_bch()) {
Heiko Schocher4e67c572014-07-15 16:08:43 +02003844 pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02003845 BUG();
Christian Hitz4c6de852011-10-12 09:31:59 +02003846 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003847 ecc->calculate = nand_bch_calculate_ecc;
3848 ecc->correct = nand_bch_correct_data;
3849 ecc->read_page = nand_read_page_swecc;
3850 ecc->read_subpage = nand_read_subpage;
3851 ecc->write_page = nand_write_page_swecc;
3852 ecc->read_page_raw = nand_read_page_raw;
3853 ecc->write_page_raw = nand_write_page_raw;
3854 ecc->read_oob = nand_read_oob_std;
3855 ecc->write_oob = nand_write_oob_std;
Christian Hitz4c6de852011-10-12 09:31:59 +02003856 /*
Scott Woodd3963722015-06-26 19:03:26 -05003857 * Board driver should supply ecc.size and ecc.strength values
3858 * to select how many bits are correctable. Otherwise, default
3859 * to 4 bits for large page devices.
Christian Hitz4c6de852011-10-12 09:31:59 +02003860 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003861 if (!ecc->size && (mtd->oobsize >= 64)) {
3862 ecc->size = 512;
Scott Woodd3963722015-06-26 19:03:26 -05003863 ecc->strength = 4;
Christian Hitz4c6de852011-10-12 09:31:59 +02003864 }
Scott Woodd3963722015-06-26 19:03:26 -05003865
3866 /* See nand_bch_init() for details. */
3867 ecc->bytes = DIV_ROUND_UP(
3868 ecc->strength * fls(8 * ecc->size), 8);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003869 ecc->priv = nand_bch_init(mtd, ecc->size, ecc->bytes,
3870 &ecc->layout);
3871 if (!ecc->priv) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003872 pr_warn("BCH ECC initialization failed!\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02003873 BUG();
3874 }
Christian Hitz4c6de852011-10-12 09:31:59 +02003875 break;
3876
William Juulcfa460a2007-10-31 13:53:06 +01003877 case NAND_ECC_NONE:
Scott Woodd3963722015-06-26 19:03:26 -05003878 pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02003879 ecc->read_page = nand_read_page_raw;
3880 ecc->write_page = nand_write_page_raw;
3881 ecc->read_oob = nand_read_oob_std;
3882 ecc->read_page_raw = nand_read_page_raw;
3883 ecc->write_page_raw = nand_write_page_raw;
3884 ecc->write_oob = nand_write_oob_std;
3885 ecc->size = mtd->writesize;
3886 ecc->bytes = 0;
3887 ecc->strength = 0;
William Juulcfa460a2007-10-31 13:53:06 +01003888 break;
3889
3890 default:
Heiko Schocherff94bc42014-06-24 10:10:04 +02003891 pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode);
William Juulcfa460a2007-10-31 13:53:06 +01003892 BUG();
3893 }
3894
Sergey Lapindfe64e22013-01-14 03:46:50 +00003895 /* For many systems, the standard OOB write also works for raw */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003896 if (!ecc->read_oob_raw)
3897 ecc->read_oob_raw = ecc->read_oob;
3898 if (!ecc->write_oob_raw)
3899 ecc->write_oob_raw = ecc->write_oob;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003900
William Juulcfa460a2007-10-31 13:53:06 +01003901 /*
3902 * The number of bytes available for a client to place data into
Sergey Lapindfe64e22013-01-14 03:46:50 +00003903 * the out of band area.
William Juulcfa460a2007-10-31 13:53:06 +01003904 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003905 ecc->layout->oobavail = 0;
3906 for (i = 0; ecc->layout->oobfree[i].length
3907 && i < ARRAY_SIZE(ecc->layout->oobfree); i++)
3908 ecc->layout->oobavail += ecc->layout->oobfree[i].length;
3909 mtd->oobavail = ecc->layout->oobavail;
William Juulcfa460a2007-10-31 13:53:06 +01003910
Scott Woodd3963722015-06-26 19:03:26 -05003911 /* ECC sanity check: warn if it's too weak */
3912 if (!nand_ecc_strength_good(mtd))
3913 pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n",
3914 mtd->name);
3915
William Juulcfa460a2007-10-31 13:53:06 +01003916 /*
3917 * Set the number of read / write steps for one page depending on ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00003918 * mode.
William Juulcfa460a2007-10-31 13:53:06 +01003919 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003920 ecc->steps = mtd->writesize / ecc->size;
3921 if (ecc->steps * ecc->size != mtd->writesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003922 pr_warn("Invalid ECC parameters\n");
William Juulcfa460a2007-10-31 13:53:06 +01003923 BUG();
3924 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003925 ecc->total = ecc->steps * ecc->bytes;
William Juulcfa460a2007-10-31 13:53:06 +01003926
Sergey Lapindfe64e22013-01-14 03:46:50 +00003927 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003928 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
3929 switch (ecc->steps) {
William Juulcfa460a2007-10-31 13:53:06 +01003930 case 2:
3931 mtd->subpage_sft = 1;
3932 break;
3933 case 4:
3934 case 8:
Sandeep Paulrajaad4a282009-11-07 14:24:34 -05003935 case 16:
William Juulcfa460a2007-10-31 13:53:06 +01003936 mtd->subpage_sft = 2;
3937 break;
3938 }
3939 }
3940 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
3941
3942 /* Initialize state */
3943 chip->state = FL_READY;
3944
William Juulcfa460a2007-10-31 13:53:06 +01003945 /* Invalidate the pagebuffer reference */
3946 chip->pagebuf = -1;
3947
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00003948 /* Large page NAND with SOFT_ECC should support subpage reads */
Scott Woodd3963722015-06-26 19:03:26 -05003949 switch (ecc->mode) {
3950 case NAND_ECC_SOFT:
3951 case NAND_ECC_SOFT_BCH:
3952 if (chip->page_shift > 9)
3953 chip->options |= NAND_SUBPAGE_READ;
3954 break;
3955
3956 default:
3957 break;
3958 }
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00003959
William Juulcfa460a2007-10-31 13:53:06 +01003960 /* Fill in remaining MTD driver data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003961 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003962 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
3963 MTD_CAP_NANDFLASH;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003964 mtd->_erase = nand_erase;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003965 mtd->_read = nand_read;
3966 mtd->_write = nand_write;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003967 mtd->_panic_write = panic_nand_write;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003968 mtd->_read_oob = nand_read_oob;
3969 mtd->_write_oob = nand_write_oob;
3970 mtd->_sync = nand_sync;
3971 mtd->_lock = NULL;
3972 mtd->_unlock = NULL;
Ezequiel Garcia86a720a2014-05-21 19:06:12 -03003973 mtd->_block_isreserved = nand_block_isreserved;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003974 mtd->_block_isbad = nand_block_isbad;
3975 mtd->_block_markbad = nand_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003976 mtd->writebufsize = mtd->writesize;
William Juulcfa460a2007-10-31 13:53:06 +01003977
Sergey Lapindfe64e22013-01-14 03:46:50 +00003978 /* propagate ecc info to mtd_info */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003979 mtd->ecclayout = ecc->layout;
3980 mtd->ecc_strength = ecc->strength;
3981 mtd->ecc_step_size = ecc->size;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003982 /*
3983 * Initialize bitflip_threshold to its default prior scan_bbt() call.
3984 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
3985 * properly set.
3986 */
3987 if (!mtd->bitflip_threshold)
Scott Woodd3963722015-06-26 19:03:26 -05003988 mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4);
William Juulcfa460a2007-10-31 13:53:06 +01003989
Rostislav Lisovy35c204d2014-10-22 13:40:44 +02003990 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01003991}
Heiko Schocherff94bc42014-06-24 10:10:04 +02003992EXPORT_SYMBOL(nand_scan_tail);
3993
3994/*
3995 * is_module_text_address() isn't exported, and it's mostly a pointless
3996 * test if this is a module _anyway_ -- they'd have to try _really_ hard
3997 * to call us from in-kernel code if the core NAND support is modular.
3998 */
3999#ifdef MODULE
4000#define caller_is_module() (1)
4001#else
4002#define caller_is_module() \
4003 is_module_text_address((unsigned long)__builtin_return_address(0))
4004#endif
William Juulcfa460a2007-10-31 13:53:06 +01004005
William Juulcfa460a2007-10-31 13:53:06 +01004006/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02004007 * nand_scan - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004008 * @mtd: MTD device structure
4009 * @maxchips: number of chips to scan for
Wolfgang Denk932394a2005-08-17 12:55:25 +02004010 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00004011 * This fills out all the uninitialized function pointers with the defaults.
4012 * The flash ID is read and the mtd/chip structures are filled with the
4013 * appropriate values. The mtd->owner field must be set to the module of the
4014 * caller.
Wolfgang Denk932394a2005-08-17 12:55:25 +02004015 */
William Juulcfa460a2007-10-31 13:53:06 +01004016int nand_scan(struct mtd_info *mtd, int maxchips)
Wolfgang Denk932394a2005-08-17 12:55:25 +02004017{
William Juulcfa460a2007-10-31 13:53:06 +01004018 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004019
Heiko Schocherff94bc42014-06-24 10:10:04 +02004020 /* Many callers got this wrong, so check for it for a while... */
4021 if (!mtd->owner && caller_is_module()) {
4022 pr_crit("%s called with NULL mtd->owner!\n", __func__);
4023 BUG();
4024 }
4025
Lei Wen245eb902011-01-06 09:48:18 +08004026 ret = nand_scan_ident(mtd, maxchips, NULL);
William Juulcfa460a2007-10-31 13:53:06 +01004027 if (!ret)
4028 ret = nand_scan_tail(mtd);
4029 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004030}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004031EXPORT_SYMBOL(nand_scan);
Wolfgang Denk932394a2005-08-17 12:55:25 +02004032
Heiko Schocherff94bc42014-06-24 10:10:04 +02004033module_init(nand_base_init);
4034module_exit(nand_base_exit);
4035
4036MODULE_LICENSE("GPL");
4037MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4038MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
4039MODULE_DESCRIPTION("Generic NAND flash driver code");