blob: 0b6e7ee385c8da9bc5e5ad1f08c5e274e73edd15 [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 Denkac7eb8a32005-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 Denkac7eb8a32005-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 Denkac7eb8a32005-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#ifndef __UBOOT__
33#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34
35#include <linux/module.h>
36#include <linux/delay.h>
37#include <linux/errno.h>
38#include <linux/err.h>
39#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/mtd/mtd.h>
43#include <linux/mtd/nand.h>
44#include <linux/mtd/nand_ecc.h>
45#include <linux/mtd/nand_bch.h>
46#include <linux/interrupt.h>
47#include <linux/bitops.h>
48#include <linux/leds.h>
49#include <linux/io.h>
50#include <linux/mtd/partitions.h>
51#else
52#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Wolfgang Denk932394a2005-08-17 12:55:25 +020053#include <common.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020054#include <malloc.h>
55#include <watchdog.h>
William Juulcfa460a2007-10-31 13:53:06 +010056#include <linux/err.h>
Mike Frysinger7b15e2b2012-04-09 13:39:55 +000057#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020058#include <linux/mtd/mtd.h>
59#include <linux/mtd/nand.h>
60#include <linux/mtd/nand_ecc.h>
Christian Hitz4c6de852011-10-12 09:31:59 +020061#include <linux/mtd/nand_bch.h>
Stefan Roese10bb62d2009-04-24 15:58:33 +020062#ifdef CONFIG_MTD_PARTITIONS
63#include <linux/mtd/partitions.h>
64#endif
Wolfgang Denk932394a2005-08-17 12:55:25 +020065#include <asm/io.h>
66#include <asm/errno.h>
67
Peter Tyser8da60122009-02-04 13:47:22 -060068/*
69 * CONFIG_SYS_NAND_RESET_CNT is used as a timeout mechanism when resetting
70 * a flash. NAND flash is initialized prior to interrupts so standard timers
71 * can't be used. CONFIG_SYS_NAND_RESET_CNT should be set to a value
72 * which is greater than (max NAND reset time / NAND status read time).
73 * A conservative default of 200000 (500 us / 25 ns) is used as a default.
74 */
75#ifndef CONFIG_SYS_NAND_RESET_CNT
76#define CONFIG_SYS_NAND_RESET_CNT 200000
77#endif
78
Heiko Schocherff94bc42014-06-24 10:10:04 +020079static bool is_module_text_address(unsigned long addr) {return 0;}
80#endif
81
Wolfgang Denk932394a2005-08-17 12:55:25 +020082/* Define default oob placement schemes for large and small page devices */
William Juulcfa460a2007-10-31 13:53:06 +010083static struct nand_ecclayout nand_oob_8 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020084 .eccbytes = 3,
85 .eccpos = {0, 1, 2},
William Juulcfa460a2007-10-31 13:53:06 +010086 .oobfree = {
87 {.offset = 3,
88 .length = 2},
89 {.offset = 6,
Christian Hitz90e3f392011-10-12 09:32:01 +020090 .length = 2} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020091};
92
William Juulcfa460a2007-10-31 13:53:06 +010093static struct nand_ecclayout nand_oob_16 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +020094 .eccbytes = 6,
95 .eccpos = {0, 1, 2, 3, 6, 7},
William Juulcfa460a2007-10-31 13:53:06 +010096 .oobfree = {
97 {.offset = 8,
Christian Hitz90e3f392011-10-12 09:32:01 +020098 . length = 8} }
Wolfgang Denk932394a2005-08-17 12:55:25 +020099};
100
William Juulcfa460a2007-10-31 13:53:06 +0100101static struct nand_ecclayout nand_oob_64 = {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200102 .eccbytes = 24,
103 .eccpos = {
William Juulcfa460a2007-10-31 13:53:06 +0100104 40, 41, 42, 43, 44, 45, 46, 47,
105 48, 49, 50, 51, 52, 53, 54, 55,
106 56, 57, 58, 59, 60, 61, 62, 63},
107 .oobfree = {
108 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +0200109 .length = 38} }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200110};
111
William Juulcfa460a2007-10-31 13:53:06 +0100112static struct nand_ecclayout nand_oob_128 = {
Sergei Poselenov248ae5c2008-06-06 15:42:43 +0200113 .eccbytes = 48,
114 .eccpos = {
Christian Hitz90e3f392011-10-12 09:32:01 +0200115 80, 81, 82, 83, 84, 85, 86, 87,
116 88, 89, 90, 91, 92, 93, 94, 95,
117 96, 97, 98, 99, 100, 101, 102, 103,
William Juulcfa460a2007-10-31 13:53:06 +0100118 104, 105, 106, 107, 108, 109, 110, 111,
119 112, 113, 114, 115, 116, 117, 118, 119,
120 120, 121, 122, 123, 124, 125, 126, 127},
121 .oobfree = {
122 {.offset = 2,
Christian Hitz90e3f392011-10-12 09:32:01 +0200123 .length = 78} }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200124};
125
Heiko Schocherff94bc42014-06-24 10:10:04 +0200126static int nand_get_device(struct mtd_info *mtd, int new_state);
William Juulcfa460a2007-10-31 13:53:06 +0100127
128static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
129 struct mtd_oob_ops *ops);
130
Heiko Schocherff94bc42014-06-24 10:10:04 +0200131/*
132 * For devices which display every fart in the system on a separate LED. Is
133 * compiled away when LED support is disabled.
134 */
135DEFINE_LED_TRIGGER(nand_led_trigger);
Sergei Poselenov248ae5c2008-06-06 15:42:43 +0200136
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200137static int check_offs_len(struct mtd_info *mtd,
138 loff_t ofs, uint64_t len)
139{
140 struct nand_chip *chip = mtd->priv;
141 int ret = 0;
142
143 /* Start address must align on block boundary */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200144 if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) {
145 pr_debug("%s: unaligned address\n", __func__);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200146 ret = -EINVAL;
147 }
148
149 /* Length must align on block boundary */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200150 if (len & ((1ULL << chip->phys_erase_shift) - 1)) {
151 pr_debug("%s: length not block aligned\n", __func__);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200152 ret = -EINVAL;
153 }
154
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200155 return ret;
156}
157
Wolfgang Denk932394a2005-08-17 12:55:25 +0200158/**
159 * nand_release_device - [GENERIC] release chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000160 * @mtd: MTD device structure
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200161 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200162 * Release chip lock and wake up anyone waiting on the device.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200163 */
Christian Hitz90e3f392011-10-12 09:32:01 +0200164static void nand_release_device(struct mtd_info *mtd)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100165{
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200166 struct nand_chip *chip = mtd->priv;
167
Heiko Schocherff94bc42014-06-24 10:10:04 +0200168#ifndef __UBOOT__
169 /* Release the controller and the chip */
170 spin_lock(&chip->controller->lock);
171 chip->controller->active = NULL;
172 chip->state = FL_READY;
173 wake_up(&chip->controller->wq);
174 spin_unlock(&chip->controller->lock);
175#else
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200176 /* De-select the NAND device */
177 chip->select_chip(mtd, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200178#endif
Wolfgang Denk8e9655f2005-11-02 14:29:12 +0100179}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200180
181/**
182 * nand_read_byte - [DEFAULT] read one byte from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000183 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200184 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200185 * Default read function for 8bit buswidth
Wolfgang Denk932394a2005-08-17 12:55:25 +0200186 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200187#ifndef __UBOOT__
188static uint8_t nand_read_byte(struct mtd_info *mtd)
189#else
Simon Schwarz82645f82011-10-31 06:34:44 +0000190uint8_t nand_read_byte(struct mtd_info *mtd)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200191#endif
Wolfgang Denk932394a2005-08-17 12:55:25 +0200192{
William Juulcfa460a2007-10-31 13:53:06 +0100193 struct nand_chip *chip = mtd->priv;
194 return readb(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200195}
196
197/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200198 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000199 * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip
200 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200201 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000202 * Default read function for 16bit buswidth with endianness conversion.
203 *
Wolfgang Denk932394a2005-08-17 12:55:25 +0200204 */
William Juulcfa460a2007-10-31 13:53:06 +0100205static uint8_t nand_read_byte16(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200206{
William Juulcfa460a2007-10-31 13:53:06 +0100207 struct nand_chip *chip = mtd->priv;
208 return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200209}
210
211/**
212 * nand_read_word - [DEFAULT] read one word from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000213 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200214 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000215 * Default read function for 16bit buswidth without endianness conversion.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200216 */
217static u16 nand_read_word(struct mtd_info *mtd)
218{
William Juulcfa460a2007-10-31 13:53:06 +0100219 struct nand_chip *chip = mtd->priv;
220 return readw(chip->IO_ADDR_R);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200221}
222
223/**
224 * nand_select_chip - [DEFAULT] control CE line
Sergey Lapindfe64e22013-01-14 03:46:50 +0000225 * @mtd: MTD device structure
226 * @chipnr: chipnumber to select, -1 for deselect
Wolfgang Denk932394a2005-08-17 12:55:25 +0200227 *
228 * Default select function for 1 chip devices.
229 */
William Juulcfa460a2007-10-31 13:53:06 +0100230static void nand_select_chip(struct mtd_info *mtd, int chipnr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200231{
William Juulcfa460a2007-10-31 13:53:06 +0100232 struct nand_chip *chip = mtd->priv;
233
234 switch (chipnr) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200235 case -1:
William Juulcfa460a2007-10-31 13:53:06 +0100236 chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200237 break;
238 case 0:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200239 break;
240
241 default:
242 BUG();
243 }
244}
245
246/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200247 * nand_write_byte - [DEFAULT] write single byte to chip
248 * @mtd: MTD device structure
249 * @byte: value to write
250 *
251 * Default function to write a byte to I/O[7:0]
252 */
253static void nand_write_byte(struct mtd_info *mtd, uint8_t byte)
254{
255 struct nand_chip *chip = mtd->priv;
256
257 chip->write_buf(mtd, &byte, 1);
258}
259
260/**
261 * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16
262 * @mtd: MTD device structure
263 * @byte: value to write
264 *
265 * Default function to write a byte to I/O[7:0] on a 16-bit wide chip.
266 */
267static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte)
268{
269 struct nand_chip *chip = mtd->priv;
270 uint16_t word = byte;
271
272 /*
273 * It's not entirely clear what should happen to I/O[15:8] when writing
274 * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads:
275 *
276 * When the host supports a 16-bit bus width, only data is
277 * transferred at the 16-bit width. All address and command line
278 * transfers shall use only the lower 8-bits of the data bus. During
279 * command transfers, the host may place any value on the upper
280 * 8-bits of the data bus. During address transfers, the host shall
281 * set the upper 8-bits of the data bus to 00h.
282 *
283 * One user of the write_byte callback is nand_onfi_set_features. The
284 * four parameters are specified to be written to I/O[7:0], but this is
285 * neither an address nor a command transfer. Let's assume a 0 on the
286 * upper I/O lines is OK.
287 */
288 chip->write_buf(mtd, (uint8_t *)&word, 2);
289}
290
291#if defined(__UBOOT__) && !defined(CONFIG_BLACKFIN)
292static void iowrite8_rep(void *addr, const uint8_t *buf, int len)
293{
294 int i;
295
296 for (i = 0; i < len; i++)
297 writeb(buf[i], addr);
298}
299static void ioread8_rep(void *addr, uint8_t *buf, int len)
300{
301 int i;
302
303 for (i = 0; i < len; i++)
304 buf[i] = readb(addr);
305}
306
307static void ioread16_rep(void *addr, void *buf, int len)
308{
309 int i;
310 u16 *p = (u16 *) buf;
Stefan Roesebe16aba2014-09-05 09:57:01 +0200311
Heiko Schocherff94bc42014-06-24 10:10:04 +0200312 for (i = 0; i < len; i++)
313 p[i] = readw(addr);
314}
315
316static void iowrite16_rep(void *addr, void *buf, int len)
317{
318 int i;
319 u16 *p = (u16 *) buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200320
321 for (i = 0; i < len; i++)
322 writew(p[i], addr);
323}
324#endif
325
326/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200327 * nand_write_buf - [DEFAULT] write buffer to chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000328 * @mtd: MTD device structure
329 * @buf: data buffer
330 * @len: number of bytes to write
Wolfgang Denk932394a2005-08-17 12:55:25 +0200331 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000332 * Default write function for 8bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200333 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200334#ifndef __UBOOT__
335static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
336#else
Simon Schwarz82645f82011-10-31 06:34:44 +0000337void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200338#endif
Wolfgang Denk932394a2005-08-17 12:55:25 +0200339{
William Juulcfa460a2007-10-31 13:53:06 +0100340 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200341
Heiko Schocherff94bc42014-06-24 10:10:04 +0200342 iowrite8_rep(chip->IO_ADDR_W, buf, len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200343}
344
345/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200346 * nand_read_buf - [DEFAULT] read chip data into buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000347 * @mtd: MTD device structure
348 * @buf: buffer to store date
349 * @len: number of bytes to read
Wolfgang Denk932394a2005-08-17 12:55:25 +0200350 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000351 * Default read function for 8bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200352 */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200353#ifndef __UBOOT__
354static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
355#else
Simon Schwarz12c2f1e2011-09-14 15:30:16 -0400356void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200357#endif
Wolfgang Denk932394a2005-08-17 12:55:25 +0200358{
William Juulcfa460a2007-10-31 13:53:06 +0100359 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200360
Heiko Schocherff94bc42014-06-24 10:10:04 +0200361 ioread8_rep(chip->IO_ADDR_R, buf, len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200362}
363
Heiko Schocherff94bc42014-06-24 10:10:04 +0200364#ifdef __UBOOT__
365#if defined(CONFIG_MTD_NAND_VERIFY_WRITE)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200366/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200367 * nand_verify_buf - [DEFAULT] Verify chip data against buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000368 * @mtd: MTD device structure
369 * @buf: buffer containing the data to compare
370 * @len: number of bytes to compare
Wolfgang Denk932394a2005-08-17 12:55:25 +0200371 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000372 * Default verify function for 8bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200373 */
William Juulcfa460a2007-10-31 13:53:06 +0100374static int nand_verify_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200375{
376 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100377 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200378
William Juulcfa460a2007-10-31 13:53:06 +0100379 for (i = 0; i < len; i++)
380 if (buf[i] != readb(chip->IO_ADDR_R))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200381 return -EFAULT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200382 return 0;
383}
384
385/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200386 * nand_verify_buf16 - [DEFAULT] Verify chip data against buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000387 * @mtd: MTD device structure
388 * @buf: buffer containing the data to compare
389 * @len: number of bytes to compare
Wolfgang Denk932394a2005-08-17 12:55:25 +0200390 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000391 * Default verify function for 16bit buswidth.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200392 */
William Juulcfa460a2007-10-31 13:53:06 +0100393static int nand_verify_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200394{
395 int i;
William Juulcfa460a2007-10-31 13:53:06 +0100396 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200397 u16 *p = (u16 *) buf;
398 len >>= 1;
399
William Juulcfa460a2007-10-31 13:53:06 +0100400 for (i = 0; i < len; i++)
401 if (p[i] != readw(chip->IO_ADDR_R))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200402 return -EFAULT;
403
404 return 0;
405}
Heiko Schocherff94bc42014-06-24 10:10:04 +0200406#endif
407#endif
408
409/**
410 * nand_write_buf16 - [DEFAULT] write buffer to chip
411 * @mtd: MTD device structure
412 * @buf: data buffer
413 * @len: number of bytes to write
414 *
415 * Default write function for 16bit buswidth.
416 */
417#ifndef __UBOOT__
418static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
419#else
420void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len)
421#endif
422{
423 struct nand_chip *chip = mtd->priv;
424 u16 *p = (u16 *) buf;
425
426 iowrite16_rep(chip->IO_ADDR_W, p, len >> 1);
427}
428
429/**
430 * nand_read_buf16 - [DEFAULT] read chip data into buffer
431 * @mtd: MTD device structure
432 * @buf: buffer to store date
433 * @len: number of bytes to read
434 *
435 * Default read function for 16bit buswidth.
436 */
437#ifndef __UBOOT__
438static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
439#else
440void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len)
441#endif
442{
443 struct nand_chip *chip = mtd->priv;
444 u16 *p = (u16 *) buf;
445
446 ioread16_rep(chip->IO_ADDR_R, p, len >> 1);
447}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200448
449/**
450 * nand_block_bad - [DEFAULT] Read bad block marker from the chip
Sergey Lapindfe64e22013-01-14 03:46:50 +0000451 * @mtd: MTD device structure
452 * @ofs: offset from device start
453 * @getchip: 0, if the chip is already selected
Wolfgang Denk932394a2005-08-17 12:55:25 +0200454 *
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200455 * Check, if the block is bad.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200456 */
457static int nand_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
458{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000459 int page, chipnr, res = 0, i = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100460 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200461 u16 bad;
462
Sergey Lapindfe64e22013-01-14 03:46:50 +0000463 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200464 ofs += mtd->erasesize - mtd->writesize;
465
William Juulcfa460a2007-10-31 13:53:06 +0100466 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
Thomas Knoblocha7988652007-05-05 07:04:42 +0200467
Wolfgang Denk932394a2005-08-17 12:55:25 +0200468 if (getchip) {
William Juulcfa460a2007-10-31 13:53:06 +0100469 chipnr = (int)(ofs >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200470
Heiko Schocherff94bc42014-06-24 10:10:04 +0200471 nand_get_device(mtd, FL_READING);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200472
473 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +0100474 chip->select_chip(mtd, chipnr);
Thomas Knoblocha7988652007-05-05 07:04:42 +0200475 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200476
Sergey Lapindfe64e22013-01-14 03:46:50 +0000477 do {
478 if (chip->options & NAND_BUSWIDTH_16) {
479 chip->cmdfunc(mtd, NAND_CMD_READOOB,
480 chip->badblockpos & 0xFE, page);
481 bad = cpu_to_le16(chip->read_word(mtd));
482 if (chip->badblockpos & 0x1)
483 bad >>= 8;
484 else
485 bad &= 0xFF;
486 } else {
487 chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos,
488 page);
489 bad = chip->read_byte(mtd);
490 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200491
Sergey Lapindfe64e22013-01-14 03:46:50 +0000492 if (likely(chip->badblockbits == 8))
493 res = bad != 0xFF;
494 else
495 res = hweight8(bad) < chip->badblockbits;
496 ofs += mtd->writesize;
497 page = (int)(ofs >> chip->page_shift) & chip->pagemask;
498 i++;
499 } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE));
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200500
Heiko Schocherff94bc42014-06-24 10:10:04 +0200501 if (getchip) {
502 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200503 nand_release_device(mtd);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200504 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200505
Wolfgang Denk932394a2005-08-17 12:55:25 +0200506 return res;
507}
508
509/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200510 * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker
Sergey Lapindfe64e22013-01-14 03:46:50 +0000511 * @mtd: MTD device structure
512 * @ofs: offset from device start
Wolfgang Denk932394a2005-08-17 12:55:25 +0200513 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000514 * This is the default implementation, which can be overridden by a hardware
Heiko Schocherff94bc42014-06-24 10:10:04 +0200515 * specific driver. It provides the details for writing a bad block marker to a
516 * block.
517 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200518static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs)
519{
William Juulcfa460a2007-10-31 13:53:06 +0100520 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200521 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +0100522 uint8_t buf[2] = { 0, 0 };
Heiko Schocherff94bc42014-06-24 10:10:04 +0200523 int ret = 0, res, i = 0;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200524
Heiko Schocherff94bc42014-06-24 10:10:04 +0200525 ops.datbuf = NULL;
526 ops.oobbuf = buf;
527 ops.ooboffs = chip->badblockpos;
528 if (chip->options & NAND_BUSWIDTH_16) {
529 ops.ooboffs &= ~0x01;
530 ops.len = ops.ooblen = 2;
531 } else {
532 ops.len = ops.ooblen = 1;
533 }
534 ops.mode = MTD_OPS_PLACE_OOB;
535
536 /* Write to first/last page(s) if necessary */
537 if (chip->bbt_options & NAND_BBT_SCANLASTPAGE)
538 ofs += mtd->erasesize - mtd->writesize;
539 do {
540 res = nand_do_write_oob(mtd, ofs, &ops);
541 if (!ret)
542 ret = res;
543
544 i++;
545 ofs += mtd->writesize;
546 } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2);
547
548 return ret;
549}
550
551/**
552 * nand_block_markbad_lowlevel - mark a block bad
553 * @mtd: MTD device structure
554 * @ofs: offset from device start
555 *
556 * This function performs the generic NAND bad block marking steps (i.e., bad
557 * block table(s) and/or marker(s)). We only allow the hardware driver to
558 * specify how to write bad block markers to OOB (chip->block_markbad).
559 *
560 * We try operations in the following order:
561 * (1) erase the affected block, to allow OOB marker to be written cleanly
562 * (2) write bad block marker to OOB area of affected block (unless flag
563 * NAND_BBT_NO_OOB_BBM is present)
564 * (3) update the BBT
565 * Note that we retain the first error encountered in (2) or (3), finish the
566 * procedures, and dump the error in the end.
567*/
568static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs)
569{
570 struct nand_chip *chip = mtd->priv;
571 int res, ret = 0;
572
573 if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000574 struct erase_info einfo;
575
576 /* Attempt erase before marking OOB */
577 memset(&einfo, 0, sizeof(einfo));
578 einfo.mtd = mtd;
579 einfo.addr = ofs;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200580 einfo.len = 1ULL << chip->phys_erase_shift;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000581 nand_erase_nand(mtd, &einfo, 0);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200582
Heiko Schocherff94bc42014-06-24 10:10:04 +0200583 /* Write bad block marker to OOB */
584 nand_get_device(mtd, FL_WRITING);
585 ret = chip->block_markbad(mtd, ofs);
Scott Woodc45912d2008-10-24 16:20:43 -0500586 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +0100587 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000588
Heiko Schocherff94bc42014-06-24 10:10:04 +0200589 /* Mark block bad in BBT */
590 if (chip->bbt) {
591 res = nand_markbad_bbt(mtd, ofs);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000592 if (!ret)
593 ret = res;
594 }
595
William Juulcfa460a2007-10-31 13:53:06 +0100596 if (!ret)
597 mtd->ecc_stats.badblocks++;
Scott Woodc45912d2008-10-24 16:20:43 -0500598
William Juulcfa460a2007-10-31 13:53:06 +0100599 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200600}
601
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200602/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200603 * nand_check_wp - [GENERIC] check if the chip is write protected
Sergey Lapindfe64e22013-01-14 03:46:50 +0000604 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +0200605 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000606 * Check, if the device is write protected. The function expects, that the
607 * device is already selected.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200608 */
William Juulcfa460a2007-10-31 13:53:06 +0100609static int nand_check_wp(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200610{
William Juulcfa460a2007-10-31 13:53:06 +0100611 struct nand_chip *chip = mtd->priv;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200612
Sergey Lapindfe64e22013-01-14 03:46:50 +0000613 /* Broken xD cards report WP despite being writable */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200614 if (chip->options & NAND_BROKEN_XD)
615 return 0;
616
Wolfgang Denk932394a2005-08-17 12:55:25 +0200617 /* Check the WP bit */
William Juulcfa460a2007-10-31 13:53:06 +0100618 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
619 return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200620}
Markus Klotzbücher43638c62006-03-06 15:04:25 +0100621
Wolfgang Denk932394a2005-08-17 12:55:25 +0200622/**
623 * nand_block_checkbad - [GENERIC] Check if a block is marked bad
Sergey Lapindfe64e22013-01-14 03:46:50 +0000624 * @mtd: MTD device structure
625 * @ofs: offset from device start
626 * @getchip: 0, if the chip is already selected
627 * @allowbbt: 1, if its allowed to access the bbt area
Wolfgang Denk932394a2005-08-17 12:55:25 +0200628 *
629 * Check, if the block is bad. Either by reading the bad block table or
630 * calling of the scan function.
631 */
William Juulcfa460a2007-10-31 13:53:06 +0100632static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int getchip,
633 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200634{
William Juulcfa460a2007-10-31 13:53:06 +0100635 struct nand_chip *chip = mtd->priv;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200636
William Juulcfa460a2007-10-31 13:53:06 +0100637 if (!chip->bbt)
638 return chip->block_bad(mtd, ofs, getchip);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200639
Wolfgang Denk932394a2005-08-17 12:55:25 +0200640 /* Return info from the table */
William Juulcfa460a2007-10-31 13:53:06 +0100641 return nand_isbad_bbt(mtd, ofs, allowbbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200642}
643
Heiko Schocherff94bc42014-06-24 10:10:04 +0200644#ifndef __UBOOT__
645/**
646 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
647 * @mtd: MTD device structure
648 * @timeo: Timeout
649 *
650 * Helper function for nand_wait_ready used when needing to wait in interrupt
651 * context.
652 */
653static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
654{
655 struct nand_chip *chip = mtd->priv;
656 int i;
657
658 /* Wait for the device to get ready */
659 for (i = 0; i < timeo; i++) {
660 if (chip->dev_ready(mtd))
661 break;
662 touch_softlockup_watchdog();
663 mdelay(1);
664 }
665}
666#endif
667
Sergey Lapindfe64e22013-01-14 03:46:50 +0000668/* Wait for the ready pin, after a command. The timeout is caught later. */
William Juulcfa460a2007-10-31 13:53:06 +0100669void nand_wait_ready(struct mtd_info *mtd)
670{
671 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200672#ifndef __UBOOT__
673 unsigned long timeo = jiffies + msecs_to_jiffies(20);
674
675 /* 400ms timeout */
676 if (in_interrupt() || oops_in_progress)
677 return panic_nand_wait_ready(mtd, 400);
678
679 led_trigger_event(nand_led_trigger, LED_FULL);
680 /* Wait until command is processed or timeout occurs */
681 do {
682 if (chip->dev_ready(mtd))
683 break;
684 touch_softlockup_watchdog();
685 } while (time_before(jiffies, timeo));
686 led_trigger_event(nand_led_trigger, LED_OFF);
687#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200688 u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000689 u32 time_start;
Stefan Roese12072262008-01-05 16:43:25 +0100690
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000691 time_start = get_timer(0);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000692 /* Wait until command is processed or timeout occurs */
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000693 while (get_timer(time_start) < timeo) {
Stefan Roese12072262008-01-05 16:43:25 +0100694 if (chip->dev_ready)
695 if (chip->dev_ready(mtd))
696 break;
697 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200698#endif
William Juulcfa460a2007-10-31 13:53:06 +0100699}
Heiko Schocherff94bc42014-06-24 10:10:04 +0200700EXPORT_SYMBOL_GPL(nand_wait_ready);
William Juulcfa460a2007-10-31 13:53:06 +0100701
Wolfgang Denk932394a2005-08-17 12:55:25 +0200702/**
703 * nand_command - [DEFAULT] Send command to NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000704 * @mtd: MTD device structure
705 * @command: the command to be sent
706 * @column: the column address for this command, -1 if none
707 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200708 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000709 * Send command to NAND device. This function is used for small page devices
Heiko Schocherff94bc42014-06-24 10:10:04 +0200710 * (512 Bytes per page).
Wolfgang Denk932394a2005-08-17 12:55:25 +0200711 */
William Juulcfa460a2007-10-31 13:53:06 +0100712static void nand_command(struct mtd_info *mtd, unsigned int command,
713 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200714{
William Juulcfa460a2007-10-31 13:53:06 +0100715 register struct nand_chip *chip = mtd->priv;
716 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Peter Tyser8da60122009-02-04 13:47:22 -0600717 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200718
Sergey Lapindfe64e22013-01-14 03:46:50 +0000719 /* Write out the command to the device */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200720 if (command == NAND_CMD_SEQIN) {
721 int readcmd;
722
William Juulcfa460a2007-10-31 13:53:06 +0100723 if (column >= mtd->writesize) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200724 /* OOB area */
William Juulcfa460a2007-10-31 13:53:06 +0100725 column -= mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200726 readcmd = NAND_CMD_READOOB;
727 } else if (column < 256) {
728 /* First 256 bytes --> READ0 */
729 readcmd = NAND_CMD_READ0;
730 } else {
731 column -= 256;
732 readcmd = NAND_CMD_READ1;
733 }
William Juulcfa460a2007-10-31 13:53:06 +0100734 chip->cmd_ctrl(mtd, readcmd, ctrl);
735 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200736 }
William Juulcfa460a2007-10-31 13:53:06 +0100737 chip->cmd_ctrl(mtd, command, ctrl);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200738
Sergey Lapindfe64e22013-01-14 03:46:50 +0000739 /* Address cycle, when necessary */
William Juulcfa460a2007-10-31 13:53:06 +0100740 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
741 /* Serially input address */
742 if (column != -1) {
743 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200744 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530745 !nand_opcode_8bits(command))
William Juulcfa460a2007-10-31 13:53:06 +0100746 column >>= 1;
747 chip->cmd_ctrl(mtd, column, ctrl);
748 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200749 }
William Juulcfa460a2007-10-31 13:53:06 +0100750 if (page_addr != -1) {
751 chip->cmd_ctrl(mtd, page_addr, ctrl);
752 ctrl &= ~NAND_CTRL_CHANGE;
753 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
754 /* One more address cycle for devices > 32MiB */
755 if (chip->chipsize > (32 << 20))
756 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
757 }
758 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200759
760 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000761 * Program and erase have their own busy handlers status and sequential
762 * in needs no delay
William Juulcfa460a2007-10-31 13:53:06 +0100763 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200764 switch (command) {
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200765
Wolfgang Denk932394a2005-08-17 12:55:25 +0200766 case NAND_CMD_PAGEPROG:
767 case NAND_CMD_ERASE1:
768 case NAND_CMD_ERASE2:
769 case NAND_CMD_SEQIN:
770 case NAND_CMD_STATUS:
771 return;
772
773 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100774 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200775 break;
William Juulcfa460a2007-10-31 13:53:06 +0100776 udelay(chip->chip_delay);
777 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
778 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
779 chip->cmd_ctrl(mtd,
780 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600781 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
782 (rst_sts_cnt--));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200783 return;
784
William Juulcfa460a2007-10-31 13:53:06 +0100785 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200786 default:
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200787 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200788 * If we don't have access to the busy pin, we apply the given
789 * command delay
William Juulcfa460a2007-10-31 13:53:06 +0100790 */
791 if (!chip->dev_ready) {
792 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200793 return;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200794 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200795 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000796 /*
797 * Apply this short delay always to ensure that we do wait tWB in
798 * any case on any machine.
799 */
William Juulcfa460a2007-10-31 13:53:06 +0100800 ndelay(100);
801
802 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200803}
804
805/**
806 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000807 * @mtd: MTD device structure
808 * @command: the command to be sent
809 * @column: the column address for this command, -1 if none
810 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200811 *
William Juulcfa460a2007-10-31 13:53:06 +0100812 * Send command to NAND device. This is the version for the new large page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000813 * devices. We don't have the separate regions as we have in the small page
814 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200815 */
William Juulcfa460a2007-10-31 13:53:06 +0100816static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
817 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200818{
William Juulcfa460a2007-10-31 13:53:06 +0100819 register struct nand_chip *chip = mtd->priv;
Peter Tyser8da60122009-02-04 13:47:22 -0600820 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200821
822 /* Emulate NAND_CMD_READOOB */
823 if (command == NAND_CMD_READOOB) {
William Juulcfa460a2007-10-31 13:53:06 +0100824 column += mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200825 command = NAND_CMD_READ0;
826 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200827
William Juulcfa460a2007-10-31 13:53:06 +0100828 /* Command latch cycle */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200829 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200830
831 if (column != -1 || page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100832 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200833
834 /* Serially input address */
835 if (column != -1) {
836 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200837 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530838 !nand_opcode_8bits(command))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200839 column >>= 1;
William Juulcfa460a2007-10-31 13:53:06 +0100840 chip->cmd_ctrl(mtd, column, ctrl);
841 ctrl &= ~NAND_CTRL_CHANGE;
842 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200843 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200844 if (page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100845 chip->cmd_ctrl(mtd, page_addr, ctrl);
846 chip->cmd_ctrl(mtd, page_addr >> 8,
847 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200848 /* One more address cycle for devices > 128MiB */
William Juulcfa460a2007-10-31 13:53:06 +0100849 if (chip->chipsize > (128 << 20))
850 chip->cmd_ctrl(mtd, page_addr >> 16,
851 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200852 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200853 }
William Juulcfa460a2007-10-31 13:53:06 +0100854 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200855
856 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000857 * Program and erase have their own busy handlers status, sequential
858 * in, and deplete1 need no delay.
William Juulcfa460a2007-10-31 13:53:06 +0100859 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200860 switch (command) {
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200861
Wolfgang Denk932394a2005-08-17 12:55:25 +0200862 case NAND_CMD_CACHEDPROG:
863 case NAND_CMD_PAGEPROG:
864 case NAND_CMD_ERASE1:
865 case NAND_CMD_ERASE2:
866 case NAND_CMD_SEQIN:
William Juulcfa460a2007-10-31 13:53:06 +0100867 case NAND_CMD_RNDIN:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200868 case NAND_CMD_STATUS:
William Juulcfa460a2007-10-31 13:53:06 +0100869 return;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200870
871 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100872 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200873 break;
William Juulcfa460a2007-10-31 13:53:06 +0100874 udelay(chip->chip_delay);
875 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
876 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
877 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
878 NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600879 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
880 (rst_sts_cnt--));
William Juulcfa460a2007-10-31 13:53:06 +0100881 return;
882
883 case NAND_CMD_RNDOUT:
884 /* No ready / busy check necessary */
885 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
886 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
887 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
888 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200889 return;
890
891 case NAND_CMD_READ0:
William Juulcfa460a2007-10-31 13:53:06 +0100892 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
893 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
894 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
895 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200896
William Juulcfa460a2007-10-31 13:53:06 +0100897 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200898 default:
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200899 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200900 * If we don't have access to the busy pin, we apply the given
Sergey Lapindfe64e22013-01-14 03:46:50 +0000901 * command delay.
William Juulcfa460a2007-10-31 13:53:06 +0100902 */
903 if (!chip->dev_ready) {
904 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200905 return;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200906 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200907 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +0200908
Sergey Lapindfe64e22013-01-14 03:46:50 +0000909 /*
910 * Apply this short delay always to ensure that we do wait tWB in
911 * any case on any machine.
912 */
William Juulcfa460a2007-10-31 13:53:06 +0100913 ndelay(100);
914
915 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200916}
917
918/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200919 * panic_nand_get_device - [GENERIC] Get chip for selected access
Sergey Lapindfe64e22013-01-14 03:46:50 +0000920 * @chip: the nand chip descriptor
921 * @mtd: MTD device structure
922 * @new_state: the state which is requested
Wolfgang Denk932394a2005-08-17 12:55:25 +0200923 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200924 * Used when in panic, no locks are taken.
925 */
926static void panic_nand_get_device(struct nand_chip *chip,
927 struct mtd_info *mtd, int new_state)
928{
929 /* Hardware controller shared among independent devices */
930 chip->controller->active = chip;
931 chip->state = new_state;
932}
933
934/**
935 * nand_get_device - [GENERIC] Get chip for selected access
936 * @mtd: MTD device structure
937 * @new_state: the state which is requested
938 *
Wolfgang Denk932394a2005-08-17 12:55:25 +0200939 * Get the device and lock it for exclusive access
940 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200941static int
Heiko Schocherff94bc42014-06-24 10:10:04 +0200942nand_get_device(struct mtd_info *mtd, int new_state)
William Juulcfa460a2007-10-31 13:53:06 +0100943{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200944 struct nand_chip *chip = mtd->priv;
945#ifndef __UBOOT__
946 spinlock_t *lock = &chip->controller->lock;
947 wait_queue_head_t *wq = &chip->controller->wq;
948 DECLARE_WAITQUEUE(wait, current);
949retry:
950 spin_lock(lock);
951
952 /* Hardware controller shared among independent devices */
953 if (!chip->controller->active)
954 chip->controller->active = chip;
955
956 if (chip->controller->active == chip && chip->state == FL_READY) {
957 chip->state = new_state;
958 spin_unlock(lock);
959 return 0;
960 }
961 if (new_state == FL_PM_SUSPENDED) {
962 if (chip->controller->active->state == FL_PM_SUSPENDED) {
963 chip->state = FL_PM_SUSPENDED;
964 spin_unlock(lock);
965 return 0;
966 }
967 }
968 set_current_state(TASK_UNINTERRUPTIBLE);
969 add_wait_queue(wq, &wait);
970 spin_unlock(lock);
971 schedule();
972 remove_wait_queue(wq, &wait);
973 goto retry;
974#else
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200975 chip->state = new_state;
William Juulcfa460a2007-10-31 13:53:06 +0100976 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200977#endif
978}
979
980/**
981 * panic_nand_wait - [GENERIC] wait until the command is done
982 * @mtd: MTD device structure
983 * @chip: NAND chip structure
984 * @timeo: timeout
985 *
986 * Wait for command done. This is a helper function for nand_wait used when
987 * we are in interrupt context. May happen when in panic and trying to write
988 * an oops through mtdoops.
989 */
990static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
991 unsigned long timeo)
992{
993 int i;
994 for (i = 0; i < timeo; i++) {
995 if (chip->dev_ready) {
996 if (chip->dev_ready(mtd))
997 break;
998 } else {
999 if (chip->read_byte(mtd) & NAND_STATUS_READY)
1000 break;
1001 }
1002 mdelay(1);
1003 }
William Juulcfa460a2007-10-31 13:53:06 +01001004}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001005
1006/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001007 * nand_wait - [DEFAULT] wait until the command is done
1008 * @mtd: MTD device structure
1009 * @chip: NAND chip structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02001010 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001011 * Wait for command done. This applies to erase and program only. Erase can
1012 * take up to 400ms and program up to 20ms according to general NAND and
1013 * SmartMedia specs.
William Juulcfa460a2007-10-31 13:53:06 +01001014 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001015static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001016{
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001017
Heiko Schocherff94bc42014-06-24 10:10:04 +02001018 int status, state = chip->state;
1019 unsigned long timeo = (state == FL_ERASING ? 400 : 20);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001020
Heiko Schocherff94bc42014-06-24 10:10:04 +02001021 led_trigger_event(nand_led_trigger, LED_FULL);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001022
Heiko Schocherff94bc42014-06-24 10:10:04 +02001023 /*
1024 * Apply this short delay always to ensure that we do wait tWB in any
1025 * case on any machine.
1026 */
1027 ndelay(100);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001028
Heiko Schocherff94bc42014-06-24 10:10:04 +02001029 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
1030
1031#ifndef __UBOOT__
1032 if (in_interrupt() || oops_in_progress)
1033 panic_nand_wait(mtd, chip, timeo);
1034 else {
1035 timeo = jiffies + msecs_to_jiffies(timeo);
1036 while (time_before(jiffies, timeo)) {
1037 if (chip->dev_ready) {
1038 if (chip->dev_ready(mtd))
1039 break;
1040 } else {
1041 if (chip->read_byte(mtd) & NAND_STATUS_READY)
1042 break;
1043 }
1044 cond_resched();
Stefan Roese15784862006-11-27 17:22:19 +01001045 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001046 }
1047#else
1048 u32 timer = (CONFIG_SYS_HZ * timeo) / 1000;
1049 u32 time_start;
1050
1051 time_start = get_timer(0);
1052 while (get_timer(time_start) < timer) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001053 if (chip->dev_ready) {
1054 if (chip->dev_ready(mtd))
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001055 break;
1056 } else {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001057 if (chip->read_byte(mtd) & NAND_STATUS_READY)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001058 break;
1059 }
1060 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001061#endif
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +01001062#ifdef PPCHAMELON_NAND_TIMER_HACK
Reinhard Meyer7a8fc362010-11-18 03:14:26 +00001063 time_start = get_timer(0);
1064 while (get_timer(time_start) < 10)
1065 ;
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +01001066#endif /* PPCHAMELON_NAND_TIMER_HACK */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001067 led_trigger_event(nand_led_trigger, LED_OFF);
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +01001068
Heiko Schocherff94bc42014-06-24 10:10:04 +02001069 status = (int)chip->read_byte(mtd);
1070 /* This can happen if in case of timeout or buggy dev_ready */
1071 WARN_ON(!(status & NAND_STATUS_READY));
1072 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001073}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001074
Heiko Schocherff94bc42014-06-24 10:10:04 +02001075#ifndef __UBOOT__
1076/**
1077 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
1078 * @mtd: mtd info
1079 * @ofs: offset to start unlock from
1080 * @len: length to unlock
1081 * @invert: when = 0, unlock the range of blocks within the lower and
1082 * upper boundary address
1083 * when = 1, unlock the range of blocks outside the boundaries
1084 * of the lower and upper boundary address
1085 *
1086 * Returs unlock status.
1087 */
1088static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1089 uint64_t len, int invert)
1090{
1091 int ret = 0;
1092 int status, page;
1093 struct nand_chip *chip = mtd->priv;
1094
1095 /* Submit address of first page to unlock */
1096 page = ofs >> chip->page_shift;
1097 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1098
1099 /* Submit address of last page to unlock */
1100 page = (ofs + len) >> chip->page_shift;
1101 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1102 (page | invert) & chip->pagemask);
1103
1104 /* Call wait ready function */
1105 status = chip->waitfunc(mtd, chip);
1106 /* See if device thinks it succeeded */
1107 if (status & NAND_STATUS_FAIL) {
1108 pr_debug("%s: error status = 0x%08x\n",
1109 __func__, status);
1110 ret = -EIO;
1111 }
1112
1113 return ret;
1114}
1115
1116/**
1117 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
1118 * @mtd: mtd info
1119 * @ofs: offset to start unlock from
1120 * @len: length to unlock
1121 *
1122 * Returns unlock status.
1123 */
1124int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1125{
1126 int ret = 0;
1127 int chipnr;
1128 struct nand_chip *chip = mtd->priv;
1129
1130 pr_debug("%s: start = 0x%012llx, len = %llu\n",
1131 __func__, (unsigned long long)ofs, len);
1132
1133 if (check_offs_len(mtd, ofs, len))
1134 ret = -EINVAL;
1135
1136 /* Align to last block address if size addresses end of the device */
1137 if (ofs + len == mtd->size)
1138 len -= mtd->erasesize;
1139
1140 nand_get_device(mtd, FL_UNLOCKING);
1141
1142 /* Shift to get chip number */
1143 chipnr = ofs >> chip->chip_shift;
1144
1145 chip->select_chip(mtd, chipnr);
1146
1147 /* Check, if it is write protected */
1148 if (nand_check_wp(mtd)) {
1149 pr_debug("%s: device is write protected!\n",
1150 __func__);
1151 ret = -EIO;
1152 goto out;
1153 }
1154
1155 ret = __nand_unlock(mtd, ofs, len, 0);
1156
1157out:
1158 chip->select_chip(mtd, -1);
1159 nand_release_device(mtd);
1160
1161 return ret;
1162}
1163EXPORT_SYMBOL(nand_unlock);
1164
1165/**
1166 * nand_lock - [REPLACEABLE] locks all blocks present in the device
1167 * @mtd: mtd info
1168 * @ofs: offset to start unlock from
1169 * @len: length to unlock
1170 *
1171 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1172 * have this feature, but it allows only to lock all blocks, not for specified
1173 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1174 * now.
1175 *
1176 * Returns lock status.
1177 */
1178int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1179{
1180 int ret = 0;
1181 int chipnr, status, page;
1182 struct nand_chip *chip = mtd->priv;
1183
1184 pr_debug("%s: start = 0x%012llx, len = %llu\n",
1185 __func__, (unsigned long long)ofs, len);
1186
1187 if (check_offs_len(mtd, ofs, len))
1188 ret = -EINVAL;
1189
1190 nand_get_device(mtd, FL_LOCKING);
1191
1192 /* Shift to get chip number */
1193 chipnr = ofs >> chip->chip_shift;
1194
1195 chip->select_chip(mtd, chipnr);
1196
1197 /* Check, if it is write protected */
1198 if (nand_check_wp(mtd)) {
1199 pr_debug("%s: device is write protected!\n",
1200 __func__);
1201 status = MTD_ERASE_FAILED;
1202 ret = -EIO;
1203 goto out;
1204 }
1205
1206 /* Submit address of first page to lock */
1207 page = ofs >> chip->page_shift;
1208 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1209
1210 /* Call wait ready function */
1211 status = chip->waitfunc(mtd, chip);
1212 /* See if device thinks it succeeded */
1213 if (status & NAND_STATUS_FAIL) {
1214 pr_debug("%s: error status = 0x%08x\n",
1215 __func__, status);
1216 ret = -EIO;
1217 goto out;
1218 }
1219
1220 ret = __nand_unlock(mtd, ofs, len, 0x1);
1221
1222out:
1223 chip->select_chip(mtd, -1);
1224 nand_release_device(mtd);
1225
1226 return ret;
1227}
1228EXPORT_SYMBOL(nand_lock);
1229#endif
1230
Wolfgang Denk932394a2005-08-17 12:55:25 +02001231/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001232 * nand_read_page_raw - [INTERN] read raw page data without ecc
1233 * @mtd: mtd info structure
1234 * @chip: nand chip info structure
1235 * @buf: buffer to store read data
1236 * @oob_required: caller requires OOB data read to chip->oob_poi
1237 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -05001238 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001239 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001240 */
William Juulcfa460a2007-10-31 13:53:06 +01001241static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001242 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001243{
William Juulcfa460a2007-10-31 13:53:06 +01001244 chip->read_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001245 if (oob_required)
1246 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01001247 return 0;
1248}
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001249
William Juulcfa460a2007-10-31 13:53:06 +01001250/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001251 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
1252 * @mtd: mtd info structure
1253 * @chip: nand chip info structure
1254 * @buf: buffer to store read data
1255 * @oob_required: caller requires OOB data read to chip->oob_poi
1256 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -05001257 *
1258 * We need a special oob layout and handling even when OOB isn't used.
1259 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001260static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001261 struct nand_chip *chip, uint8_t *buf,
1262 int oob_required, int page)
David Brownell7e866612009-11-07 16:27:01 -05001263{
1264 int eccsize = chip->ecc.size;
1265 int eccbytes = chip->ecc.bytes;
1266 uint8_t *oob = chip->oob_poi;
1267 int steps, size;
1268
1269 for (steps = chip->ecc.steps; steps > 0; steps--) {
1270 chip->read_buf(mtd, buf, eccsize);
1271 buf += eccsize;
1272
1273 if (chip->ecc.prepad) {
1274 chip->read_buf(mtd, oob, chip->ecc.prepad);
1275 oob += chip->ecc.prepad;
1276 }
1277
1278 chip->read_buf(mtd, oob, eccbytes);
1279 oob += eccbytes;
1280
1281 if (chip->ecc.postpad) {
1282 chip->read_buf(mtd, oob, chip->ecc.postpad);
1283 oob += chip->ecc.postpad;
1284 }
1285 }
1286
1287 size = mtd->oobsize - (oob - chip->oob_poi);
1288 if (size)
1289 chip->read_buf(mtd, oob, size);
1290
1291 return 0;
1292}
1293
1294/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001295 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
1296 * @mtd: mtd info structure
1297 * @chip: nand chip info structure
1298 * @buf: buffer to store read data
1299 * @oob_required: caller requires OOB data read to chip->oob_poi
1300 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001301 */
1302static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001303 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001304{
1305 int i, eccsize = chip->ecc.size;
1306 int eccbytes = chip->ecc.bytes;
1307 int eccsteps = chip->ecc.steps;
1308 uint8_t *p = buf;
1309 uint8_t *ecc_calc = chip->buffers->ecccalc;
1310 uint8_t *ecc_code = chip->buffers->ecccode;
1311 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001312 unsigned int max_bitflips = 0;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001313
Sergey Lapindfe64e22013-01-14 03:46:50 +00001314 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001315
William Juulcfa460a2007-10-31 13:53:06 +01001316 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1317 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001318
William Juulcfa460a2007-10-31 13:53:06 +01001319 for (i = 0; i < chip->ecc.total; i++)
1320 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001321
William Juulcfa460a2007-10-31 13:53:06 +01001322 eccsteps = chip->ecc.steps;
1323 p = buf;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001324
William Juulcfa460a2007-10-31 13:53:06 +01001325 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1326 int stat;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001327
William Juulcfa460a2007-10-31 13:53:06 +01001328 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001329 if (stat < 0) {
Scott Woodc45912d2008-10-24 16:20:43 -05001330 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001331 } else {
Scott Woodc45912d2008-10-24 16:20:43 -05001332 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001333 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1334 }
Scott Woodc45912d2008-10-24 16:20:43 -05001335 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001336 return max_bitflips;
Scott Woodc45912d2008-10-24 16:20:43 -05001337}
1338
1339/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001340 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Sergey Lapindfe64e22013-01-14 03:46:50 +00001341 * @mtd: mtd info structure
1342 * @chip: nand chip info structure
1343 * @data_offs: offset of requested data within the page
1344 * @readlen: data length
1345 * @bufpoi: buffer to store read data
Heiko Schocher4e67c572014-07-15 16:08:43 +02001346 * @page: page number to read
Scott Woodc45912d2008-10-24 16:20:43 -05001347 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001348static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001349 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1350 int page)
Scott Woodc45912d2008-10-24 16:20:43 -05001351{
1352 int start_step, end_step, num_steps;
1353 uint32_t *eccpos = chip->ecc.layout->eccpos;
1354 uint8_t *p;
1355 int data_col_addr, i, gaps = 0;
1356 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1357 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001358 int index;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001359 unsigned int max_bitflips = 0;
Scott Woodc45912d2008-10-24 16:20:43 -05001360
Sergey Lapindfe64e22013-01-14 03:46:50 +00001361 /* Column address within the page aligned to ECC size (256bytes) */
Scott Woodc45912d2008-10-24 16:20:43 -05001362 start_step = data_offs / chip->ecc.size;
1363 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1364 num_steps = end_step - start_step + 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001365 index = start_step * chip->ecc.bytes;
Scott Woodc45912d2008-10-24 16:20:43 -05001366
Sergey Lapindfe64e22013-01-14 03:46:50 +00001367 /* Data size aligned to ECC ecc.size */
Scott Woodc45912d2008-10-24 16:20:43 -05001368 datafrag_len = num_steps * chip->ecc.size;
1369 eccfrag_len = num_steps * chip->ecc.bytes;
1370
1371 data_col_addr = start_step * chip->ecc.size;
1372 /* If we read not a page aligned data */
1373 if (data_col_addr != 0)
1374 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1375
1376 p = bufpoi + data_col_addr;
1377 chip->read_buf(mtd, p, datafrag_len);
1378
Sergey Lapindfe64e22013-01-14 03:46:50 +00001379 /* Calculate ECC */
Scott Woodc45912d2008-10-24 16:20:43 -05001380 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1381 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1382
Sergey Lapindfe64e22013-01-14 03:46:50 +00001383 /*
1384 * The performance is faster if we position offsets according to
1385 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
1386 */
Scott Woodc45912d2008-10-24 16:20:43 -05001387 for (i = 0; i < eccfrag_len - 1; i++) {
1388 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1389 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1390 gaps = 1;
1391 break;
1392 }
1393 }
1394 if (gaps) {
1395 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1396 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1397 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001398 /*
1399 * Send the command to read the particular ECC bytes take care
1400 * about buswidth alignment in read_buf.
1401 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001402 aligned_pos = eccpos[index] & ~(busw - 1);
Scott Woodc45912d2008-10-24 16:20:43 -05001403 aligned_len = eccfrag_len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001404 if (eccpos[index] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001405 aligned_len++;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001406 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001407 aligned_len++;
1408
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001409 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1410 mtd->writesize + aligned_pos, -1);
Scott Woodc45912d2008-10-24 16:20:43 -05001411 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1412 }
1413
1414 for (i = 0; i < eccfrag_len; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001415 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Scott Woodc45912d2008-10-24 16:20:43 -05001416
1417 p = bufpoi + data_col_addr;
1418 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1419 int stat;
1420
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001421 stat = chip->ecc.correct(mtd, p,
1422 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001423 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001424 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001425 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001426 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001427 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1428 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001429 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001430 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001431}
1432
Wolfgang Denk932394a2005-08-17 12:55:25 +02001433/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001434 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
1435 * @mtd: mtd info structure
1436 * @chip: nand chip info structure
1437 * @buf: buffer to store read data
1438 * @oob_required: caller requires OOB data read to chip->oob_poi
1439 * @page: page number to read
Wolfgang Denk932394a2005-08-17 12:55:25 +02001440 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001441 * Not for syndrome calculating ECC controllers which need a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001442 */
William Juulcfa460a2007-10-31 13:53:06 +01001443static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001444 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001445{
William Juulcfa460a2007-10-31 13:53:06 +01001446 int i, eccsize = chip->ecc.size;
1447 int eccbytes = chip->ecc.bytes;
1448 int eccsteps = chip->ecc.steps;
1449 uint8_t *p = buf;
1450 uint8_t *ecc_calc = chip->buffers->ecccalc;
1451 uint8_t *ecc_code = chip->buffers->ecccode;
1452 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001453 unsigned int max_bitflips = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001454
William Juulcfa460a2007-10-31 13:53:06 +01001455 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1456 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1457 chip->read_buf(mtd, p, eccsize);
1458 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1459 }
1460 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001461
William Juulcfa460a2007-10-31 13:53:06 +01001462 for (i = 0; i < chip->ecc.total; i++)
1463 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk932394a2005-08-17 12:55:25 +02001464
William Juulcfa460a2007-10-31 13:53:06 +01001465 eccsteps = chip->ecc.steps;
1466 p = buf;
1467
1468 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1469 int stat;
1470
1471 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001472 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001473 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001474 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001475 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001476 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1477 }
William Juulcfa460a2007-10-31 13:53:06 +01001478 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001479 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001480}
1481
1482/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001483 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
1484 * @mtd: mtd info structure
1485 * @chip: nand chip info structure
1486 * @buf: buffer to store read data
1487 * @oob_required: caller requires OOB data read to chip->oob_poi
1488 * @page: page number to read
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001489 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001490 * Hardware ECC for large page chips, require OOB to be read first. For this
1491 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1492 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1493 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1494 * the data area, by overwriting the NAND manufacturer bad block markings.
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001495 */
1496static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001497 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001498{
1499 int i, eccsize = chip->ecc.size;
1500 int eccbytes = chip->ecc.bytes;
1501 int eccsteps = chip->ecc.steps;
1502 uint8_t *p = buf;
1503 uint8_t *ecc_code = chip->buffers->ecccode;
1504 uint32_t *eccpos = chip->ecc.layout->eccpos;
1505 uint8_t *ecc_calc = chip->buffers->ecccalc;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001506 unsigned int max_bitflips = 0;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001507
1508 /* Read the OOB area first */
1509 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1510 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1511 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1512
1513 for (i = 0; i < chip->ecc.total; i++)
1514 ecc_code[i] = chip->oob_poi[eccpos[i]];
1515
1516 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1517 int stat;
1518
1519 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1520 chip->read_buf(mtd, p, eccsize);
1521 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1522
1523 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001524 if (stat < 0) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001525 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001526 } else {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001527 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001528 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1529 }
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001530 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001531 return max_bitflips;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001532}
1533
1534/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001535 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
1536 * @mtd: mtd info structure
1537 * @chip: nand chip info structure
1538 * @buf: buffer to store read data
1539 * @oob_required: caller requires OOB data read to chip->oob_poi
1540 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001541 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001542 * The hw generator calculates the error syndrome automatically. Therefore we
1543 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01001544 */
1545static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001546 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001547{
1548 int i, eccsize = chip->ecc.size;
1549 int eccbytes = chip->ecc.bytes;
1550 int eccsteps = chip->ecc.steps;
1551 uint8_t *p = buf;
1552 uint8_t *oob = chip->oob_poi;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001553 unsigned int max_bitflips = 0;
William Juulcfa460a2007-10-31 13:53:06 +01001554
1555 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1556 int stat;
1557
1558 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1559 chip->read_buf(mtd, p, eccsize);
1560
1561 if (chip->ecc.prepad) {
1562 chip->read_buf(mtd, oob, chip->ecc.prepad);
1563 oob += chip->ecc.prepad;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001564 }
1565
William Juulcfa460a2007-10-31 13:53:06 +01001566 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1567 chip->read_buf(mtd, oob, eccbytes);
1568 stat = chip->ecc.correct(mtd, p, oob, NULL);
1569
Heiko Schocherff94bc42014-06-24 10:10:04 +02001570 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001571 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001572 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001573 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001574 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1575 }
William Juulcfa460a2007-10-31 13:53:06 +01001576
1577 oob += eccbytes;
1578
1579 if (chip->ecc.postpad) {
1580 chip->read_buf(mtd, oob, chip->ecc.postpad);
1581 oob += chip->ecc.postpad;
1582 }
1583 }
1584
1585 /* Calculate remaining oob bytes */
1586 i = mtd->oobsize - (oob - chip->oob_poi);
1587 if (i)
1588 chip->read_buf(mtd, oob, i);
1589
Heiko Schocherff94bc42014-06-24 10:10:04 +02001590 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001591}
1592
1593/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001594 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
1595 * @chip: nand chip structure
1596 * @oob: oob destination address
1597 * @ops: oob ops structure
1598 * @len: size of oob to transfer
William Juulcfa460a2007-10-31 13:53:06 +01001599 */
1600static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
1601 struct mtd_oob_ops *ops, size_t len)
1602{
Christian Hitz90e3f392011-10-12 09:32:01 +02001603 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001604
Sergey Lapindfe64e22013-01-14 03:46:50 +00001605 case MTD_OPS_PLACE_OOB:
1606 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01001607 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1608 return oob + len;
1609
Sergey Lapindfe64e22013-01-14 03:46:50 +00001610 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01001611 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1612 uint32_t boffs = 0, roffs = ops->ooboffs;
1613 size_t bytes = 0;
1614
Christian Hitz90e3f392011-10-12 09:32:01 +02001615 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001616 /* Read request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01001617 if (unlikely(roffs)) {
1618 if (roffs >= free->length) {
1619 roffs -= free->length;
1620 continue;
1621 }
1622 boffs = free->offset + roffs;
1623 bytes = min_t(size_t, len,
1624 (free->length - roffs));
1625 roffs = 0;
1626 } else {
1627 bytes = min_t(size_t, len, free->length);
1628 boffs = free->offset;
1629 }
1630 memcpy(oob, chip->oob_poi + boffs, bytes);
1631 oob += bytes;
1632 }
1633 return oob;
1634 }
1635 default:
1636 BUG();
1637 }
1638 return NULL;
1639}
1640
1641/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001642 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1643 * @mtd: MTD device structure
1644 * @retry_mode: the retry mode to use
1645 *
1646 * Some vendors supply a special command to shift the Vt threshold, to be used
1647 * when there are too many bitflips in a page (i.e., ECC error). After setting
1648 * a new threshold, the host should retry reading the page.
1649 */
1650static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1651{
1652 struct nand_chip *chip = mtd->priv;
1653
1654 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1655
1656 if (retry_mode >= chip->read_retries)
1657 return -EINVAL;
1658
1659 if (!chip->setup_read_retry)
1660 return -EOPNOTSUPP;
1661
1662 return chip->setup_read_retry(mtd, retry_mode);
1663}
1664
1665/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001666 * nand_do_read_ops - [INTERN] Read data with ECC
1667 * @mtd: MTD device structure
1668 * @from: offset to read from
1669 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01001670 *
1671 * Internal function. Called with chip held.
1672 */
1673static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1674 struct mtd_oob_ops *ops)
1675{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001676 int chipnr, page, realpage, col, bytes, aligned, oob_required;
William Juulcfa460a2007-10-31 13:53:06 +01001677 struct nand_chip *chip = mtd->priv;
William Juulcfa460a2007-10-31 13:53:06 +01001678 int ret = 0;
1679 uint32_t readlen = ops->len;
1680 uint32_t oobreadlen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001681 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001682 mtd->oobavail : mtd->oobsize;
1683
William Juulcfa460a2007-10-31 13:53:06 +01001684 uint8_t *bufpoi, *oob, *buf;
Paul Burton40462e52013-09-04 15:16:56 +01001685 unsigned int max_bitflips = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001686 int retry_mode = 0;
1687 bool ecc_fail = false;
William Juulcfa460a2007-10-31 13:53:06 +01001688
1689 chipnr = (int)(from >> chip->chip_shift);
1690 chip->select_chip(mtd, chipnr);
1691
1692 realpage = (int)(from >> chip->page_shift);
1693 page = realpage & chip->pagemask;
1694
1695 col = (int)(from & (mtd->writesize - 1));
1696
1697 buf = ops->datbuf;
1698 oob = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001699 oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01001700
Christian Hitz90e3f392011-10-12 09:32:01 +02001701 while (1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001702 unsigned int ecc_failures = mtd->ecc_stats.failed;
Scott Wood6f2ffc32011-02-02 18:15:57 -06001703
Heiko Schocherff94bc42014-06-24 10:10:04 +02001704 WATCHDOG_RESET();
William Juulcfa460a2007-10-31 13:53:06 +01001705 bytes = min(mtd->writesize - col, readlen);
1706 aligned = (bytes == mtd->writesize);
1707
Sergey Lapindfe64e22013-01-14 03:46:50 +00001708 /* Is the current page in the buffer? */
William Juulcfa460a2007-10-31 13:53:06 +01001709 if (realpage != chip->pagebuf || oob) {
1710 bufpoi = aligned ? buf : chip->buffers->databuf;
1711
Heiko Schocherff94bc42014-06-24 10:10:04 +02001712read_retry:
Sergey Lapindfe64e22013-01-14 03:46:50 +00001713 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
William Juulcfa460a2007-10-31 13:53:06 +01001714
Paul Burton40462e52013-09-04 15:16:56 +01001715 /*
1716 * Now read the page into the buffer. Absent an error,
1717 * the read methods return max bitflips per ecc step.
1718 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001719 if (unlikely(ops->mode == MTD_OPS_RAW))
1720 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
1721 oob_required,
1722 page);
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001723 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001724 !oob)
Christian Hitz90e3f392011-10-12 09:32:01 +02001725 ret = chip->ecc.read_subpage(mtd, chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001726 col, bytes, bufpoi,
1727 page);
William Juulcfa460a2007-10-31 13:53:06 +01001728 else
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001729 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001730 oob_required, page);
1731 if (ret < 0) {
1732 if (!aligned)
1733 /* Invalidate page cache */
1734 chip->pagebuf = -1;
William Juulcfa460a2007-10-31 13:53:06 +01001735 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001736 }
William Juulcfa460a2007-10-31 13:53:06 +01001737
Paul Burton40462e52013-09-04 15:16:56 +01001738 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1739
William Juulcfa460a2007-10-31 13:53:06 +01001740 /* Transfer not aligned data */
1741 if (!aligned) {
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001742 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001743 !(mtd->ecc_stats.failed - ecc_failures) &&
Paul Burton40462e52013-09-04 15:16:56 +01001744 (ops->mode != MTD_OPS_RAW)) {
Scott Woodc45912d2008-10-24 16:20:43 -05001745 chip->pagebuf = realpage;
Paul Burton40462e52013-09-04 15:16:56 +01001746 chip->pagebuf_bitflips = ret;
1747 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001748 /* Invalidate page cache */
1749 chip->pagebuf = -1;
Paul Burton40462e52013-09-04 15:16:56 +01001750 }
William Juulcfa460a2007-10-31 13:53:06 +01001751 memcpy(buf, chip->buffers->databuf + col, bytes);
1752 }
1753
William Juulcfa460a2007-10-31 13:53:06 +01001754 if (unlikely(oob)) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001755 int toread = min(oobreadlen, max_oobsize);
1756
1757 if (toread) {
1758 oob = nand_transfer_oob(chip,
1759 oob, ops, toread);
1760 oobreadlen -= toread;
1761 }
William Juulcfa460a2007-10-31 13:53:06 +01001762 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001763
1764 if (chip->options & NAND_NEED_READRDY) {
1765 /* Apply delay or wait for ready/busy pin */
1766 if (!chip->dev_ready)
1767 udelay(chip->chip_delay);
1768 else
1769 nand_wait_ready(mtd);
1770 }
1771
1772 if (mtd->ecc_stats.failed - ecc_failures) {
1773 if (retry_mode + 1 < chip->read_retries) {
1774 retry_mode++;
1775 ret = nand_setup_read_retry(mtd,
1776 retry_mode);
1777 if (ret < 0)
1778 break;
1779
1780 /* Reset failures; retry */
1781 mtd->ecc_stats.failed = ecc_failures;
1782 goto read_retry;
1783 } else {
1784 /* No more retry modes; real failure */
1785 ecc_fail = true;
1786 }
1787 }
1788
1789 buf += bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001790 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001791 memcpy(buf, chip->buffers->databuf + col, bytes);
1792 buf += bytes;
Paul Burton40462e52013-09-04 15:16:56 +01001793 max_bitflips = max_t(unsigned int, max_bitflips,
1794 chip->pagebuf_bitflips);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001795 }
1796
William Juulcfa460a2007-10-31 13:53:06 +01001797 readlen -= bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001798
Heiko Schocherff94bc42014-06-24 10:10:04 +02001799 /* Reset to retry mode 0 */
1800 if (retry_mode) {
1801 ret = nand_setup_read_retry(mtd, 0);
1802 if (ret < 0)
1803 break;
1804 retry_mode = 0;
1805 }
1806
William Juulcfa460a2007-10-31 13:53:06 +01001807 if (!readlen)
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001808 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001809
Sergey Lapindfe64e22013-01-14 03:46:50 +00001810 /* For subsequent reads align to page boundary */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001811 col = 0;
1812 /* Increment page address */
1813 realpage++;
1814
William Juulcfa460a2007-10-31 13:53:06 +01001815 page = realpage & chip->pagemask;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001816 /* Check, if we cross a chip boundary */
1817 if (!page) {
1818 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01001819 chip->select_chip(mtd, -1);
1820 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001821 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001822 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001823 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001824
William Juulcfa460a2007-10-31 13:53:06 +01001825 ops->retlen = ops->len - (size_t) readlen;
1826 if (oob)
1827 ops->oobretlen = ops->ooblen - oobreadlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001828
Heiko Schocherff94bc42014-06-24 10:10:04 +02001829 if (ret < 0)
William Juulcfa460a2007-10-31 13:53:06 +01001830 return ret;
1831
Heiko Schocherff94bc42014-06-24 10:10:04 +02001832 if (ecc_fail)
William Juulcfa460a2007-10-31 13:53:06 +01001833 return -EBADMSG;
1834
Paul Burton40462e52013-09-04 15:16:56 +01001835 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001836}
1837
1838/**
Christian Hitz90e3f392011-10-12 09:32:01 +02001839 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Sergey Lapindfe64e22013-01-14 03:46:50 +00001840 * @mtd: MTD device structure
1841 * @from: offset to read from
1842 * @len: number of bytes to read
1843 * @retlen: pointer to variable to store the number of read bytes
1844 * @buf: the databuffer to put data
Wolfgang Denk932394a2005-08-17 12:55:25 +02001845 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001846 * Get hold of the chip and call nand_do_read.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001847 */
William Juulcfa460a2007-10-31 13:53:06 +01001848static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1849 size_t *retlen, uint8_t *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001850{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001851 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01001852 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001853
Heiko Schocherff94bc42014-06-24 10:10:04 +02001854 nand_get_device(mtd, FL_READING);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001855 ops.len = len;
1856 ops.datbuf = buf;
1857 ops.oobbuf = NULL;
1858 ops.mode = MTD_OPS_PLACE_OOB;
1859 ret = nand_do_read_ops(mtd, from, &ops);
1860 *retlen = ops.retlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001861 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001862 return ret;
1863}
1864
William Juulcfa460a2007-10-31 13:53:06 +01001865/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001866 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
1867 * @mtd: mtd info structure
1868 * @chip: nand chip info structure
1869 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001870 */
1871static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001872 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001873{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001874 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
William Juulcfa460a2007-10-31 13:53:06 +01001875 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001876 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001877}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001878
1879/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001880 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
William Juulcfa460a2007-10-31 13:53:06 +01001881 * with syndromes
Sergey Lapindfe64e22013-01-14 03:46:50 +00001882 * @mtd: mtd info structure
1883 * @chip: nand chip info structure
1884 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001885 */
1886static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001887 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001888{
1889 uint8_t *buf = chip->oob_poi;
1890 int length = mtd->oobsize;
1891 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1892 int eccsize = chip->ecc.size;
1893 uint8_t *bufpoi = buf;
1894 int i, toread, sndrnd = 0, pos;
1895
1896 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1897 for (i = 0; i < chip->ecc.steps; i++) {
1898 if (sndrnd) {
1899 pos = eccsize + i * (eccsize + chunk);
1900 if (mtd->writesize > 512)
1901 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1902 else
1903 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1904 } else
1905 sndrnd = 1;
1906 toread = min_t(int, length, chunk);
1907 chip->read_buf(mtd, bufpoi, toread);
1908 bufpoi += toread;
1909 length -= toread;
1910 }
1911 if (length > 0)
1912 chip->read_buf(mtd, bufpoi, length);
1913
Sergey Lapindfe64e22013-01-14 03:46:50 +00001914 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001915}
1916
1917/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001918 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
1919 * @mtd: mtd info structure
1920 * @chip: nand chip info structure
1921 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001922 */
1923static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1924 int page)
1925{
1926 int status = 0;
1927 const uint8_t *buf = chip->oob_poi;
1928 int length = mtd->oobsize;
1929
1930 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1931 chip->write_buf(mtd, buf, length);
1932 /* Send command to program the OOB data */
1933 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1934
1935 status = chip->waitfunc(mtd, chip);
1936
1937 return status & NAND_STATUS_FAIL ? -EIO : 0;
1938}
1939
1940/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001941 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
1942 * with syndrome - only for large page flash
1943 * @mtd: mtd info structure
1944 * @chip: nand chip info structure
1945 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001946 */
1947static int nand_write_oob_syndrome(struct mtd_info *mtd,
1948 struct nand_chip *chip, int page)
1949{
1950 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1951 int eccsize = chip->ecc.size, length = mtd->oobsize;
1952 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1953 const uint8_t *bufpoi = chip->oob_poi;
1954
1955 /*
1956 * data-ecc-data-ecc ... ecc-oob
1957 * or
1958 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1959 */
1960 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1961 pos = steps * (eccsize + chunk);
1962 steps = 0;
1963 } else
1964 pos = eccsize;
1965
1966 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1967 for (i = 0; i < steps; i++) {
1968 if (sndcmd) {
1969 if (mtd->writesize <= 512) {
1970 uint32_t fill = 0xFFFFFFFF;
1971
1972 len = eccsize;
1973 while (len > 0) {
1974 int num = min_t(int, len, 4);
1975 chip->write_buf(mtd, (uint8_t *)&fill,
1976 num);
1977 len -= num;
1978 }
1979 } else {
1980 pos = eccsize + i * (eccsize + chunk);
1981 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1982 }
1983 } else
1984 sndcmd = 1;
1985 len = min_t(int, length, chunk);
1986 chip->write_buf(mtd, bufpoi, len);
1987 bufpoi += len;
1988 length -= len;
1989 }
1990 if (length > 0)
1991 chip->write_buf(mtd, bufpoi, length);
1992
1993 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1994 status = chip->waitfunc(mtd, chip);
1995
1996 return status & NAND_STATUS_FAIL ? -EIO : 0;
1997}
1998
1999/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002000 * nand_do_read_oob - [INTERN] NAND read out-of-band
2001 * @mtd: MTD device structure
2002 * @from: offset to read from
2003 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01002004 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002005 * NAND read out-of-band data from the spare area.
William Juulcfa460a2007-10-31 13:53:06 +01002006 */
2007static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2008 struct mtd_oob_ops *ops)
2009{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002010 int page, realpage, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002011 struct nand_chip *chip = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002012 struct mtd_ecc_stats stats;
William Juulcfa460a2007-10-31 13:53:06 +01002013 int readlen = ops->ooblen;
2014 int len;
2015 uint8_t *buf = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002016 int ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002017
Heiko Schocherff94bc42014-06-24 10:10:04 +02002018 pr_debug("%s: from = 0x%08Lx, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02002019 __func__, (unsigned long long)from, readlen);
William Juulcfa460a2007-10-31 13:53:06 +01002020
Sergey Lapindfe64e22013-01-14 03:46:50 +00002021 stats = mtd->ecc_stats;
2022
2023 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01002024 len = chip->ecc.layout->oobavail;
2025 else
2026 len = mtd->oobsize;
2027
2028 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002029 pr_debug("%s: attempt to start read outside oob\n",
2030 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002031 return -EINVAL;
2032 }
2033
2034 /* Do not allow reads past end of device */
2035 if (unlikely(from >= mtd->size ||
2036 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2037 (from >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002038 pr_debug("%s: attempt to read beyond end of device\n",
2039 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002040 return -EINVAL;
2041 }
2042
2043 chipnr = (int)(from >> chip->chip_shift);
2044 chip->select_chip(mtd, chipnr);
2045
2046 /* Shift to get page */
2047 realpage = (int)(from >> chip->page_shift);
2048 page = realpage & chip->pagemask;
2049
Christian Hitz90e3f392011-10-12 09:32:01 +02002050 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002051 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02002052
Sergey Lapindfe64e22013-01-14 03:46:50 +00002053 if (ops->mode == MTD_OPS_RAW)
2054 ret = chip->ecc.read_oob_raw(mtd, chip, page);
2055 else
2056 ret = chip->ecc.read_oob(mtd, chip, page);
2057
2058 if (ret < 0)
2059 break;
William Juulcfa460a2007-10-31 13:53:06 +01002060
2061 len = min(len, readlen);
2062 buf = nand_transfer_oob(chip, buf, ops, len);
2063
Heiko Schocherff94bc42014-06-24 10:10:04 +02002064 if (chip->options & NAND_NEED_READRDY) {
2065 /* Apply delay or wait for ready/busy pin */
2066 if (!chip->dev_ready)
2067 udelay(chip->chip_delay);
2068 else
2069 nand_wait_ready(mtd);
2070 }
2071
William Juulcfa460a2007-10-31 13:53:06 +01002072 readlen -= len;
2073 if (!readlen)
2074 break;
2075
2076 /* Increment page address */
2077 realpage++;
2078
2079 page = realpage & chip->pagemask;
2080 /* Check, if we cross a chip boundary */
2081 if (!page) {
2082 chipnr++;
2083 chip->select_chip(mtd, -1);
2084 chip->select_chip(mtd, chipnr);
2085 }
William Juulcfa460a2007-10-31 13:53:06 +01002086 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02002087 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002088
Sergey Lapindfe64e22013-01-14 03:46:50 +00002089 ops->oobretlen = ops->ooblen - readlen;
2090
2091 if (ret < 0)
2092 return ret;
2093
2094 if (mtd->ecc_stats.failed - stats.failed)
2095 return -EBADMSG;
2096
2097 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
William Juulcfa460a2007-10-31 13:53:06 +01002098}
2099
2100/**
2101 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002102 * @mtd: MTD device structure
2103 * @from: offset to read from
2104 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002105 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002106 * NAND read data and/or out-of-band data.
William Juulcfa460a2007-10-31 13:53:06 +01002107 */
2108static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2109 struct mtd_oob_ops *ops)
2110{
William Juulcfa460a2007-10-31 13:53:06 +01002111 int ret = -ENOTSUPP;
2112
2113 ops->retlen = 0;
2114
2115 /* Do not allow reads past end of device */
2116 if (ops->datbuf && (from + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002117 pr_debug("%s: attempt to read beyond end of device\n",
2118 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002119 return -EINVAL;
2120 }
2121
Heiko Schocherff94bc42014-06-24 10:10:04 +02002122 nand_get_device(mtd, FL_READING);
William Juulcfa460a2007-10-31 13:53:06 +01002123
Christian Hitz90e3f392011-10-12 09:32:01 +02002124 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002125 case MTD_OPS_PLACE_OOB:
2126 case MTD_OPS_AUTO_OOB:
2127 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002128 break;
2129
2130 default:
2131 goto out;
2132 }
2133
2134 if (!ops->datbuf)
2135 ret = nand_do_read_oob(mtd, from, ops);
2136 else
2137 ret = nand_do_read_ops(mtd, from, ops);
2138
Christian Hitz90e3f392011-10-12 09:32:01 +02002139out:
William Juulcfa460a2007-10-31 13:53:06 +01002140 nand_release_device(mtd);
2141 return ret;
2142}
2143
2144
2145/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002146 * nand_write_page_raw - [INTERN] raw page write function
2147 * @mtd: mtd info structure
2148 * @chip: nand chip info structure
2149 * @buf: data buffer
2150 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05002151 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002152 * Not for syndrome calculating ECC controllers, which use a special oob layout.
William Juulcfa460a2007-10-31 13:53:06 +01002153 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002154static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
2155 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002156{
2157 chip->write_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002158 if (oob_required)
2159 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2160
2161 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002162}
2163
2164/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002165 * nand_write_page_raw_syndrome - [INTERN] raw page write function
2166 * @mtd: mtd info structure
2167 * @chip: nand chip info structure
2168 * @buf: data buffer
2169 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05002170 *
2171 * We need a special oob layout and handling even when ECC isn't checked.
2172 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002173static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Christian Hitz90e3f392011-10-12 09:32:01 +02002174 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00002175 const uint8_t *buf, int oob_required)
David Brownell7e866612009-11-07 16:27:01 -05002176{
2177 int eccsize = chip->ecc.size;
2178 int eccbytes = chip->ecc.bytes;
2179 uint8_t *oob = chip->oob_poi;
2180 int steps, size;
2181
2182 for (steps = chip->ecc.steps; steps > 0; steps--) {
2183 chip->write_buf(mtd, buf, eccsize);
2184 buf += eccsize;
2185
2186 if (chip->ecc.prepad) {
2187 chip->write_buf(mtd, oob, chip->ecc.prepad);
2188 oob += chip->ecc.prepad;
2189 }
2190
Heiko Schocher4e67c572014-07-15 16:08:43 +02002191 chip->write_buf(mtd, oob, eccbytes);
David Brownell7e866612009-11-07 16:27:01 -05002192 oob += eccbytes;
2193
2194 if (chip->ecc.postpad) {
2195 chip->write_buf(mtd, oob, chip->ecc.postpad);
2196 oob += chip->ecc.postpad;
2197 }
2198 }
2199
2200 size = mtd->oobsize - (oob - chip->oob_poi);
2201 if (size)
2202 chip->write_buf(mtd, oob, size);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002203
2204 return 0;
David Brownell7e866612009-11-07 16:27:01 -05002205}
2206/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002207 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
2208 * @mtd: mtd info structure
2209 * @chip: nand chip info structure
2210 * @buf: data buffer
2211 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002212 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002213static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
2214 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002215{
2216 int i, eccsize = chip->ecc.size;
2217 int eccbytes = chip->ecc.bytes;
2218 int eccsteps = chip->ecc.steps;
2219 uint8_t *ecc_calc = chip->buffers->ecccalc;
2220 const uint8_t *p = buf;
2221 uint32_t *eccpos = chip->ecc.layout->eccpos;
2222
Sergey Lapindfe64e22013-01-14 03:46:50 +00002223 /* Software ECC calculation */
William Juulcfa460a2007-10-31 13:53:06 +01002224 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2225 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2226
2227 for (i = 0; i < chip->ecc.total; i++)
2228 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2229
Sergey Lapindfe64e22013-01-14 03:46:50 +00002230 return chip->ecc.write_page_raw(mtd, chip, buf, 1);
William Juulcfa460a2007-10-31 13:53:06 +01002231}
2232
2233/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002234 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
2235 * @mtd: mtd info structure
2236 * @chip: nand chip info structure
2237 * @buf: data buffer
2238 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002239 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002240static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
2241 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002242{
2243 int i, eccsize = chip->ecc.size;
2244 int eccbytes = chip->ecc.bytes;
2245 int eccsteps = chip->ecc.steps;
2246 uint8_t *ecc_calc = chip->buffers->ecccalc;
2247 const uint8_t *p = buf;
2248 uint32_t *eccpos = chip->ecc.layout->eccpos;
2249
2250 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2251 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2252 chip->write_buf(mtd, p, eccsize);
2253 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2254 }
2255
2256 for (i = 0; i < chip->ecc.total; i++)
2257 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2258
2259 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002260
2261 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002262}
2263
Heiko Schocherff94bc42014-06-24 10:10:04 +02002264
2265/**
2266 * nand_write_subpage_hwecc - [REPLACABLE] hardware ECC based subpage write
2267 * @mtd: mtd info structure
2268 * @chip: nand chip info structure
2269 * @offset: column address of subpage within the page
2270 * @data_len: data length
2271 * @buf: data buffer
2272 * @oob_required: must write chip->oob_poi to OOB
2273 */
2274static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2275 struct nand_chip *chip, uint32_t offset,
2276 uint32_t data_len, const uint8_t *buf,
2277 int oob_required)
2278{
2279 uint8_t *oob_buf = chip->oob_poi;
2280 uint8_t *ecc_calc = chip->buffers->ecccalc;
2281 int ecc_size = chip->ecc.size;
2282 int ecc_bytes = chip->ecc.bytes;
2283 int ecc_steps = chip->ecc.steps;
2284 uint32_t *eccpos = chip->ecc.layout->eccpos;
2285 uint32_t start_step = offset / ecc_size;
2286 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2287 int oob_bytes = mtd->oobsize / ecc_steps;
2288 int step, i;
2289
2290 for (step = 0; step < ecc_steps; step++) {
2291 /* configure controller for WRITE access */
2292 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2293
2294 /* write data (untouched subpages already masked by 0xFF) */
2295 chip->write_buf(mtd, buf, ecc_size);
2296
2297 /* mask ECC of un-touched subpages by padding 0xFF */
2298 if ((step < start_step) || (step > end_step))
2299 memset(ecc_calc, 0xff, ecc_bytes);
2300 else
2301 chip->ecc.calculate(mtd, buf, ecc_calc);
2302
2303 /* mask OOB of un-touched subpages by padding 0xFF */
2304 /* if oob_required, preserve OOB metadata of written subpage */
2305 if (!oob_required || (step < start_step) || (step > end_step))
2306 memset(oob_buf, 0xff, oob_bytes);
2307
2308 buf += ecc_size;
2309 ecc_calc += ecc_bytes;
2310 oob_buf += oob_bytes;
2311 }
2312
2313 /* copy calculated ECC for whole page to chip->buffer->oob */
2314 /* this include masked-value(0xFF) for unwritten subpages */
2315 ecc_calc = chip->buffers->ecccalc;
2316 for (i = 0; i < chip->ecc.total; i++)
2317 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2318
2319 /* write OOB buffer to NAND device */
2320 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2321
2322 return 0;
2323}
2324
2325
William Juulcfa460a2007-10-31 13:53:06 +01002326/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002327 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
2328 * @mtd: mtd info structure
2329 * @chip: nand chip info structure
2330 * @buf: data buffer
2331 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002332 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002333 * The hw generator calculates the error syndrome automatically. Therefore we
2334 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01002335 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002336static int nand_write_page_syndrome(struct mtd_info *mtd,
2337 struct nand_chip *chip,
2338 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002339{
2340 int i, eccsize = chip->ecc.size;
2341 int eccbytes = chip->ecc.bytes;
2342 int eccsteps = chip->ecc.steps;
2343 const uint8_t *p = buf;
2344 uint8_t *oob = chip->oob_poi;
2345
2346 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2347
2348 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2349 chip->write_buf(mtd, p, eccsize);
2350
2351 if (chip->ecc.prepad) {
2352 chip->write_buf(mtd, oob, chip->ecc.prepad);
2353 oob += chip->ecc.prepad;
2354 }
2355
2356 chip->ecc.calculate(mtd, p, oob);
2357 chip->write_buf(mtd, oob, eccbytes);
2358 oob += eccbytes;
2359
2360 if (chip->ecc.postpad) {
2361 chip->write_buf(mtd, oob, chip->ecc.postpad);
2362 oob += chip->ecc.postpad;
2363 }
2364 }
2365
2366 /* Calculate remaining oob bytes */
2367 i = mtd->oobsize - (oob - chip->oob_poi);
2368 if (i)
2369 chip->write_buf(mtd, oob, i);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002370
2371 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002372}
2373
2374/**
2375 * nand_write_page - [REPLACEABLE] write one page
Sergey Lapindfe64e22013-01-14 03:46:50 +00002376 * @mtd: MTD device structure
2377 * @chip: NAND chip descriptor
Heiko Schocherff94bc42014-06-24 10:10:04 +02002378 * @offset: address offset within the page
2379 * @data_len: length of actual data to be written
Sergey Lapindfe64e22013-01-14 03:46:50 +00002380 * @buf: the data to write
2381 * @oob_required: must write chip->oob_poi to OOB
2382 * @page: page number to write
2383 * @cached: cached programming
2384 * @raw: use _raw version of write_page
William Juulcfa460a2007-10-31 13:53:06 +01002385 */
2386static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02002387 uint32_t offset, int data_len, const uint8_t *buf,
2388 int oob_required, int page, int cached, int raw)
William Juulcfa460a2007-10-31 13:53:06 +01002389{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002390 int status, subpage;
2391
2392 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2393 chip->ecc.write_subpage)
2394 subpage = offset || (data_len < mtd->writesize);
2395 else
2396 subpage = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002397
2398 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2399
2400 if (unlikely(raw))
Heiko Schocherff94bc42014-06-24 10:10:04 +02002401 status = chip->ecc.write_page_raw(mtd, chip, buf,
2402 oob_required);
2403 else if (subpage)
2404 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
2405 buf, oob_required);
William Juulcfa460a2007-10-31 13:53:06 +01002406 else
Sergey Lapindfe64e22013-01-14 03:46:50 +00002407 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2408
2409 if (status < 0)
2410 return status;
William Juulcfa460a2007-10-31 13:53:06 +01002411
2412 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00002413 * Cached progamming disabled for now. Not sure if it's worth the
2414 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
William Juulcfa460a2007-10-31 13:53:06 +01002415 */
2416 cached = 0;
2417
Heiko Schocherff94bc42014-06-24 10:10:04 +02002418 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
William Juulcfa460a2007-10-31 13:53:06 +01002419
2420 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2421 status = chip->waitfunc(mtd, chip);
2422 /*
2423 * See if operation failed and additional status checks are
Sergey Lapindfe64e22013-01-14 03:46:50 +00002424 * available.
William Juulcfa460a2007-10-31 13:53:06 +01002425 */
2426 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2427 status = chip->errstat(mtd, chip, FL_WRITING, status,
2428 page);
2429
2430 if (status & NAND_STATUS_FAIL)
2431 return -EIO;
2432 } else {
2433 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
2434 status = chip->waitfunc(mtd, chip);
2435 }
2436
Heiko Schocherff94bc42014-06-24 10:10:04 +02002437
2438#ifdef __UBOOT__
2439#if defined(CONFIG_MTD_NAND_VERIFY_WRITE)
William Juulcfa460a2007-10-31 13:53:06 +01002440 /* Send command to read back the data */
2441 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2442
2443 if (chip->verify_buf(mtd, buf, mtd->writesize))
2444 return -EIO;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002445
2446 /* Make sure the next page prog is preceded by a status read */
2447 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002448#endif
Heiko Schocherff94bc42014-06-24 10:10:04 +02002449#endif
2450
William Juulcfa460a2007-10-31 13:53:06 +01002451 return 0;
2452}
2453
2454/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002455 * nand_fill_oob - [INTERN] Transfer client buffer to oob
2456 * @mtd: MTD device structure
2457 * @oob: oob data buffer
2458 * @len: oob data write length
2459 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01002460 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002461static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2462 struct mtd_oob_ops *ops)
William Juulcfa460a2007-10-31 13:53:06 +01002463{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002464 struct nand_chip *chip = mtd->priv;
2465
2466 /*
2467 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2468 * data from a previous OOB read.
2469 */
2470 memset(chip->oob_poi, 0xff, mtd->oobsize);
2471
Christian Hitz90e3f392011-10-12 09:32:01 +02002472 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01002473
Sergey Lapindfe64e22013-01-14 03:46:50 +00002474 case MTD_OPS_PLACE_OOB:
2475 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002476 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2477 return oob + len;
2478
Sergey Lapindfe64e22013-01-14 03:46:50 +00002479 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01002480 struct nand_oobfree *free = chip->ecc.layout->oobfree;
2481 uint32_t boffs = 0, woffs = ops->ooboffs;
2482 size_t bytes = 0;
2483
Christian Hitz90e3f392011-10-12 09:32:01 +02002484 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002485 /* Write request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01002486 if (unlikely(woffs)) {
2487 if (woffs >= free->length) {
2488 woffs -= free->length;
2489 continue;
2490 }
2491 boffs = free->offset + woffs;
2492 bytes = min_t(size_t, len,
2493 (free->length - woffs));
2494 woffs = 0;
2495 } else {
2496 bytes = min_t(size_t, len, free->length);
2497 boffs = free->offset;
2498 }
2499 memcpy(chip->oob_poi + boffs, oob, bytes);
2500 oob += bytes;
2501 }
2502 return oob;
2503 }
2504 default:
2505 BUG();
2506 }
2507 return NULL;
2508}
2509
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002510#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
William Juulcfa460a2007-10-31 13:53:06 +01002511
2512/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002513 * nand_do_write_ops - [INTERN] NAND write with ECC
2514 * @mtd: MTD device structure
2515 * @to: offset to write to
2516 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01002517 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002518 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002519 */
2520static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2521 struct mtd_oob_ops *ops)
2522{
2523 int chipnr, realpage, page, blockmask, column;
2524 struct nand_chip *chip = mtd->priv;
2525 uint32_t writelen = ops->len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002526
2527 uint32_t oobwritelen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002528 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002529 mtd->oobavail : mtd->oobsize;
2530
William Juulcfa460a2007-10-31 13:53:06 +01002531 uint8_t *oob = ops->oobbuf;
2532 uint8_t *buf = ops->datbuf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002533 int ret;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002534 int oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01002535
2536 ops->retlen = 0;
2537 if (!writelen)
2538 return 0;
2539
Heiko Schocherff94bc42014-06-24 10:10:04 +02002540#ifndef __UBOOT__
2541 /* Reject writes, which are not page aligned */
2542 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
2543#else
2544 /* Reject writes, which are not page aligned */
2545 if (NOTALIGNED(to)) {
2546#endif
2547 pr_notice("%s: attempt to write non page aligned data\n",
2548 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002549 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002550 }
2551
2552 column = to & (mtd->writesize - 1);
William Juulcfa460a2007-10-31 13:53:06 +01002553
2554 chipnr = (int)(to >> chip->chip_shift);
2555 chip->select_chip(mtd, chipnr);
2556
2557 /* Check, if it is write protected */
2558 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002559 ret = -EIO;
2560 goto err_out;
William Juulcfa460a2007-10-31 13:53:06 +01002561 }
2562
2563 realpage = (int)(to >> chip->page_shift);
2564 page = realpage & chip->pagemask;
2565 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2566
2567 /* Invalidate the page cache, when we write to the cached page */
2568 if (to <= (chip->pagebuf << chip->page_shift) &&
2569 (chip->pagebuf << chip->page_shift) < (to + ops->len))
2570 chip->pagebuf = -1;
2571
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002572 /* Don't allow multipage oob writes with offset */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002573 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2574 ret = -EINVAL;
2575 goto err_out;
2576 }
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002577
Christian Hitz90e3f392011-10-12 09:32:01 +02002578 while (1) {
William Juulcfa460a2007-10-31 13:53:06 +01002579 int bytes = mtd->writesize;
2580 int cached = writelen > bytes && page != blockmask;
2581 uint8_t *wbuf = buf;
2582
Heiko Schocherff94bc42014-06-24 10:10:04 +02002583 WATCHDOG_RESET();
Sergey Lapindfe64e22013-01-14 03:46:50 +00002584 /* Partial page write? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002585 if (unlikely(column || writelen < (mtd->writesize - 1))) {
William Juulcfa460a2007-10-31 13:53:06 +01002586 cached = 0;
2587 bytes = min_t(int, bytes - column, (int) writelen);
2588 chip->pagebuf = -1;
2589 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2590 memcpy(&chip->buffers->databuf[column], buf, bytes);
2591 wbuf = chip->buffers->databuf;
2592 }
2593
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002594 if (unlikely(oob)) {
2595 size_t len = min(oobwritelen, oobmaxlen);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002596 oob = nand_fill_oob(mtd, oob, len, ops);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002597 oobwritelen -= len;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002598 } else {
2599 /* We still need to erase leftover OOB data */
2600 memset(chip->oob_poi, 0xff, mtd->oobsize);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002601 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02002602 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2603 oob_required, page, cached,
2604 (ops->mode == MTD_OPS_RAW));
William Juulcfa460a2007-10-31 13:53:06 +01002605 if (ret)
2606 break;
2607
2608 writelen -= bytes;
2609 if (!writelen)
2610 break;
2611
2612 column = 0;
2613 buf += bytes;
2614 realpage++;
2615
2616 page = realpage & chip->pagemask;
2617 /* Check, if we cross a chip boundary */
2618 if (!page) {
2619 chipnr++;
2620 chip->select_chip(mtd, -1);
2621 chip->select_chip(mtd, chipnr);
2622 }
2623 }
2624
2625 ops->retlen = ops->len - writelen;
2626 if (unlikely(oob))
2627 ops->oobretlen = ops->ooblen;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002628
2629err_out:
2630 chip->select_chip(mtd, -1);
2631 return ret;
2632}
2633
2634/**
2635 * panic_nand_write - [MTD Interface] NAND write with ECC
2636 * @mtd: MTD device structure
2637 * @to: offset to write to
2638 * @len: number of bytes to write
2639 * @retlen: pointer to variable to store the number of written bytes
2640 * @buf: the data to write
2641 *
2642 * NAND write with ECC. Used when performing writes in interrupt context, this
2643 * may for example be called by mtdoops when writing an oops while in panic.
2644 */
2645static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2646 size_t *retlen, const uint8_t *buf)
2647{
2648 struct nand_chip *chip = mtd->priv;
2649 struct mtd_oob_ops ops;
2650 int ret;
2651
2652 /* Wait for the device to get ready */
2653 panic_nand_wait(mtd, chip, 400);
2654
2655 /* Grab the device */
2656 panic_nand_get_device(chip, mtd, FL_WRITING);
2657
2658 ops.len = len;
2659 ops.datbuf = (uint8_t *)buf;
2660 ops.oobbuf = NULL;
2661 ops.mode = MTD_OPS_PLACE_OOB;
2662
2663 ret = nand_do_write_ops(mtd, to, &ops);
2664
2665 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002666 return ret;
2667}
2668
2669/**
2670 * nand_write - [MTD Interface] NAND write with ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00002671 * @mtd: MTD device structure
2672 * @to: offset to write to
2673 * @len: number of bytes to write
2674 * @retlen: pointer to variable to store the number of written bytes
2675 * @buf: the data to write
Wolfgang Denk932394a2005-08-17 12:55:25 +02002676 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002677 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002678 */
2679static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2680 size_t *retlen, const uint8_t *buf)
2681{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002682 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01002683 int ret;
2684
Heiko Schocherff94bc42014-06-24 10:10:04 +02002685 nand_get_device(mtd, FL_WRITING);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002686 ops.len = len;
2687 ops.datbuf = (uint8_t *)buf;
2688 ops.oobbuf = NULL;
2689 ops.mode = MTD_OPS_PLACE_OOB;
2690 ret = nand_do_write_ops(mtd, to, &ops);
2691 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002692 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01002693 return ret;
2694}
2695
2696/**
2697 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002698 * @mtd: MTD device structure
2699 * @to: offset to write to
2700 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002701 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002702 * NAND write out-of-band.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002703 */
William Juulcfa460a2007-10-31 13:53:06 +01002704static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2705 struct mtd_oob_ops *ops)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002706{
William Juulcfa460a2007-10-31 13:53:06 +01002707 int chipnr, page, status, len;
2708 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002709
Heiko Schocherff94bc42014-06-24 10:10:04 +02002710 pr_debug("%s: to = 0x%08x, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02002711 __func__, (unsigned int)to, (int)ops->ooblen);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002712
Sergey Lapindfe64e22013-01-14 03:46:50 +00002713 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01002714 len = chip->ecc.layout->oobavail;
2715 else
2716 len = mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002717
2718 /* Do not allow write past end of page */
William Juulcfa460a2007-10-31 13:53:06 +01002719 if ((ops->ooboffs + ops->ooblen) > len) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002720 pr_debug("%s: attempt to write past end of page\n",
2721 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002722 return -EINVAL;
2723 }
2724
William Juulcfa460a2007-10-31 13:53:06 +01002725 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002726 pr_debug("%s: attempt to start write outside oob\n",
2727 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002728 return -EINVAL;
2729 }
2730
Christian Hitz90e3f392011-10-12 09:32:01 +02002731 /* Do not allow write past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01002732 if (unlikely(to >= mtd->size ||
2733 ops->ooboffs + ops->ooblen >
2734 ((mtd->size >> chip->page_shift) -
2735 (to >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002736 pr_debug("%s: attempt to write beyond end of device\n",
2737 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002738 return -EINVAL;
2739 }
2740
William Juulcfa460a2007-10-31 13:53:06 +01002741 chipnr = (int)(to >> chip->chip_shift);
2742 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002743
William Juulcfa460a2007-10-31 13:53:06 +01002744 /* Shift to get page */
2745 page = (int)(to >> chip->page_shift);
2746
2747 /*
2748 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2749 * of my DiskOnChip 2000 test units) will clear the whole data page too
2750 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2751 * it in the doc2000 driver in August 1999. dwmw2.
2752 */
2753 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002754
2755 /* Check, if it is write protected */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002756 if (nand_check_wp(mtd)) {
2757 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002758 return -EROFS;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002759 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002760
Wolfgang Denk932394a2005-08-17 12:55:25 +02002761 /* Invalidate the page cache, if we write to the cached page */
William Juulcfa460a2007-10-31 13:53:06 +01002762 if (page == chip->pagebuf)
2763 chip->pagebuf = -1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002764
Sergey Lapindfe64e22013-01-14 03:46:50 +00002765 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
2766
2767 if (ops->mode == MTD_OPS_RAW)
2768 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2769 else
2770 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002771
Heiko Schocherff94bc42014-06-24 10:10:04 +02002772 chip->select_chip(mtd, -1);
2773
William Juulcfa460a2007-10-31 13:53:06 +01002774 if (status)
2775 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002776
William Juulcfa460a2007-10-31 13:53:06 +01002777 ops->oobretlen = ops->ooblen;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002778
William Juulcfa460a2007-10-31 13:53:06 +01002779 return 0;
2780}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002781
William Juulcfa460a2007-10-31 13:53:06 +01002782/**
2783 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002784 * @mtd: MTD device structure
2785 * @to: offset to write to
2786 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002787 */
2788static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2789 struct mtd_oob_ops *ops)
2790{
William Juulcfa460a2007-10-31 13:53:06 +01002791 int ret = -ENOTSUPP;
2792
2793 ops->retlen = 0;
2794
2795 /* Do not allow writes past end of device */
2796 if (ops->datbuf && (to + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002797 pr_debug("%s: attempt to write beyond end of device\n",
2798 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002799 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002800 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002801
Heiko Schocherff94bc42014-06-24 10:10:04 +02002802 nand_get_device(mtd, FL_WRITING);
William Juulcfa460a2007-10-31 13:53:06 +01002803
Christian Hitz90e3f392011-10-12 09:32:01 +02002804 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002805 case MTD_OPS_PLACE_OOB:
2806 case MTD_OPS_AUTO_OOB:
2807 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002808 break;
2809
2810 default:
2811 goto out;
2812 }
2813
2814 if (!ops->datbuf)
2815 ret = nand_do_write_oob(mtd, to, ops);
2816 else
2817 ret = nand_do_write_ops(mtd, to, ops);
2818
Christian Hitz90e3f392011-10-12 09:32:01 +02002819out:
William Juulcfa460a2007-10-31 13:53:06 +01002820 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002821 return ret;
2822}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002823
2824/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002825 * single_erase_cmd - [GENERIC] NAND standard block erase command function
2826 * @mtd: MTD device structure
2827 * @page: the page address of the block which will be erased
Wolfgang Denk932394a2005-08-17 12:55:25 +02002828 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002829 * Standard erase command for NAND chips.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002830 */
William Juulcfa460a2007-10-31 13:53:06 +01002831static void single_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002832{
William Juulcfa460a2007-10-31 13:53:06 +01002833 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002834 /* Send commands to erase a block */
William Juulcfa460a2007-10-31 13:53:06 +01002835 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2836 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002837}
2838
2839/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02002840 * nand_erase - [MTD Interface] erase block(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00002841 * @mtd: MTD device structure
2842 * @instr: erase instruction
Wolfgang Denk932394a2005-08-17 12:55:25 +02002843 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002844 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002845 */
William Juulcfa460a2007-10-31 13:53:06 +01002846static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002847{
William Juulcfa460a2007-10-31 13:53:06 +01002848 return nand_erase_nand(mtd, instr, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002849}
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002850
Wolfgang Denk932394a2005-08-17 12:55:25 +02002851/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002852 * nand_erase_nand - [INTERN] erase block(s)
2853 * @mtd: MTD device structure
2854 * @instr: erase instruction
2855 * @allowbbt: allow erasing the bbt area
Wolfgang Denk932394a2005-08-17 12:55:25 +02002856 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002857 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002858 */
William Juulcfa460a2007-10-31 13:53:06 +01002859int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2860 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002861{
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002862 int page, status, pages_per_block, ret, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002863 struct nand_chip *chip = mtd->priv;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002864 loff_t len;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002865
Heiko Schocherff94bc42014-06-24 10:10:04 +02002866 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2867 __func__, (unsigned long long)instr->addr,
2868 (unsigned long long)instr->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002869
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002870 if (check_offs_len(mtd, instr->addr, instr->len))
Wolfgang Denk932394a2005-08-17 12:55:25 +02002871 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002872
Wolfgang Denk932394a2005-08-17 12:55:25 +02002873 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002874 nand_get_device(mtd, FL_ERASING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002875
2876 /* Shift to get first page */
William Juulcfa460a2007-10-31 13:53:06 +01002877 page = (int)(instr->addr >> chip->page_shift);
2878 chipnr = (int)(instr->addr >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002879
2880 /* Calculate pages in each block */
William Juulcfa460a2007-10-31 13:53:06 +01002881 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
William Juul4cbb6512007-11-08 10:39:53 +01002882
Wolfgang Denk932394a2005-08-17 12:55:25 +02002883 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +01002884 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002885
Wolfgang Denk932394a2005-08-17 12:55:25 +02002886 /* Check, if it is write protected */
2887 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002888 pr_debug("%s: device is write protected!\n",
2889 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002890 instr->state = MTD_ERASE_FAILED;
2891 goto erase_exit;
2892 }
2893
2894 /* Loop through the pages */
2895 len = instr->len;
2896
2897 instr->state = MTD_ERASING;
2898
2899 while (len) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002900 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02002901
Sergey Lapindfe64e22013-01-14 03:46:50 +00002902 /* Check if we have a bad block, we do not erase bad blocks! */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002903 if (nand_block_checkbad(mtd, ((loff_t) page) <<
William Juulcfa460a2007-10-31 13:53:06 +01002904 chip->page_shift, 0, allowbbt)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002905 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02002906 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002907 instr->state = MTD_ERASE_FAILED;
2908 goto erase_exit;
2909 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002910
William Juulcfa460a2007-10-31 13:53:06 +01002911 /*
2912 * Invalidate the page cache, if we erase the block which
Sergey Lapindfe64e22013-01-14 03:46:50 +00002913 * contains the current cached page.
William Juulcfa460a2007-10-31 13:53:06 +01002914 */
2915 if (page <= chip->pagebuf && chip->pagebuf <
2916 (page + pages_per_block))
2917 chip->pagebuf = -1;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002918
William Juulcfa460a2007-10-31 13:53:06 +01002919 chip->erase_cmd(mtd, page & chip->pagemask);
2920
2921 status = chip->waitfunc(mtd, chip);
2922
2923 /*
2924 * See if operation failed and additional status checks are
2925 * available
2926 */
2927 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2928 status = chip->errstat(mtd, chip, FL_ERASING,
2929 status, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002930
2931 /* See if block erase succeeded */
William Juulcfa460a2007-10-31 13:53:06 +01002932 if (status & NAND_STATUS_FAIL) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002933 pr_debug("%s: failed erase, page 0x%08x\n",
2934 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002935 instr->state = MTD_ERASE_FAILED;
Christian Hitz90e3f392011-10-12 09:32:01 +02002936 instr->fail_addr =
2937 ((loff_t)page << chip->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002938 goto erase_exit;
2939 }
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02002940
Wolfgang Denk932394a2005-08-17 12:55:25 +02002941 /* Increment page address and decrement length */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002942 len -= (1ULL << chip->phys_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002943 page += pages_per_block;
2944
2945 /* Check, if we cross a chip boundary */
William Juulcfa460a2007-10-31 13:53:06 +01002946 if (len && !(page & chip->pagemask)) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02002947 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01002948 chip->select_chip(mtd, -1);
2949 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002950 }
2951 }
2952 instr->state = MTD_ERASE_DONE;
2953
Christian Hitz90e3f392011-10-12 09:32:01 +02002954erase_exit:
Wolfgang Denk932394a2005-08-17 12:55:25 +02002955
2956 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002957
2958 /* Deselect and wake up anyone waiting on the device */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002959 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002960 nand_release_device(mtd);
2961
Scott Woodc45912d2008-10-24 16:20:43 -05002962 /* Do call back function */
2963 if (!ret)
2964 mtd_erase_callback(instr);
2965
Wolfgang Denk932394a2005-08-17 12:55:25 +02002966 /* Return more or less happy */
2967 return ret;
2968}
2969
2970/**
2971 * nand_sync - [MTD Interface] sync
Sergey Lapindfe64e22013-01-14 03:46:50 +00002972 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02002973 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002974 * Sync is actually a wait for chip ready function.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002975 */
William Juulcfa460a2007-10-31 13:53:06 +01002976static void nand_sync(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002977{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002978 pr_debug("%s: called\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002979
2980 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002981 nand_get_device(mtd, FL_SYNCING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002982 /* Release it and go back */
William Juulcfa460a2007-10-31 13:53:06 +01002983 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002984}
2985
Wolfgang Denk932394a2005-08-17 12:55:25 +02002986/**
William Juulcfa460a2007-10-31 13:53:06 +01002987 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00002988 * @mtd: MTD device structure
2989 * @offs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02002990 */
William Juulcfa460a2007-10-31 13:53:06 +01002991static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002992{
William Juulcfa460a2007-10-31 13:53:06 +01002993 return nand_block_checkbad(mtd, offs, 1, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002994}
2995
2996/**
William Juulcfa460a2007-10-31 13:53:06 +01002997 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00002998 * @mtd: MTD device structure
2999 * @ofs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02003000 */
William Juulcfa460a2007-10-31 13:53:06 +01003001static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02003002{
Wolfgang Denk932394a2005-08-17 12:55:25 +02003003 int ret;
3004
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003005 ret = nand_block_isbad(mtd, ofs);
3006 if (ret) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003007 /* If it was bad already, return success and do nothing */
Wolfgang Denk932394a2005-08-17 12:55:25 +02003008 if (ret > 0)
3009 return 0;
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02003010 return ret;
3011 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02003012
Heiko Schocherff94bc42014-06-24 10:10:04 +02003013 return nand_block_markbad_lowlevel(mtd, ofs);
Wolfgang Denk932394a2005-08-17 12:55:25 +02003014}
3015
Heiko Schocherff94bc42014-06-24 10:10:04 +02003016/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00003017 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3018 * @mtd: MTD device structure
3019 * @chip: nand chip info structure
3020 * @addr: feature address.
3021 * @subfeature_param: the subfeature parameters, a four bytes array.
William Juulcfa460a2007-10-31 13:53:06 +01003022 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00003023static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3024 int addr, uint8_t *subfeature_param)
3025{
3026 int status;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003027 int i;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003028
Heiko Schocherff94bc42014-06-24 10:10:04 +02003029#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
3030 if (!chip->onfi_version ||
3031 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3032 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00003033 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003034#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00003035
3036 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003037 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3038 chip->write_byte(mtd, subfeature_param[i]);
3039
Sergey Lapindfe64e22013-01-14 03:46:50 +00003040 status = chip->waitfunc(mtd, chip);
3041 if (status & NAND_STATUS_FAIL)
3042 return -EIO;
3043 return 0;
3044}
3045
3046/**
3047 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3048 * @mtd: MTD device structure
3049 * @chip: nand chip info structure
3050 * @addr: feature address.
3051 * @subfeature_param: the subfeature parameters, a four bytes array.
3052 */
3053static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3054 int addr, uint8_t *subfeature_param)
3055{
Heiko Schocherff94bc42014-06-24 10:10:04 +02003056 int i;
3057
3058#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
3059 if (!chip->onfi_version ||
3060 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3061 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00003062 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003063#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00003064
3065 /* clear the sub feature parameters */
3066 memset(subfeature_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
3067
3068 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003069 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3070 *subfeature_param++ = chip->read_byte(mtd);
Sergey Lapindfe64e22013-01-14 03:46:50 +00003071 return 0;
3072}
3073
Heiko Schocherff94bc42014-06-24 10:10:04 +02003074#ifndef __UBOOT__
3075/**
3076 * nand_suspend - [MTD Interface] Suspend the NAND flash
3077 * @mtd: MTD device structure
3078 */
3079static int nand_suspend(struct mtd_info *mtd)
3080{
3081 return nand_get_device(mtd, FL_PM_SUSPENDED);
3082}
3083
3084/**
3085 * nand_resume - [MTD Interface] Resume the NAND flash
3086 * @mtd: MTD device structure
3087 */
3088static void nand_resume(struct mtd_info *mtd)
3089{
3090 struct nand_chip *chip = mtd->priv;
3091
3092 if (chip->state == FL_PM_SUSPENDED)
3093 nand_release_device(mtd);
3094 else
3095 pr_err("%s called for a chip which is not in suspended state\n",
3096 __func__);
3097}
3098#endif
3099
Sergey Lapindfe64e22013-01-14 03:46:50 +00003100/* Set default functions */
William Juulcfa460a2007-10-31 13:53:06 +01003101static void nand_set_defaults(struct nand_chip *chip, int busw)
3102{
3103 /* check for proper chip_delay setup, set 20us if not */
3104 if (!chip->chip_delay)
3105 chip->chip_delay = 20;
3106
3107 /* check, if a user supplied command function given */
3108 if (chip->cmdfunc == NULL)
3109 chip->cmdfunc = nand_command;
3110
3111 /* check, if a user supplied wait function given */
3112 if (chip->waitfunc == NULL)
3113 chip->waitfunc = nand_wait;
3114
3115 if (!chip->select_chip)
3116 chip->select_chip = nand_select_chip;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003117
3118 /* set for ONFI nand */
3119 if (!chip->onfi_set_features)
3120 chip->onfi_set_features = nand_onfi_set_features;
3121 if (!chip->onfi_get_features)
3122 chip->onfi_get_features = nand_onfi_get_features;
3123
3124 /* If called twice, pointers that depend on busw may need to be reset */
3125 if (!chip->read_byte || chip->read_byte == nand_read_byte)
William Juulcfa460a2007-10-31 13:53:06 +01003126 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3127 if (!chip->read_word)
3128 chip->read_word = nand_read_word;
3129 if (!chip->block_bad)
3130 chip->block_bad = nand_block_bad;
3131 if (!chip->block_markbad)
3132 chip->block_markbad = nand_default_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003133 if (!chip->write_buf || chip->write_buf == nand_write_buf)
William Juulcfa460a2007-10-31 13:53:06 +01003134 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003135 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3136 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
3137 if (!chip->read_buf || chip->read_buf == nand_read_buf)
William Juulcfa460a2007-10-31 13:53:06 +01003138 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
William Juulcfa460a2007-10-31 13:53:06 +01003139 if (!chip->scan_bbt)
3140 chip->scan_bbt = nand_default_bbt;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003141#ifdef __UBOOT__
3142#if defined(CONFIG_MTD_NAND_VERIFY_WRITE)
3143 if (!chip->verify_buf)
3144 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
3145#endif
3146#endif
3147
3148 if (!chip->controller) {
William Juulcfa460a2007-10-31 13:53:06 +01003149 chip->controller = &chip->hwcontrol;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003150 spin_lock_init(&chip->controller->lock);
3151 init_waitqueue_head(&chip->controller->wq);
3152 }
3153
William Juulcfa460a2007-10-31 13:53:06 +01003154}
3155
Sergey Lapindfe64e22013-01-14 03:46:50 +00003156/* Sanitize ONFI strings so we can safely print them */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003157#ifndef __UBOOT__
3158static void sanitize_string(uint8_t *s, size_t len)
3159#else
Christian Hitz5454ddb2011-10-12 09:32:05 +02003160static void sanitize_string(char *s, size_t len)
Heiko Schocherff94bc42014-06-24 10:10:04 +02003161#endif
Christian Hitz5454ddb2011-10-12 09:32:05 +02003162{
3163 ssize_t i;
3164
Sergey Lapindfe64e22013-01-14 03:46:50 +00003165 /* Null terminate */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003166 s[len - 1] = 0;
3167
Sergey Lapindfe64e22013-01-14 03:46:50 +00003168 /* Remove non printable chars */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003169 for (i = 0; i < len - 1; i++) {
3170 if (s[i] < ' ' || s[i] > 127)
3171 s[i] = '?';
3172 }
3173
Sergey Lapindfe64e22013-01-14 03:46:50 +00003174 /* Remove trailing spaces */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003175 strim(s);
3176}
3177
Florian Fainelli0272c712011-02-25 00:01:34 +00003178static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
William Juulcfa460a2007-10-31 13:53:06 +01003179{
Florian Fainelli0272c712011-02-25 00:01:34 +00003180 int i;
Florian Fainelli0272c712011-02-25 00:01:34 +00003181 while (len--) {
3182 crc ^= *p++ << 8;
3183 for (i = 0; i < 8; i++)
3184 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
Scott Woodc45912d2008-10-24 16:20:43 -05003185 }
3186
Florian Fainelli0272c712011-02-25 00:01:34 +00003187 return crc;
3188}
William Juulcfa460a2007-10-31 13:53:06 +01003189
Heiko Schocher4e67c572014-07-15 16:08:43 +02003190#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocherff94bc42014-06-24 10:10:04 +02003191/* Parse the Extended Parameter Page. */
3192static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3193 struct nand_chip *chip, struct nand_onfi_params *p)
3194{
3195 struct onfi_ext_param_page *ep;
3196 struct onfi_ext_section *s;
3197 struct onfi_ext_ecc_info *ecc;
3198 uint8_t *cursor;
3199 int ret = -EINVAL;
3200 int len;
3201 int i;
3202
3203 len = le16_to_cpu(p->ext_param_page_length) * 16;
3204 ep = kmalloc(len, GFP_KERNEL);
3205 if (!ep)
3206 return -ENOMEM;
3207
3208 /* Send our own NAND_CMD_PARAM. */
3209 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3210
3211 /* Use the Change Read Column command to skip the ONFI param pages. */
3212 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3213 sizeof(*p) * p->num_of_param_pages , -1);
3214
3215 /* Read out the Extended Parameter Page. */
3216 chip->read_buf(mtd, (uint8_t *)ep, len);
3217 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3218 != le16_to_cpu(ep->crc))) {
3219 pr_debug("fail in the CRC.\n");
3220 goto ext_out;
3221 }
3222
3223 /*
3224 * Check the signature.
3225 * Do not strictly follow the ONFI spec, maybe changed in future.
3226 */
3227#ifndef __UBOOT__
3228 if (strncmp(ep->sig, "EPPS", 4)) {
3229#else
3230 if (strncmp((char *)ep->sig, "EPPS", 4)) {
3231#endif
3232 pr_debug("The signature is invalid.\n");
3233 goto ext_out;
3234 }
3235
3236 /* find the ECC section. */
3237 cursor = (uint8_t *)(ep + 1);
3238 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3239 s = ep->sections + i;
3240 if (s->type == ONFI_SECTION_TYPE_2)
3241 break;
3242 cursor += s->length * 16;
3243 }
3244 if (i == ONFI_EXT_SECTION_MAX) {
3245 pr_debug("We can not find the ECC section.\n");
3246 goto ext_out;
3247 }
3248
3249 /* get the info we want. */
3250 ecc = (struct onfi_ext_ecc_info *)cursor;
3251
3252 if (!ecc->codeword_size) {
3253 pr_debug("Invalid codeword size\n");
3254 goto ext_out;
3255 }
3256
3257 chip->ecc_strength_ds = ecc->ecc_bits;
3258 chip->ecc_step_ds = 1 << ecc->codeword_size;
3259 ret = 0;
3260
3261ext_out:
3262 kfree(ep);
3263 return ret;
3264}
3265
3266static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3267{
3268 struct nand_chip *chip = mtd->priv;
3269 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3270
3271 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3272 feature);
3273}
3274
3275/*
3276 * Configure chip properties from Micron vendor-specific ONFI table
3277 */
3278static void nand_onfi_detect_micron(struct nand_chip *chip,
3279 struct nand_onfi_params *p)
3280{
3281 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3282
3283 if (le16_to_cpu(p->vendor_revision) < 1)
3284 return;
3285
3286 chip->read_retries = micron->read_retry_options;
3287 chip->setup_read_retry = nand_setup_read_retry_micron;
3288}
3289
Florian Fainelli0272c712011-02-25 00:01:34 +00003290/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003291 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli0272c712011-02-25 00:01:34 +00003292 */
Christian Hitz90e3f392011-10-12 09:32:01 +02003293static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003294 int *busw)
3295{
3296 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisb9ae6092014-05-06 00:46:16 +05303297 int i, j;
Florian Fainelli0272c712011-02-25 00:01:34 +00003298 int val;
3299
Sergey Lapindfe64e22013-01-14 03:46:50 +00003300 /* Try ONFI for unknown chip or LP */
Florian Fainelli0272c712011-02-25 00:01:34 +00003301 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3302 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3303 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3304 return 0;
3305
Florian Fainelli0272c712011-02-25 00:01:34 +00003306 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3307 for (i = 0; i < 3; i++) {
Brian Norrisb9ae6092014-05-06 00:46:16 +05303308 for (j = 0; j < sizeof(*p); j++)
3309 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00003310 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
Christian Hitz90e3f392011-10-12 09:32:01 +02003311 le16_to_cpu(p->crc)) {
Wolfgang Denkd1a24f02011-02-02 22:36:10 +01003312 break;
Florian Fainelli0272c712011-02-25 00:01:34 +00003313 }
Florian Fainelli3e9b3492010-06-12 20:59:25 +02003314 }
William Juulcfa460a2007-10-31 13:53:06 +01003315
Heiko Schocherff94bc42014-06-24 10:10:04 +02003316 if (i == 3) {
3317 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli0272c712011-02-25 00:01:34 +00003318 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003319 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003320
Sergey Lapindfe64e22013-01-14 03:46:50 +00003321 /* Check version */
Florian Fainelli0272c712011-02-25 00:01:34 +00003322 val = le16_to_cpu(p->revision);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003323 if (val & (1 << 5))
3324 chip->onfi_version = 23;
3325 else if (val & (1 << 4))
Florian Fainelli0272c712011-02-25 00:01:34 +00003326 chip->onfi_version = 22;
3327 else if (val & (1 << 3))
3328 chip->onfi_version = 21;
3329 else if (val & (1 << 2))
3330 chip->onfi_version = 20;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003331 else if (val & (1 << 1))
Florian Fainelli0272c712011-02-25 00:01:34 +00003332 chip->onfi_version = 10;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003333
3334 if (!chip->onfi_version) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003335 pr_info("unsupported ONFI version: %d\n", val);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003336 return 0;
3337 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003338
Christian Hitz5454ddb2011-10-12 09:32:05 +02003339 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3340 sanitize_string(p->model, sizeof(p->model));
William Juulcfa460a2007-10-31 13:53:06 +01003341 if (!mtd->name)
Florian Fainelli0272c712011-02-25 00:01:34 +00003342 mtd->name = p->model;
William Juulcfa460a2007-10-31 13:53:06 +01003343
Heiko Schocherff94bc42014-06-24 10:10:04 +02003344 mtd->writesize = le32_to_cpu(p->byte_per_page);
3345
3346 /*
3347 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3348 * (don't ask me who thought of this...). MTD assumes that these
3349 * dimensions will be power-of-2, so just truncate the remaining area.
3350 */
3351 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3352 mtd->erasesize *= mtd->writesize;
3353
3354 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3355
3356 /* See erasesize comment */
3357 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3358 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3359 chip->bits_per_cell = p->bits_per_cell;
3360
3361 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
3362 *busw = NAND_BUSWIDTH_16;
3363 else
3364 *busw = 0;
3365
3366 if (p->ecc_bits != 0xff) {
3367 chip->ecc_strength_ds = p->ecc_bits;
3368 chip->ecc_step_ds = 512;
3369 } else if (chip->onfi_version >= 21 &&
3370 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3371
3372 /*
3373 * The nand_flash_detect_ext_param_page() uses the
3374 * Change Read Column command which maybe not supported
3375 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3376 * now. We do not replace user supplied command function.
3377 */
3378 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3379 chip->cmdfunc = nand_command_lp;
3380
3381 /* The Extended Parameter Page is supported since ONFI 2.1. */
3382 if (nand_flash_detect_ext_param_page(mtd, chip, p))
3383 pr_warn("Failed to detect ONFI extended param page\n");
3384 } else {
3385 pr_warn("Could not retrieve ONFI ECC requirements\n");
3386 }
3387
3388 if (p->jedec_id == NAND_MFR_MICRON)
3389 nand_onfi_detect_micron(chip, p);
3390
Florian Fainelli0272c712011-02-25 00:01:34 +00003391 return 1;
3392}
3393#else
Heiko Schocherff94bc42014-06-24 10:10:04 +02003394static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003395 int *busw)
3396{
3397 return 0;
3398}
3399#endif
3400
Florian Fainelli0272c712011-02-25 00:01:34 +00003401/*
Heiko Schocher4e67c572014-07-15 16:08:43 +02003402 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3403 */
3404static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3405 int *busw)
3406{
3407 struct nand_jedec_params *p = &chip->jedec_params;
3408 struct jedec_ecc_info *ecc;
3409 int val;
3410 int i, j;
3411
3412 /* Try JEDEC for unknown chip or LP */
3413 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3414 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3415 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3416 chip->read_byte(mtd) != 'C')
3417 return 0;
3418
3419 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3420 for (i = 0; i < 3; i++) {
3421 for (j = 0; j < sizeof(*p); j++)
3422 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3423
3424 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3425 le16_to_cpu(p->crc))
3426 break;
3427 }
3428
3429 if (i == 3) {
3430 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3431 return 0;
3432 }
3433
3434 /* Check version */
3435 val = le16_to_cpu(p->revision);
3436 if (val & (1 << 2))
3437 chip->jedec_version = 10;
3438 else if (val & (1 << 1))
3439 chip->jedec_version = 1; /* vendor specific version */
3440
3441 if (!chip->jedec_version) {
3442 pr_info("unsupported JEDEC version: %d\n", val);
3443 return 0;
3444 }
3445
3446 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3447 sanitize_string(p->model, sizeof(p->model));
3448 if (!mtd->name)
3449 mtd->name = p->model;
3450
3451 mtd->writesize = le32_to_cpu(p->byte_per_page);
3452
3453 /* Please reference to the comment for nand_flash_detect_onfi. */
3454 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3455 mtd->erasesize *= mtd->writesize;
3456
3457 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3458
3459 /* Please reference to the comment for nand_flash_detect_onfi. */
3460 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3461 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3462 chip->bits_per_cell = p->bits_per_cell;
3463
3464 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3465 *busw = NAND_BUSWIDTH_16;
3466 else
3467 *busw = 0;
3468
3469 /* ECC info */
3470 ecc = &p->ecc_info[0];
3471
3472 if (ecc->codeword_size >= 9) {
3473 chip->ecc_strength_ds = ecc->ecc_bits;
3474 chip->ecc_step_ds = 1 << ecc->codeword_size;
3475 } else {
3476 pr_warn("Invalid codeword size\n");
3477 }
3478
3479 return 1;
3480}
3481
3482/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003483 * nand_id_has_period - Check if an ID string has a given wraparound period
3484 * @id_data: the ID string
3485 * @arrlen: the length of the @id_data array
3486 * @period: the period of repitition
3487 *
3488 * Check if an ID string is repeated within a given sequence of bytes at
3489 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Heiko Schocherff94bc42014-06-24 10:10:04 +02003490 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Sergey Lapindfe64e22013-01-14 03:46:50 +00003491 * if the repetition has a period of @period; otherwise, returns zero.
3492 */
3493static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3494{
3495 int i, j;
3496 for (i = 0; i < period; i++)
3497 for (j = i + period; j < arrlen; j += period)
3498 if (id_data[i] != id_data[j])
3499 return 0;
3500 return 1;
3501}
3502
3503/*
3504 * nand_id_len - Get the length of an ID string returned by CMD_READID
3505 * @id_data: the ID string
3506 * @arrlen: the length of the @id_data array
3507
3508 * Returns the length of the ID string, according to known wraparound/trailing
3509 * zero patterns. If no pattern exists, returns the length of the array.
3510 */
3511static int nand_id_len(u8 *id_data, int arrlen)
3512{
3513 int last_nonzero, period;
3514
3515 /* Find last non-zero byte */
3516 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3517 if (id_data[last_nonzero])
3518 break;
3519
3520 /* All zeros */
3521 if (last_nonzero < 0)
3522 return 0;
3523
3524 /* Calculate wraparound period */
3525 for (period = 1; period < arrlen; period++)
3526 if (nand_id_has_period(id_data, arrlen, period))
3527 break;
3528
3529 /* There's a repeated pattern */
3530 if (period < arrlen)
3531 return period;
3532
3533 /* There are trailing zeros */
3534 if (last_nonzero < arrlen - 1)
3535 return last_nonzero + 1;
3536
3537 /* No pattern detected */
3538 return arrlen;
3539}
3540
Heiko Schocherff94bc42014-06-24 10:10:04 +02003541/* Extract the bits of per cell from the 3rd byte of the extended ID */
3542static int nand_get_bits_per_cell(u8 cellinfo)
3543{
3544 int bits;
3545
3546 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3547 bits >>= NAND_CI_CELLTYPE_SHIFT;
3548 return bits + 1;
3549}
3550
Sergey Lapindfe64e22013-01-14 03:46:50 +00003551/*
3552 * Many new NAND share similar device ID codes, which represent the size of the
3553 * chip. The rest of the parameters must be decoded according to generic or
3554 * manufacturer-specific "extended ID" decoding patterns.
3555 */
3556static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3557 u8 id_data[8], int *busw)
3558{
3559 int extid, id_len;
3560 /* The 3rd id byte holds MLC / multichip data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003561 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Sergey Lapindfe64e22013-01-14 03:46:50 +00003562 /* The 4th id byte is the important one */
3563 extid = id_data[3];
3564
3565 id_len = nand_id_len(id_data, 8);
3566
3567 /*
3568 * Field definitions are in the following datasheets:
3569 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
3570 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
3571 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
3572 *
3573 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3574 * ID to decide what to do.
3575 */
3576 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003577 !nand_is_slc(chip) && id_data[5] != 0x00) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003578 /* Calc pagesize */
3579 mtd->writesize = 2048 << (extid & 0x03);
3580 extid >>= 2;
3581 /* Calc oobsize */
3582 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3583 case 1:
3584 mtd->oobsize = 128;
3585 break;
3586 case 2:
3587 mtd->oobsize = 218;
3588 break;
3589 case 3:
3590 mtd->oobsize = 400;
3591 break;
3592 case 4:
3593 mtd->oobsize = 436;
3594 break;
3595 case 5:
3596 mtd->oobsize = 512;
3597 break;
3598 case 6:
Sergey Lapindfe64e22013-01-14 03:46:50 +00003599 mtd->oobsize = 640;
3600 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003601 case 7:
3602 default: /* Other cases are "reserved" (unknown) */
3603 mtd->oobsize = 1024;
3604 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003605 }
3606 extid >>= 2;
3607 /* Calc blocksize */
3608 mtd->erasesize = (128 * 1024) <<
3609 (((extid >> 1) & 0x04) | (extid & 0x03));
3610 *busw = 0;
3611 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003612 !nand_is_slc(chip)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003613 unsigned int tmp;
3614
3615 /* Calc pagesize */
3616 mtd->writesize = 2048 << (extid & 0x03);
3617 extid >>= 2;
3618 /* Calc oobsize */
3619 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3620 case 0:
3621 mtd->oobsize = 128;
3622 break;
3623 case 1:
3624 mtd->oobsize = 224;
3625 break;
3626 case 2:
3627 mtd->oobsize = 448;
3628 break;
3629 case 3:
3630 mtd->oobsize = 64;
3631 break;
3632 case 4:
3633 mtd->oobsize = 32;
3634 break;
3635 case 5:
3636 mtd->oobsize = 16;
3637 break;
3638 default:
3639 mtd->oobsize = 640;
3640 break;
3641 }
3642 extid >>= 2;
3643 /* Calc blocksize */
3644 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3645 if (tmp < 0x03)
3646 mtd->erasesize = (128 * 1024) << tmp;
3647 else if (tmp == 0x03)
3648 mtd->erasesize = 768 * 1024;
3649 else
3650 mtd->erasesize = (64 * 1024) << tmp;
3651 *busw = 0;
3652 } else {
3653 /* Calc pagesize */
3654 mtd->writesize = 1024 << (extid & 0x03);
3655 extid >>= 2;
3656 /* Calc oobsize */
3657 mtd->oobsize = (8 << (extid & 0x01)) *
3658 (mtd->writesize >> 9);
3659 extid >>= 2;
3660 /* Calc blocksize. Blocksize is multiples of 64KiB */
3661 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3662 extid >>= 2;
3663 /* Get buswidth information */
3664 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003665
3666 /*
3667 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3668 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3669 * follows:
3670 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3671 * 110b -> 24nm
3672 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3673 */
3674 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
3675 nand_is_slc(chip) &&
3676 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3677 !(id_data[4] & 0x80) /* !BENAND */) {
3678 mtd->oobsize = 32 * mtd->writesize >> 9;
3679 }
3680
Sergey Lapindfe64e22013-01-14 03:46:50 +00003681 }
3682}
3683
Heiko Schocherff94bc42014-06-24 10:10:04 +02003684/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003685 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3686 * decodes a matching ID table entry and assigns the MTD size parameters for
3687 * the chip.
3688 */
3689static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003690 struct nand_flash_dev *type, u8 id_data[8],
Sergey Lapindfe64e22013-01-14 03:46:50 +00003691 int *busw)
3692{
3693 int maf_id = id_data[0];
3694
3695 mtd->erasesize = type->erasesize;
3696 mtd->writesize = type->pagesize;
3697 mtd->oobsize = mtd->writesize / 32;
3698 *busw = type->options & NAND_BUSWIDTH_16;
3699
Heiko Schocherff94bc42014-06-24 10:10:04 +02003700 /* All legacy ID NAND are small-page, SLC */
3701 chip->bits_per_cell = 1;
3702
Sergey Lapindfe64e22013-01-14 03:46:50 +00003703 /*
3704 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3705 * some Spansion chips have erasesize that conflicts with size
3706 * listed in nand_ids table.
3707 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3708 */
3709 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3710 && id_data[6] == 0x00 && id_data[7] == 0x00
3711 && mtd->writesize == 512) {
3712 mtd->erasesize = 128 * 1024;
3713 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3714 }
3715}
3716
Heiko Schocherff94bc42014-06-24 10:10:04 +02003717/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003718 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3719 * heuristic patterns using various detected parameters (e.g., manufacturer,
3720 * page size, cell-type information).
3721 */
3722static void nand_decode_bbm_options(struct mtd_info *mtd,
3723 struct nand_chip *chip, u8 id_data[8])
3724{
3725 int maf_id = id_data[0];
3726
3727 /* Set the bad block position */
3728 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3729 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3730 else
3731 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3732
3733 /*
3734 * Bad block marker is stored in the last page of each block on Samsung
3735 * and Hynix MLC devices; stored in first two pages of each block on
3736 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3737 * AMD/Spansion, and Macronix. All others scan only the first page.
3738 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003739 if (!nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003740 (maf_id == NAND_MFR_SAMSUNG ||
3741 maf_id == NAND_MFR_HYNIX))
3742 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003743 else if ((nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003744 (maf_id == NAND_MFR_SAMSUNG ||
3745 maf_id == NAND_MFR_HYNIX ||
3746 maf_id == NAND_MFR_TOSHIBA ||
3747 maf_id == NAND_MFR_AMD ||
3748 maf_id == NAND_MFR_MACRONIX)) ||
3749 (mtd->writesize == 2048 &&
3750 maf_id == NAND_MFR_MICRON))
3751 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3752}
3753
Heiko Schocherff94bc42014-06-24 10:10:04 +02003754static inline bool is_full_id_nand(struct nand_flash_dev *type)
3755{
3756 return type->id_len;
3757}
3758
3759static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3760 struct nand_flash_dev *type, u8 *id_data, int *busw)
3761{
3762#ifndef __UBOOT__
3763 if (!strncmp(type->id, id_data, type->id_len)) {
3764#else
3765 if (!strncmp((char *)type->id, (char *)id_data, type->id_len)) {
3766#endif
3767 mtd->writesize = type->pagesize;
3768 mtd->erasesize = type->erasesize;
3769 mtd->oobsize = type->oobsize;
3770
3771 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
3772 chip->chipsize = (uint64_t)type->chipsize << 20;
3773 chip->options |= type->options;
3774 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3775 chip->ecc_step_ds = NAND_ECC_STEP(type);
3776
3777 *busw = type->options & NAND_BUSWIDTH_16;
3778
3779 if (!mtd->name)
3780 mtd->name = type->name;
3781
3782 return true;
3783 }
3784 return false;
3785}
3786
Sergey Lapindfe64e22013-01-14 03:46:50 +00003787/*
3788 * Get the flash and manufacturer id and lookup if the type is supported.
Florian Fainelli0272c712011-02-25 00:01:34 +00003789 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003790static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Florian Fainelli0272c712011-02-25 00:01:34 +00003791 struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003792 int *maf_id, int *dev_id,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003793 struct nand_flash_dev *type)
Florian Fainelli0272c712011-02-25 00:01:34 +00003794{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003795 int busw;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003796 int i, maf_idx;
3797 u8 id_data[8];
Florian Fainelli0272c712011-02-25 00:01:34 +00003798
3799 /* Select the device */
3800 chip->select_chip(mtd, 0);
3801
3802 /*
3803 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Sergey Lapindfe64e22013-01-14 03:46:50 +00003804 * after power-up.
Florian Fainelli0272c712011-02-25 00:01:34 +00003805 */
3806 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3807
3808 /* Send the command for reading device ID */
3809 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3810
3811 /* Read manufacturer and device IDs */
3812 *maf_id = chip->read_byte(mtd);
3813 *dev_id = chip->read_byte(mtd);
3814
Sergey Lapindfe64e22013-01-14 03:46:50 +00003815 /*
3816 * Try again to make sure, as some systems the bus-hold or other
Florian Fainelli0272c712011-02-25 00:01:34 +00003817 * interface concerns can cause random data which looks like a
3818 * possibly credible NAND flash to appear. If the two results do
3819 * not match, ignore the device completely.
3820 */
3821
3822 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3823
Sergey Lapindfe64e22013-01-14 03:46:50 +00003824 /* Read entire ID string */
3825 for (i = 0; i < 8; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003826 id_data[i] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00003827
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003828 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003829 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003830 *maf_id, *dev_id, id_data[0], id_data[1]);
Florian Fainelli0272c712011-02-25 00:01:34 +00003831 return ERR_PTR(-ENODEV);
3832 }
3833
3834 if (!type)
3835 type = nand_flash_ids;
3836
Heiko Schocherff94bc42014-06-24 10:10:04 +02003837 for (; type->name != NULL; type++) {
3838 if (is_full_id_nand(type)) {
3839 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3840 goto ident_done;
3841 } else if (*dev_id == type->dev_id) {
3842 break;
3843 }
3844 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003845
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003846 chip->onfi_version = 0;
3847 if (!type->name || !type->pagesize) {
3848 /* Check is chip is ONFI compliant */
Sergey Lapindfe64e22013-01-14 03:46:50 +00003849 if (nand_flash_detect_onfi(mtd, chip, &busw))
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003850 goto ident_done;
Heiko Schocher4e67c572014-07-15 16:08:43 +02003851
3852 /* Check if the chip is JEDEC compliant */
3853 if (nand_flash_detect_jedec(mtd, chip, &busw))
3854 goto ident_done;
Florian Fainelli0272c712011-02-25 00:01:34 +00003855 }
3856
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003857 if (!type->name)
3858 return ERR_PTR(-ENODEV);
3859
Florian Fainelli0272c712011-02-25 00:01:34 +00003860 if (!mtd->name)
3861 mtd->name = type->name;
3862
3863 chip->chipsize = (uint64_t)type->chipsize << 20;
Florian Fainelli0272c712011-02-25 00:01:34 +00003864
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003865 if (!type->pagesize && chip->init_size) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003866 /* Set the pagesize, oobsize, erasesize by the driver */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003867 busw = chip->init_size(mtd, chip, id_data);
3868 } else if (!type->pagesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003869 /* Decode parameters from extended ID */
3870 nand_decode_ext_id(mtd, chip, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003871 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003872 nand_decode_id(mtd, chip, type, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003873 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003874 /* Get chip options */
Marek Vasut9c790a72012-08-30 13:39:38 +00003875 chip->options |= type->options;
Florian Fainelli0272c712011-02-25 00:01:34 +00003876
Sergey Lapindfe64e22013-01-14 03:46:50 +00003877 /*
3878 * Check if chip is not a Samsung device. Do not clear the
3879 * options for chips which do not have an extended id.
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003880 */
3881 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3882 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3883ident_done:
3884
William Juulcfa460a2007-10-31 13:53:06 +01003885 /* Try to identify manufacturer */
3886 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
3887 if (nand_manuf_ids[maf_idx].id == *maf_id)
3888 break;
3889 }
3890
Heiko Schocherff94bc42014-06-24 10:10:04 +02003891 if (chip->options & NAND_BUSWIDTH_AUTO) {
3892 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3893 chip->options |= busw;
3894 nand_set_defaults(chip, busw);
3895 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3896 /*
3897 * Check, if buswidth is correct. Hardware drivers should set
3898 * chip correct!
3899 */
3900 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3901 *maf_id, *dev_id);
3902 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3903 pr_warn("bus width %d instead %d bit\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003904 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3905 busw ? 16 : 8);
William Juulcfa460a2007-10-31 13:53:06 +01003906 return ERR_PTR(-EINVAL);
3907 }
3908
Sergey Lapindfe64e22013-01-14 03:46:50 +00003909 nand_decode_bbm_options(mtd, chip, id_data);
3910
William Juulcfa460a2007-10-31 13:53:06 +01003911 /* Calculate the address shift from the page size */
3912 chip->page_shift = ffs(mtd->writesize) - 1;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003913 /* Convert chipsize to number of pages per chip -1 */
William Juulcfa460a2007-10-31 13:53:06 +01003914 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
3915
3916 chip->bbt_erase_shift = chip->phys_erase_shift =
3917 ffs(mtd->erasesize) - 1;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04003918 if (chip->chipsize & 0xffffffff)
Sandeep Paulraj4f41e7e2009-11-07 14:24:06 -05003919 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003920 else {
3921 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3922 chip->chip_shift += 32 - 1;
3923 }
3924
3925 chip->badblockbits = 8;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003926 chip->erase_cmd = single_erase_cmd;
William Juulcfa460a2007-10-31 13:53:06 +01003927
Sergey Lapindfe64e22013-01-14 03:46:50 +00003928 /* Do not replace user supplied command function! */
William Juulcfa460a2007-10-31 13:53:06 +01003929 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3930 chip->cmdfunc = nand_command_lp;
3931
Heiko Schocherff94bc42014-06-24 10:10:04 +02003932 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3933 *maf_id, *dev_id);
Heiko Schocher4e67c572014-07-15 16:08:43 +02003934
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003935#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocher4e67c572014-07-15 16:08:43 +02003936 if (chip->onfi_version)
3937 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3938 chip->onfi_params.model);
3939 else if (chip->jedec_version)
3940 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3941 chip->jedec_params.model);
3942 else
3943 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3944 type->name);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003945#else
Heiko Schocher4e67c572014-07-15 16:08:43 +02003946 if (chip->jedec_version)
3947 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3948 chip->jedec_params.model);
3949 else
3950 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3951 type->name);
3952
3953 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3954 type->name);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003955#endif
Heiko Schocher4e67c572014-07-15 16:08:43 +02003956
Heiko Schocherff94bc42014-06-24 10:10:04 +02003957 pr_info("%dMiB, %s, page size: %d, OOB size: %d\n",
3958 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003959 mtd->writesize, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01003960 return type;
3961}
3962
3963/**
3964 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00003965 * @mtd: MTD device structure
3966 * @maxchips: number of chips to scan for
3967 * @table: alternative NAND ID table
William Juulcfa460a2007-10-31 13:53:06 +01003968 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00003969 * This is the first phase of the normal nand_scan() function. It reads the
3970 * flash ID and sets up MTD fields accordingly.
William Juulcfa460a2007-10-31 13:53:06 +01003971 *
3972 * The mtd->owner field must be set to the module of the caller.
3973 */
Lei Wen245eb902011-01-06 09:48:18 +08003974int nand_scan_ident(struct mtd_info *mtd, int maxchips,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003975 struct nand_flash_dev *table)
William Juulcfa460a2007-10-31 13:53:06 +01003976{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003977 int i, nand_maf_id, nand_dev_id;
William Juulcfa460a2007-10-31 13:53:06 +01003978 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003979 struct nand_flash_dev *type;
William Juulcfa460a2007-10-31 13:53:06 +01003980
William Juulcfa460a2007-10-31 13:53:06 +01003981 /* Set the default functions */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003982 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
William Juulcfa460a2007-10-31 13:53:06 +01003983
3984 /* Read the flash type */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003985 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
3986 &nand_dev_id, table);
William Juulcfa460a2007-10-31 13:53:06 +01003987
3988 if (IS_ERR(type)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003989 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3990 pr_warn("No NAND device found\n");
William Juulcfa460a2007-10-31 13:53:06 +01003991 chip->select_chip(mtd, -1);
3992 return PTR_ERR(type);
3993 }
3994
Heiko Schocherff94bc42014-06-24 10:10:04 +02003995 chip->select_chip(mtd, -1);
3996
William Juulcfa460a2007-10-31 13:53:06 +01003997 /* Check for a chip array */
3998 for (i = 1; i < maxchips; i++) {
3999 chip->select_chip(mtd, i);
Karl Beldan33efde52008-09-15 16:08:03 +02004000 /* See comment in nand_get_flash_type for reset */
4001 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004002 /* Send the command for reading device ID */
4003 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
4004 /* Read manufacturer and device IDs */
4005 if (nand_maf_id != chip->read_byte(mtd) ||
Heiko Schocherff94bc42014-06-24 10:10:04 +02004006 nand_dev_id != chip->read_byte(mtd)) {
4007 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004008 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004009 }
4010 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004011 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004012
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01004013#ifdef DEBUG
William Juulcfa460a2007-10-31 13:53:06 +01004014 if (i > 1)
Heiko Schocherff94bc42014-06-24 10:10:04 +02004015 pr_info("%d chips detected\n", i);
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01004016#endif
William Juulcfa460a2007-10-31 13:53:06 +01004017
4018 /* Store the number of chips and calc total size for mtd */
4019 chip->numchips = i;
4020 mtd->size = i * chip->chipsize;
4021
4022 return 0;
4023}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004024EXPORT_SYMBOL(nand_scan_ident);
William Juulcfa460a2007-10-31 13:53:06 +01004025
4026
4027/**
4028 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004029 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01004030 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00004031 * This is the second phase of the normal nand_scan() function. It fills out
4032 * all the uninitialized function pointers with the defaults and scans for a
4033 * bad block table if appropriate.
William Juulcfa460a2007-10-31 13:53:06 +01004034 */
4035int nand_scan_tail(struct mtd_info *mtd)
4036{
4037 int i;
4038 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004039 struct nand_ecc_ctrl *ecc = &chip->ecc;
Heiko Schocher4e67c572014-07-15 16:08:43 +02004040 struct nand_buffers *nbuf;
William Juulcfa460a2007-10-31 13:53:06 +01004041
Sergey Lapindfe64e22013-01-14 03:46:50 +00004042 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
4043 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4044 !(chip->bbt_options & NAND_BBT_USE_FLASH));
4045
Heiko Schocher4e67c572014-07-15 16:08:43 +02004046 if (!(chip->options & NAND_OWN_BUFFERS)) {
4047#ifndef __UBOOT__
4048 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4049 + mtd->oobsize * 3, GFP_KERNEL);
4050 if (!nbuf)
4051 return -ENOMEM;
4052 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4053 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4054 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4055#else
4056 nbuf = kzalloc(sizeof(struct nand_buffers), GFP_KERNEL);
4057#endif
4058
4059 chip->buffers = nbuf;
4060 } else {
4061 if (!chip->buffers)
4062 return -ENOMEM;
4063 }
William Juulcfa460a2007-10-31 13:53:06 +01004064
4065 /* Set the internal oob buffer location, just after the page data */
4066 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
4067
4068 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00004069 * If no default placement scheme is given, select an appropriate one.
William Juulcfa460a2007-10-31 13:53:06 +01004070 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004071 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
William Juulcfa460a2007-10-31 13:53:06 +01004072 switch (mtd->oobsize) {
4073 case 8:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004074 ecc->layout = &nand_oob_8;
William Juulcfa460a2007-10-31 13:53:06 +01004075 break;
4076 case 16:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004077 ecc->layout = &nand_oob_16;
William Juulcfa460a2007-10-31 13:53:06 +01004078 break;
4079 case 64:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004080 ecc->layout = &nand_oob_64;
William Juulcfa460a2007-10-31 13:53:06 +01004081 break;
4082 case 128:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004083 ecc->layout = &nand_oob_128;
William Juulcfa460a2007-10-31 13:53:06 +01004084 break;
4085 default:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004086 pr_warn("No oob scheme defined for oobsize %d\n",
4087 mtd->oobsize);
Heiko Schocherff94bc42014-06-24 10:10:04 +02004088 BUG();
William Juulcfa460a2007-10-31 13:53:06 +01004089 }
4090 }
4091
4092 if (!chip->write_page)
4093 chip->write_page = nand_write_page;
4094
4095 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00004096 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
William Juulcfa460a2007-10-31 13:53:06 +01004097 * selected and we have 256 byte pagesize fallback to software ECC
4098 */
William Juulcfa460a2007-10-31 13:53:06 +01004099
Heiko Schocherff94bc42014-06-24 10:10:04 +02004100 switch (ecc->mode) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004101 case NAND_ECC_HW_OOB_FIRST:
4102 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004103 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004104 pr_warn("No ECC functions supplied; "
4105 "hardware ECC not possible\n");
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004106 BUG();
4107 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004108 if (!ecc->read_page)
4109 ecc->read_page = nand_read_page_hwecc_oob_first;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004110
William Juulcfa460a2007-10-31 13:53:06 +01004111 case NAND_ECC_HW:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004112 /* Use standard hwecc read page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004113 if (!ecc->read_page)
4114 ecc->read_page = nand_read_page_hwecc;
4115 if (!ecc->write_page)
4116 ecc->write_page = nand_write_page_hwecc;
4117 if (!ecc->read_page_raw)
4118 ecc->read_page_raw = nand_read_page_raw;
4119 if (!ecc->write_page_raw)
4120 ecc->write_page_raw = nand_write_page_raw;
4121 if (!ecc->read_oob)
4122 ecc->read_oob = nand_read_oob_std;
4123 if (!ecc->write_oob)
4124 ecc->write_oob = nand_write_oob_std;
4125 if (!ecc->read_subpage)
4126 ecc->read_subpage = nand_read_subpage;
4127 if (!ecc->write_subpage)
4128 ecc->write_subpage = nand_write_subpage_hwecc;
William Juulcfa460a2007-10-31 13:53:06 +01004129
4130 case NAND_ECC_HW_SYNDROME:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004131 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4132 (!ecc->read_page ||
4133 ecc->read_page == nand_read_page_hwecc ||
4134 !ecc->write_page ||
4135 ecc->write_page == nand_write_page_hwecc)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004136 pr_warn("No ECC functions supplied; "
4137 "hardware ECC not possible\n");
William Juulcfa460a2007-10-31 13:53:06 +01004138 BUG();
4139 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00004140 /* Use standard syndrome read/write page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004141 if (!ecc->read_page)
4142 ecc->read_page = nand_read_page_syndrome;
4143 if (!ecc->write_page)
4144 ecc->write_page = nand_write_page_syndrome;
4145 if (!ecc->read_page_raw)
4146 ecc->read_page_raw = nand_read_page_raw_syndrome;
4147 if (!ecc->write_page_raw)
4148 ecc->write_page_raw = nand_write_page_raw_syndrome;
4149 if (!ecc->read_oob)
4150 ecc->read_oob = nand_read_oob_syndrome;
4151 if (!ecc->write_oob)
4152 ecc->write_oob = nand_write_oob_syndrome;
William Juulcfa460a2007-10-31 13:53:06 +01004153
Heiko Schocherff94bc42014-06-24 10:10:04 +02004154 if (mtd->writesize >= ecc->size) {
4155 if (!ecc->strength) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004156 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
4157 BUG();
4158 }
William Juulcfa460a2007-10-31 13:53:06 +01004159 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004160 }
4161 pr_warn("%d byte HW ECC not possible on "
4162 "%d byte page size, fallback to SW ECC\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02004163 ecc->size, mtd->writesize);
4164 ecc->mode = NAND_ECC_SOFT;
William Juulcfa460a2007-10-31 13:53:06 +01004165
4166 case NAND_ECC_SOFT:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004167 ecc->calculate = nand_calculate_ecc;
4168 ecc->correct = nand_correct_data;
4169 ecc->read_page = nand_read_page_swecc;
4170 ecc->read_subpage = nand_read_subpage;
4171 ecc->write_page = nand_write_page_swecc;
4172 ecc->read_page_raw = nand_read_page_raw;
4173 ecc->write_page_raw = nand_write_page_raw;
4174 ecc->read_oob = nand_read_oob_std;
4175 ecc->write_oob = nand_write_oob_std;
4176 if (!ecc->size)
4177 ecc->size = 256;
4178 ecc->bytes = 3;
4179 ecc->strength = 1;
William Juulcfa460a2007-10-31 13:53:06 +01004180 break;
4181
Christian Hitz4c6de852011-10-12 09:31:59 +02004182 case NAND_ECC_SOFT_BCH:
4183 if (!mtd_nand_has_bch()) {
Heiko Schocher4e67c572014-07-15 16:08:43 +02004184 pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02004185 BUG();
Christian Hitz4c6de852011-10-12 09:31:59 +02004186 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004187 ecc->calculate = nand_bch_calculate_ecc;
4188 ecc->correct = nand_bch_correct_data;
4189 ecc->read_page = nand_read_page_swecc;
4190 ecc->read_subpage = nand_read_subpage;
4191 ecc->write_page = nand_write_page_swecc;
4192 ecc->read_page_raw = nand_read_page_raw;
4193 ecc->write_page_raw = nand_write_page_raw;
4194 ecc->read_oob = nand_read_oob_std;
4195 ecc->write_oob = nand_write_oob_std;
Christian Hitz4c6de852011-10-12 09:31:59 +02004196 /*
4197 * Board driver should supply ecc.size and ecc.bytes values to
4198 * select how many bits are correctable; see nand_bch_init()
Sergey Lapindfe64e22013-01-14 03:46:50 +00004199 * for details. Otherwise, default to 4 bits for large page
4200 * devices.
Christian Hitz4c6de852011-10-12 09:31:59 +02004201 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004202 if (!ecc->size && (mtd->oobsize >= 64)) {
4203 ecc->size = 512;
4204 ecc->bytes = 7;
Christian Hitz4c6de852011-10-12 09:31:59 +02004205 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004206 ecc->priv = nand_bch_init(mtd, ecc->size, ecc->bytes,
4207 &ecc->layout);
4208 if (!ecc->priv) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004209 pr_warn("BCH ECC initialization failed!\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02004210 BUG();
4211 }
4212 ecc->strength = ecc->bytes * 8 / fls(8 * ecc->size);
Christian Hitz4c6de852011-10-12 09:31:59 +02004213 break;
4214
William Juulcfa460a2007-10-31 13:53:06 +01004215 case NAND_ECC_NONE:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004216 pr_warn("NAND_ECC_NONE selected by board driver. "
Heiko Schocherff94bc42014-06-24 10:10:04 +02004217 "This is not recommended!\n");
4218 ecc->read_page = nand_read_page_raw;
4219 ecc->write_page = nand_write_page_raw;
4220 ecc->read_oob = nand_read_oob_std;
4221 ecc->read_page_raw = nand_read_page_raw;
4222 ecc->write_page_raw = nand_write_page_raw;
4223 ecc->write_oob = nand_write_oob_std;
4224 ecc->size = mtd->writesize;
4225 ecc->bytes = 0;
4226 ecc->strength = 0;
William Juulcfa460a2007-10-31 13:53:06 +01004227 break;
4228
4229 default:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004230 pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode);
William Juulcfa460a2007-10-31 13:53:06 +01004231 BUG();
4232 }
4233
Sergey Lapindfe64e22013-01-14 03:46:50 +00004234 /* For many systems, the standard OOB write also works for raw */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004235 if (!ecc->read_oob_raw)
4236 ecc->read_oob_raw = ecc->read_oob;
4237 if (!ecc->write_oob_raw)
4238 ecc->write_oob_raw = ecc->write_oob;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004239
William Juulcfa460a2007-10-31 13:53:06 +01004240 /*
4241 * The number of bytes available for a client to place data into
Sergey Lapindfe64e22013-01-14 03:46:50 +00004242 * the out of band area.
William Juulcfa460a2007-10-31 13:53:06 +01004243 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004244 ecc->layout->oobavail = 0;
4245 for (i = 0; ecc->layout->oobfree[i].length
4246 && i < ARRAY_SIZE(ecc->layout->oobfree); i++)
4247 ecc->layout->oobavail += ecc->layout->oobfree[i].length;
4248 mtd->oobavail = ecc->layout->oobavail;
William Juulcfa460a2007-10-31 13:53:06 +01004249
4250 /*
4251 * Set the number of read / write steps for one page depending on ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00004252 * mode.
William Juulcfa460a2007-10-31 13:53:06 +01004253 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004254 ecc->steps = mtd->writesize / ecc->size;
4255 if (ecc->steps * ecc->size != mtd->writesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004256 pr_warn("Invalid ECC parameters\n");
William Juulcfa460a2007-10-31 13:53:06 +01004257 BUG();
4258 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004259 ecc->total = ecc->steps * ecc->bytes;
William Juulcfa460a2007-10-31 13:53:06 +01004260
Sergey Lapindfe64e22013-01-14 03:46:50 +00004261 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004262 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
4263 switch (ecc->steps) {
William Juulcfa460a2007-10-31 13:53:06 +01004264 case 2:
4265 mtd->subpage_sft = 1;
4266 break;
4267 case 4:
4268 case 8:
Sandeep Paulrajaad4a282009-11-07 14:24:34 -05004269 case 16:
William Juulcfa460a2007-10-31 13:53:06 +01004270 mtd->subpage_sft = 2;
4271 break;
4272 }
4273 }
4274 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4275
4276 /* Initialize state */
4277 chip->state = FL_READY;
4278
William Juulcfa460a2007-10-31 13:53:06 +01004279 /* Invalidate the pagebuffer reference */
4280 chip->pagebuf = -1;
4281
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00004282 /* Large page NAND with SOFT_ECC should support subpage reads */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004283 if ((ecc->mode == NAND_ECC_SOFT) && (chip->page_shift > 9))
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00004284 chip->options |= NAND_SUBPAGE_READ;
4285
William Juulcfa460a2007-10-31 13:53:06 +01004286 /* Fill in remaining MTD driver data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004287 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02004288 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4289 MTD_CAP_NANDFLASH;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004290 mtd->_erase = nand_erase;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004291#ifndef __UBOOT__
Sergey Lapindfe64e22013-01-14 03:46:50 +00004292 mtd->_point = NULL;
4293 mtd->_unpoint = NULL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004294#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00004295 mtd->_read = nand_read;
4296 mtd->_write = nand_write;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004297 mtd->_panic_write = panic_nand_write;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004298 mtd->_read_oob = nand_read_oob;
4299 mtd->_write_oob = nand_write_oob;
4300 mtd->_sync = nand_sync;
4301 mtd->_lock = NULL;
4302 mtd->_unlock = NULL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004303#ifndef __UBOOT__
4304 mtd->_suspend = nand_suspend;
4305 mtd->_resume = nand_resume;
4306#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00004307 mtd->_block_isbad = nand_block_isbad;
4308 mtd->_block_markbad = nand_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004309 mtd->writebufsize = mtd->writesize;
William Juulcfa460a2007-10-31 13:53:06 +01004310
Sergey Lapindfe64e22013-01-14 03:46:50 +00004311 /* propagate ecc info to mtd_info */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004312 mtd->ecclayout = ecc->layout;
4313 mtd->ecc_strength = ecc->strength;
4314 mtd->ecc_step_size = ecc->size;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004315 /*
4316 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4317 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4318 * properly set.
4319 */
4320 if (!mtd->bitflip_threshold)
4321 mtd->bitflip_threshold = mtd->ecc_strength;
William Juulcfa460a2007-10-31 13:53:06 +01004322
4323 /* Check, if we should skip the bad block table scan */
4324 if (chip->options & NAND_SKIP_BBTSCAN)
Heiko Schocherff94bc42014-06-24 10:10:04 +02004325 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01004326
Heiko Schocherff94bc42014-06-24 10:10:04 +02004327 /* Build bad block table */
4328 return chip->scan_bbt(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01004329}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004330EXPORT_SYMBOL(nand_scan_tail);
4331
4332/*
4333 * is_module_text_address() isn't exported, and it's mostly a pointless
4334 * test if this is a module _anyway_ -- they'd have to try _really_ hard
4335 * to call us from in-kernel code if the core NAND support is modular.
4336 */
4337#ifdef MODULE
4338#define caller_is_module() (1)
4339#else
4340#define caller_is_module() \
4341 is_module_text_address((unsigned long)__builtin_return_address(0))
4342#endif
William Juulcfa460a2007-10-31 13:53:06 +01004343
William Juulcfa460a2007-10-31 13:53:06 +01004344/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02004345 * nand_scan - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004346 * @mtd: MTD device structure
4347 * @maxchips: number of chips to scan for
Wolfgang Denk932394a2005-08-17 12:55:25 +02004348 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00004349 * This fills out all the uninitialized function pointers with the defaults.
4350 * The flash ID is read and the mtd/chip structures are filled with the
4351 * appropriate values. The mtd->owner field must be set to the module of the
4352 * caller.
Wolfgang Denk932394a2005-08-17 12:55:25 +02004353 */
William Juulcfa460a2007-10-31 13:53:06 +01004354int nand_scan(struct mtd_info *mtd, int maxchips)
Wolfgang Denk932394a2005-08-17 12:55:25 +02004355{
William Juulcfa460a2007-10-31 13:53:06 +01004356 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004357
Heiko Schocherff94bc42014-06-24 10:10:04 +02004358 /* Many callers got this wrong, so check for it for a while... */
4359 if (!mtd->owner && caller_is_module()) {
4360 pr_crit("%s called with NULL mtd->owner!\n", __func__);
4361 BUG();
4362 }
4363
Lei Wen245eb902011-01-06 09:48:18 +08004364 ret = nand_scan_ident(mtd, maxchips, NULL);
William Juulcfa460a2007-10-31 13:53:06 +01004365 if (!ret)
4366 ret = nand_scan_tail(mtd);
4367 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004368}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004369EXPORT_SYMBOL(nand_scan);
Wolfgang Denk932394a2005-08-17 12:55:25 +02004370
Heiko Schocherff94bc42014-06-24 10:10:04 +02004371#ifndef __UBOOT__
Wolfgang Denk932394a2005-08-17 12:55:25 +02004372/**
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02004373 * nand_release - [NAND Interface] Free resources held by the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004374 * @mtd: MTD device structure
4375 */
William Juulcfa460a2007-10-31 13:53:06 +01004376void nand_release(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02004377{
William Juulcfa460a2007-10-31 13:53:06 +01004378 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004379
Christian Hitz4c6de852011-10-12 09:31:59 +02004380 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
4381 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4382
Heiko Schocherff94bc42014-06-24 10:10:04 +02004383 mtd_device_unregister(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01004384
4385 /* Free bad block table memory */
4386 kfree(chip->bbt);
4387 if (!(chip->options & NAND_OWN_BUFFERS))
4388 kfree(chip->buffers);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02004389
4390 /* Free bad block descriptor memory */
4391 if (chip->badblock_pattern && chip->badblock_pattern->options
4392 & NAND_BBT_DYNAMICSTRUCT)
4393 kfree(chip->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02004394}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004395EXPORT_SYMBOL_GPL(nand_release);
4396
4397static int __init nand_base_init(void)
4398{
4399 led_trigger_register_simple("nand-disk", &nand_led_trigger);
4400 return 0;
4401}
4402
4403static void __exit nand_base_exit(void)
4404{
4405 led_trigger_unregister_simple(nand_led_trigger);
4406}
4407#endif
4408
4409module_init(nand_base_init);
4410module_exit(nand_base_exit);
4411
4412MODULE_LICENSE("GPL");
4413MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4414MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
4415MODULE_DESCRIPTION("Generic NAND flash driver code");