blob: d04c7ea0ae7c66afca1167cc5f9aac78cfa21197 [file] [log] [blame]
Wolfgang Denk932394a2005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand.c
3 *
4 * Overview:
5 * This is the generic MTD driver for NAND flash devices. It should be
6 * capable of working with almost all NAND chips currently available.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02007 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02008 * Additional technical information is available on
Scott Woodc45912d2008-10-24 16:20:43 -05009 * http://www.linux-mtd.infradead.org/doc/nand.html
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020010 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020011 * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
William Juulcfa460a2007-10-31 13:53:06 +010012 * 2002-2006 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk932394a2005-08-17 12:55:25 +020013 *
William Juulcfa460a2007-10-31 13:53:06 +010014 * Credits:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020015 * David Woodhouse for adding multichip support
16 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020017 * Aleph One Ltd. and Toby Churchill Ltd. for supporting the
18 * rework for 2K page size chips
19 *
William Juulcfa460a2007-10-31 13:53:06 +010020 * TODO:
Wolfgang Denk932394a2005-08-17 12:55:25 +020021 * Enable cached programming for 2k page size chips
22 * Check, if mtd->ecctype should be set to MTD_ECC_HW
Sergey Lapindfe64e22013-01-14 03:46:50 +000023 * if we have HW ECC support.
Scott Woodc45912d2008-10-24 16:20:43 -050024 * BBT table is not serialized, has to be fixed
Wolfgang Denk932394a2005-08-17 12:55:25 +020025 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020026 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License version 2 as
28 * published by the Free Software Foundation.
29 *
30 */
31
Heiko Schocherff94bc42014-06-24 10:10:04 +020032#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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-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 Denkac7eb8a2005-09-14 23:53:32 +0200636
Rostislav Lisovy35c204d2014-10-22 13:40:44 +0200637 if (!(chip->options & NAND_BBT_SCANNED)) {
638 chip->scan_bbt(mtd);
639 chip->options |= NAND_BBT_SCANNED;
640 }
641
William Juulcfa460a2007-10-31 13:53:06 +0100642 if (!chip->bbt)
643 return chip->block_bad(mtd, ofs, getchip);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200644
Wolfgang Denk932394a2005-08-17 12:55:25 +0200645 /* Return info from the table */
William Juulcfa460a2007-10-31 13:53:06 +0100646 return nand_isbad_bbt(mtd, ofs, allowbbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200647}
648
Heiko Schocherff94bc42014-06-24 10:10:04 +0200649#ifndef __UBOOT__
650/**
651 * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands.
652 * @mtd: MTD device structure
653 * @timeo: Timeout
654 *
655 * Helper function for nand_wait_ready used when needing to wait in interrupt
656 * context.
657 */
658static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo)
659{
660 struct nand_chip *chip = mtd->priv;
661 int i;
662
663 /* Wait for the device to get ready */
664 for (i = 0; i < timeo; i++) {
665 if (chip->dev_ready(mtd))
666 break;
667 touch_softlockup_watchdog();
668 mdelay(1);
669 }
670}
671#endif
672
Sergey Lapindfe64e22013-01-14 03:46:50 +0000673/* Wait for the ready pin, after a command. The timeout is caught later. */
William Juulcfa460a2007-10-31 13:53:06 +0100674void nand_wait_ready(struct mtd_info *mtd)
675{
676 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200677#ifndef __UBOOT__
678 unsigned long timeo = jiffies + msecs_to_jiffies(20);
679
680 /* 400ms timeout */
681 if (in_interrupt() || oops_in_progress)
682 return panic_nand_wait_ready(mtd, 400);
683
684 led_trigger_event(nand_led_trigger, LED_FULL);
685 /* Wait until command is processed or timeout occurs */
686 do {
687 if (chip->dev_ready(mtd))
688 break;
689 touch_softlockup_watchdog();
690 } while (time_before(jiffies, timeo));
691 led_trigger_event(nand_led_trigger, LED_OFF);
692#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200693 u32 timeo = (CONFIG_SYS_HZ * 20) / 1000;
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000694 u32 time_start;
Stefan Roese12072262008-01-05 16:43:25 +0100695
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000696 time_start = get_timer(0);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000697 /* Wait until command is processed or timeout occurs */
Reinhard Meyer7a8fc362010-11-18 03:14:26 +0000698 while (get_timer(time_start) < timeo) {
Stefan Roese12072262008-01-05 16:43:25 +0100699 if (chip->dev_ready)
700 if (chip->dev_ready(mtd))
701 break;
702 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200703#endif
William Juulcfa460a2007-10-31 13:53:06 +0100704}
Heiko Schocherff94bc42014-06-24 10:10:04 +0200705EXPORT_SYMBOL_GPL(nand_wait_ready);
William Juulcfa460a2007-10-31 13:53:06 +0100706
Wolfgang Denk932394a2005-08-17 12:55:25 +0200707/**
708 * nand_command - [DEFAULT] Send command to NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000709 * @mtd: MTD device structure
710 * @command: the command to be sent
711 * @column: the column address for this command, -1 if none
712 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200713 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000714 * Send command to NAND device. This function is used for small page devices
Heiko Schocherff94bc42014-06-24 10:10:04 +0200715 * (512 Bytes per page).
Wolfgang Denk932394a2005-08-17 12:55:25 +0200716 */
William Juulcfa460a2007-10-31 13:53:06 +0100717static void nand_command(struct mtd_info *mtd, unsigned int command,
718 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200719{
William Juulcfa460a2007-10-31 13:53:06 +0100720 register struct nand_chip *chip = mtd->priv;
721 int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE;
Peter Tyser8da60122009-02-04 13:47:22 -0600722 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200723
Sergey Lapindfe64e22013-01-14 03:46:50 +0000724 /* Write out the command to the device */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200725 if (command == NAND_CMD_SEQIN) {
726 int readcmd;
727
William Juulcfa460a2007-10-31 13:53:06 +0100728 if (column >= mtd->writesize) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200729 /* OOB area */
William Juulcfa460a2007-10-31 13:53:06 +0100730 column -= mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200731 readcmd = NAND_CMD_READOOB;
732 } else if (column < 256) {
733 /* First 256 bytes --> READ0 */
734 readcmd = NAND_CMD_READ0;
735 } else {
736 column -= 256;
737 readcmd = NAND_CMD_READ1;
738 }
William Juulcfa460a2007-10-31 13:53:06 +0100739 chip->cmd_ctrl(mtd, readcmd, ctrl);
740 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200741 }
William Juulcfa460a2007-10-31 13:53:06 +0100742 chip->cmd_ctrl(mtd, command, ctrl);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200743
Sergey Lapindfe64e22013-01-14 03:46:50 +0000744 /* Address cycle, when necessary */
William Juulcfa460a2007-10-31 13:53:06 +0100745 ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE;
746 /* Serially input address */
747 if (column != -1) {
748 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200749 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530750 !nand_opcode_8bits(command))
William Juulcfa460a2007-10-31 13:53:06 +0100751 column >>= 1;
752 chip->cmd_ctrl(mtd, column, ctrl);
753 ctrl &= ~NAND_CTRL_CHANGE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200754 }
William Juulcfa460a2007-10-31 13:53:06 +0100755 if (page_addr != -1) {
756 chip->cmd_ctrl(mtd, page_addr, ctrl);
757 ctrl &= ~NAND_CTRL_CHANGE;
758 chip->cmd_ctrl(mtd, page_addr >> 8, ctrl);
759 /* One more address cycle for devices > 32MiB */
760 if (chip->chipsize > (32 << 20))
761 chip->cmd_ctrl(mtd, page_addr >> 16, ctrl);
762 }
763 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200764
765 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000766 * Program and erase have their own busy handlers status and sequential
767 * in needs no delay
William Juulcfa460a2007-10-31 13:53:06 +0100768 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200769 switch (command) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200770
Wolfgang Denk932394a2005-08-17 12:55:25 +0200771 case NAND_CMD_PAGEPROG:
772 case NAND_CMD_ERASE1:
773 case NAND_CMD_ERASE2:
774 case NAND_CMD_SEQIN:
775 case NAND_CMD_STATUS:
776 return;
777
778 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100779 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200780 break;
William Juulcfa460a2007-10-31 13:53:06 +0100781 udelay(chip->chip_delay);
782 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
783 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
784 chip->cmd_ctrl(mtd,
785 NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600786 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
787 (rst_sts_cnt--));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200788 return;
789
William Juulcfa460a2007-10-31 13:53:06 +0100790 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200791 default:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200792 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200793 * If we don't have access to the busy pin, we apply the given
794 * command delay
William Juulcfa460a2007-10-31 13:53:06 +0100795 */
796 if (!chip->dev_ready) {
797 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200798 return;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200799 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200800 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000801 /*
802 * Apply this short delay always to ensure that we do wait tWB in
803 * any case on any machine.
804 */
William Juulcfa460a2007-10-31 13:53:06 +0100805 ndelay(100);
806
807 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200808}
809
810/**
811 * nand_command_lp - [DEFAULT] Send command to NAND large page device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000812 * @mtd: MTD device structure
813 * @command: the command to be sent
814 * @column: the column address for this command, -1 if none
815 * @page_addr: the page address for this command, -1 if none
Wolfgang Denk932394a2005-08-17 12:55:25 +0200816 *
William Juulcfa460a2007-10-31 13:53:06 +0100817 * Send command to NAND device. This is the version for the new large page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000818 * devices. We don't have the separate regions as we have in the small page
819 * devices. We must emulate NAND_CMD_READOOB to keep the code compatible.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200820 */
William Juulcfa460a2007-10-31 13:53:06 +0100821static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
822 int column, int page_addr)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200823{
William Juulcfa460a2007-10-31 13:53:06 +0100824 register struct nand_chip *chip = mtd->priv;
Peter Tyser8da60122009-02-04 13:47:22 -0600825 uint32_t rst_sts_cnt = CONFIG_SYS_NAND_RESET_CNT;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200826
827 /* Emulate NAND_CMD_READOOB */
828 if (command == NAND_CMD_READOOB) {
William Juulcfa460a2007-10-31 13:53:06 +0100829 column += mtd->writesize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200830 command = NAND_CMD_READ0;
831 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200832
William Juulcfa460a2007-10-31 13:53:06 +0100833 /* Command latch cycle */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200834 chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200835
836 if (column != -1 || page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100837 int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200838
839 /* Serially input address */
840 if (column != -1) {
841 /* Adjust columns for 16 bit buswidth */
Heiko Schocher4e67c572014-07-15 16:08:43 +0200842 if (chip->options & NAND_BUSWIDTH_16 &&
Brian Norris27ce9e42014-05-06 00:46:17 +0530843 !nand_opcode_8bits(command))
Wolfgang Denk932394a2005-08-17 12:55:25 +0200844 column >>= 1;
William Juulcfa460a2007-10-31 13:53:06 +0100845 chip->cmd_ctrl(mtd, column, ctrl);
846 ctrl &= ~NAND_CTRL_CHANGE;
847 chip->cmd_ctrl(mtd, column >> 8, ctrl);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200848 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200849 if (page_addr != -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100850 chip->cmd_ctrl(mtd, page_addr, ctrl);
851 chip->cmd_ctrl(mtd, page_addr >> 8,
852 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200853 /* One more address cycle for devices > 128MiB */
William Juulcfa460a2007-10-31 13:53:06 +0100854 if (chip->chipsize > (128 << 20))
855 chip->cmd_ctrl(mtd, page_addr >> 16,
856 NAND_NCE | NAND_ALE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200857 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200858 }
William Juulcfa460a2007-10-31 13:53:06 +0100859 chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200860
861 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000862 * Program and erase have their own busy handlers status, sequential
863 * in, and deplete1 need no delay.
William Juulcfa460a2007-10-31 13:53:06 +0100864 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200865 switch (command) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200866
Wolfgang Denk932394a2005-08-17 12:55:25 +0200867 case NAND_CMD_CACHEDPROG:
868 case NAND_CMD_PAGEPROG:
869 case NAND_CMD_ERASE1:
870 case NAND_CMD_ERASE2:
871 case NAND_CMD_SEQIN:
William Juulcfa460a2007-10-31 13:53:06 +0100872 case NAND_CMD_RNDIN:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200873 case NAND_CMD_STATUS:
William Juulcfa460a2007-10-31 13:53:06 +0100874 return;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200875
876 case NAND_CMD_RESET:
William Juulcfa460a2007-10-31 13:53:06 +0100877 if (chip->dev_ready)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200878 break;
William Juulcfa460a2007-10-31 13:53:06 +0100879 udelay(chip->chip_delay);
880 chip->cmd_ctrl(mtd, NAND_CMD_STATUS,
881 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
882 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
883 NAND_NCE | NAND_CTRL_CHANGE);
Peter Tyser8da60122009-02-04 13:47:22 -0600884 while (!(chip->read_byte(mtd) & NAND_STATUS_READY) &&
885 (rst_sts_cnt--));
William Juulcfa460a2007-10-31 13:53:06 +0100886 return;
887
888 case NAND_CMD_RNDOUT:
889 /* No ready / busy check necessary */
890 chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART,
891 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
892 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
893 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200894 return;
895
896 case NAND_CMD_READ0:
William Juulcfa460a2007-10-31 13:53:06 +0100897 chip->cmd_ctrl(mtd, NAND_CMD_READSTART,
898 NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE);
899 chip->cmd_ctrl(mtd, NAND_CMD_NONE,
900 NAND_NCE | NAND_CTRL_CHANGE);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200901
William Juulcfa460a2007-10-31 13:53:06 +0100902 /* This applies to read commands */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200903 default:
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200904 /*
Wolfgang Denk932394a2005-08-17 12:55:25 +0200905 * If we don't have access to the busy pin, we apply the given
Sergey Lapindfe64e22013-01-14 03:46:50 +0000906 * command delay.
William Juulcfa460a2007-10-31 13:53:06 +0100907 */
908 if (!chip->dev_ready) {
909 udelay(chip->chip_delay);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200910 return;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200911 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200912 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200913
Sergey Lapindfe64e22013-01-14 03:46:50 +0000914 /*
915 * Apply this short delay always to ensure that we do wait tWB in
916 * any case on any machine.
917 */
William Juulcfa460a2007-10-31 13:53:06 +0100918 ndelay(100);
919
920 nand_wait_ready(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200921}
922
923/**
Heiko Schocherff94bc42014-06-24 10:10:04 +0200924 * panic_nand_get_device - [GENERIC] Get chip for selected access
Sergey Lapindfe64e22013-01-14 03:46:50 +0000925 * @chip: the nand chip descriptor
926 * @mtd: MTD device structure
927 * @new_state: the state which is requested
Wolfgang Denk932394a2005-08-17 12:55:25 +0200928 *
Heiko Schocherff94bc42014-06-24 10:10:04 +0200929 * Used when in panic, no locks are taken.
930 */
931static void panic_nand_get_device(struct nand_chip *chip,
932 struct mtd_info *mtd, int new_state)
933{
934 /* Hardware controller shared among independent devices */
935 chip->controller->active = chip;
936 chip->state = new_state;
937}
938
939/**
940 * nand_get_device - [GENERIC] Get chip for selected access
941 * @mtd: MTD device structure
942 * @new_state: the state which is requested
943 *
Wolfgang Denk932394a2005-08-17 12:55:25 +0200944 * Get the device and lock it for exclusive access
945 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200946static int
Heiko Schocherff94bc42014-06-24 10:10:04 +0200947nand_get_device(struct mtd_info *mtd, int new_state)
William Juulcfa460a2007-10-31 13:53:06 +0100948{
Heiko Schocherff94bc42014-06-24 10:10:04 +0200949 struct nand_chip *chip = mtd->priv;
950#ifndef __UBOOT__
951 spinlock_t *lock = &chip->controller->lock;
952 wait_queue_head_t *wq = &chip->controller->wq;
953 DECLARE_WAITQUEUE(wait, current);
954retry:
955 spin_lock(lock);
956
957 /* Hardware controller shared among independent devices */
958 if (!chip->controller->active)
959 chip->controller->active = chip;
960
961 if (chip->controller->active == chip && chip->state == FL_READY) {
962 chip->state = new_state;
963 spin_unlock(lock);
964 return 0;
965 }
966 if (new_state == FL_PM_SUSPENDED) {
967 if (chip->controller->active->state == FL_PM_SUSPENDED) {
968 chip->state = FL_PM_SUSPENDED;
969 spin_unlock(lock);
970 return 0;
971 }
972 }
973 set_current_state(TASK_UNINTERRUPTIBLE);
974 add_wait_queue(wq, &wait);
975 spin_unlock(lock);
976 schedule();
977 remove_wait_queue(wq, &wait);
978 goto retry;
979#else
Christian Hitz2a8e0fc2011-10-12 09:32:02 +0200980 chip->state = new_state;
William Juulcfa460a2007-10-31 13:53:06 +0100981 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200982#endif
983}
984
985/**
986 * panic_nand_wait - [GENERIC] wait until the command is done
987 * @mtd: MTD device structure
988 * @chip: NAND chip structure
989 * @timeo: timeout
990 *
991 * Wait for command done. This is a helper function for nand_wait used when
992 * we are in interrupt context. May happen when in panic and trying to write
993 * an oops through mtdoops.
994 */
995static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip,
996 unsigned long timeo)
997{
998 int i;
999 for (i = 0; i < timeo; i++) {
1000 if (chip->dev_ready) {
1001 if (chip->dev_ready(mtd))
1002 break;
1003 } else {
1004 if (chip->read_byte(mtd) & NAND_STATUS_READY)
1005 break;
1006 }
1007 mdelay(1);
1008 }
William Juulcfa460a2007-10-31 13:53:06 +01001009}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001010
1011/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001012 * nand_wait - [DEFAULT] wait until the command is done
1013 * @mtd: MTD device structure
1014 * @chip: NAND chip structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02001015 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001016 * Wait for command done. This applies to erase and program only. Erase can
1017 * take up to 400ms and program up to 20ms according to general NAND and
1018 * SmartMedia specs.
William Juulcfa460a2007-10-31 13:53:06 +01001019 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001020static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001021{
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001022
Heiko Schocherff94bc42014-06-24 10:10:04 +02001023 int status, state = chip->state;
1024 unsigned long timeo = (state == FL_ERASING ? 400 : 20);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001025
Heiko Schocherff94bc42014-06-24 10:10:04 +02001026 led_trigger_event(nand_led_trigger, LED_FULL);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001027
Heiko Schocherff94bc42014-06-24 10:10:04 +02001028 /*
1029 * Apply this short delay always to ensure that we do wait tWB in any
1030 * case on any machine.
1031 */
1032 ndelay(100);
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001033
Heiko Schocherff94bc42014-06-24 10:10:04 +02001034 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
1035
1036#ifndef __UBOOT__
1037 if (in_interrupt() || oops_in_progress)
1038 panic_nand_wait(mtd, chip, timeo);
1039 else {
1040 timeo = jiffies + msecs_to_jiffies(timeo);
1041 while (time_before(jiffies, timeo)) {
1042 if (chip->dev_ready) {
1043 if (chip->dev_ready(mtd))
1044 break;
1045 } else {
1046 if (chip->read_byte(mtd) & NAND_STATUS_READY)
1047 break;
1048 }
1049 cond_resched();
Stefan Roese15784862006-11-27 17:22:19 +01001050 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001051 }
1052#else
1053 u32 timer = (CONFIG_SYS_HZ * timeo) / 1000;
1054 u32 time_start;
1055
1056 time_start = get_timer(0);
1057 while (get_timer(time_start) < timer) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001058 if (chip->dev_ready) {
1059 if (chip->dev_ready(mtd))
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001060 break;
1061 } else {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001062 if (chip->read_byte(mtd) & NAND_STATUS_READY)
Wolfgang Denk8e9655f2005-11-02 14:29:12 +01001063 break;
1064 }
1065 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001066#endif
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +01001067#ifdef PPCHAMELON_NAND_TIMER_HACK
Reinhard Meyer7a8fc362010-11-18 03:14:26 +00001068 time_start = get_timer(0);
1069 while (get_timer(time_start) < 10)
1070 ;
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +01001071#endif /* PPCHAMELON_NAND_TIMER_HACK */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001072 led_trigger_event(nand_led_trigger, LED_OFF);
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +01001073
Heiko Schocherff94bc42014-06-24 10:10:04 +02001074 status = (int)chip->read_byte(mtd);
1075 /* This can happen if in case of timeout or buggy dev_ready */
1076 WARN_ON(!(status & NAND_STATUS_READY));
1077 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001078}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001079
Heiko Schocherff94bc42014-06-24 10:10:04 +02001080#ifndef __UBOOT__
1081/**
1082 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
1083 * @mtd: mtd info
1084 * @ofs: offset to start unlock from
1085 * @len: length to unlock
1086 * @invert: when = 0, unlock the range of blocks within the lower and
1087 * upper boundary address
1088 * when = 1, unlock the range of blocks outside the boundaries
1089 * of the lower and upper boundary address
1090 *
1091 * Returs unlock status.
1092 */
1093static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
1094 uint64_t len, int invert)
1095{
1096 int ret = 0;
1097 int status, page;
1098 struct nand_chip *chip = mtd->priv;
1099
1100 /* Submit address of first page to unlock */
1101 page = ofs >> chip->page_shift;
1102 chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask);
1103
1104 /* Submit address of last page to unlock */
1105 page = (ofs + len) >> chip->page_shift;
1106 chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1,
1107 (page | invert) & chip->pagemask);
1108
1109 /* Call wait ready function */
1110 status = chip->waitfunc(mtd, chip);
1111 /* See if device thinks it succeeded */
1112 if (status & NAND_STATUS_FAIL) {
1113 pr_debug("%s: error status = 0x%08x\n",
1114 __func__, status);
1115 ret = -EIO;
1116 }
1117
1118 return ret;
1119}
1120
1121/**
1122 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
1123 * @mtd: mtd info
1124 * @ofs: offset to start unlock from
1125 * @len: length to unlock
1126 *
1127 * Returns unlock status.
1128 */
1129int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1130{
1131 int ret = 0;
1132 int chipnr;
1133 struct nand_chip *chip = mtd->priv;
1134
1135 pr_debug("%s: start = 0x%012llx, len = %llu\n",
1136 __func__, (unsigned long long)ofs, len);
1137
1138 if (check_offs_len(mtd, ofs, len))
1139 ret = -EINVAL;
1140
1141 /* Align to last block address if size addresses end of the device */
1142 if (ofs + len == mtd->size)
1143 len -= mtd->erasesize;
1144
1145 nand_get_device(mtd, FL_UNLOCKING);
1146
1147 /* Shift to get chip number */
1148 chipnr = ofs >> chip->chip_shift;
1149
1150 chip->select_chip(mtd, chipnr);
1151
1152 /* Check, if it is write protected */
1153 if (nand_check_wp(mtd)) {
1154 pr_debug("%s: device is write protected!\n",
1155 __func__);
1156 ret = -EIO;
1157 goto out;
1158 }
1159
1160 ret = __nand_unlock(mtd, ofs, len, 0);
1161
1162out:
1163 chip->select_chip(mtd, -1);
1164 nand_release_device(mtd);
1165
1166 return ret;
1167}
1168EXPORT_SYMBOL(nand_unlock);
1169
1170/**
1171 * nand_lock - [REPLACEABLE] locks all blocks present in the device
1172 * @mtd: mtd info
1173 * @ofs: offset to start unlock from
1174 * @len: length to unlock
1175 *
1176 * This feature is not supported in many NAND parts. 'Micron' NAND parts do
1177 * have this feature, but it allows only to lock all blocks, not for specified
1178 * range for block. Implementing 'lock' feature by making use of 'unlock', for
1179 * now.
1180 *
1181 * Returns lock status.
1182 */
1183int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
1184{
1185 int ret = 0;
1186 int chipnr, status, page;
1187 struct nand_chip *chip = mtd->priv;
1188
1189 pr_debug("%s: start = 0x%012llx, len = %llu\n",
1190 __func__, (unsigned long long)ofs, len);
1191
1192 if (check_offs_len(mtd, ofs, len))
1193 ret = -EINVAL;
1194
1195 nand_get_device(mtd, FL_LOCKING);
1196
1197 /* Shift to get chip number */
1198 chipnr = ofs >> chip->chip_shift;
1199
1200 chip->select_chip(mtd, chipnr);
1201
1202 /* Check, if it is write protected */
1203 if (nand_check_wp(mtd)) {
1204 pr_debug("%s: device is write protected!\n",
1205 __func__);
1206 status = MTD_ERASE_FAILED;
1207 ret = -EIO;
1208 goto out;
1209 }
1210
1211 /* Submit address of first page to lock */
1212 page = ofs >> chip->page_shift;
1213 chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask);
1214
1215 /* Call wait ready function */
1216 status = chip->waitfunc(mtd, chip);
1217 /* See if device thinks it succeeded */
1218 if (status & NAND_STATUS_FAIL) {
1219 pr_debug("%s: error status = 0x%08x\n",
1220 __func__, status);
1221 ret = -EIO;
1222 goto out;
1223 }
1224
1225 ret = __nand_unlock(mtd, ofs, len, 0x1);
1226
1227out:
1228 chip->select_chip(mtd, -1);
1229 nand_release_device(mtd);
1230
1231 return ret;
1232}
1233EXPORT_SYMBOL(nand_lock);
1234#endif
1235
Wolfgang Denk932394a2005-08-17 12:55:25 +02001236/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001237 * nand_read_page_raw - [INTERN] read raw page data without ecc
1238 * @mtd: mtd info structure
1239 * @chip: nand chip info structure
1240 * @buf: buffer to store read data
1241 * @oob_required: caller requires OOB data read to chip->oob_poi
1242 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -05001243 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001244 * Not for syndrome calculating ECC controllers, which use a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001245 */
William Juulcfa460a2007-10-31 13:53:06 +01001246static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001247 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001248{
William Juulcfa460a2007-10-31 13:53:06 +01001249 chip->read_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001250 if (oob_required)
1251 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01001252 return 0;
1253}
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001254
William Juulcfa460a2007-10-31 13:53:06 +01001255/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001256 * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc
1257 * @mtd: mtd info structure
1258 * @chip: nand chip info structure
1259 * @buf: buffer to store read data
1260 * @oob_required: caller requires OOB data read to chip->oob_poi
1261 * @page: page number to read
David Brownell7e866612009-11-07 16:27:01 -05001262 *
1263 * We need a special oob layout and handling even when OOB isn't used.
1264 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001265static int nand_read_page_raw_syndrome(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001266 struct nand_chip *chip, uint8_t *buf,
1267 int oob_required, int page)
David Brownell7e866612009-11-07 16:27:01 -05001268{
1269 int eccsize = chip->ecc.size;
1270 int eccbytes = chip->ecc.bytes;
1271 uint8_t *oob = chip->oob_poi;
1272 int steps, size;
1273
1274 for (steps = chip->ecc.steps; steps > 0; steps--) {
1275 chip->read_buf(mtd, buf, eccsize);
1276 buf += eccsize;
1277
1278 if (chip->ecc.prepad) {
1279 chip->read_buf(mtd, oob, chip->ecc.prepad);
1280 oob += chip->ecc.prepad;
1281 }
1282
1283 chip->read_buf(mtd, oob, eccbytes);
1284 oob += eccbytes;
1285
1286 if (chip->ecc.postpad) {
1287 chip->read_buf(mtd, oob, chip->ecc.postpad);
1288 oob += chip->ecc.postpad;
1289 }
1290 }
1291
1292 size = mtd->oobsize - (oob - chip->oob_poi);
1293 if (size)
1294 chip->read_buf(mtd, oob, size);
1295
1296 return 0;
1297}
1298
1299/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001300 * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function
1301 * @mtd: mtd info structure
1302 * @chip: nand chip info structure
1303 * @buf: buffer to store read data
1304 * @oob_required: caller requires OOB data read to chip->oob_poi
1305 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001306 */
1307static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001308 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001309{
1310 int i, eccsize = chip->ecc.size;
1311 int eccbytes = chip->ecc.bytes;
1312 int eccsteps = chip->ecc.steps;
1313 uint8_t *p = buf;
1314 uint8_t *ecc_calc = chip->buffers->ecccalc;
1315 uint8_t *ecc_code = chip->buffers->ecccode;
1316 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001317 unsigned int max_bitflips = 0;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001318
Sergey Lapindfe64e22013-01-14 03:46:50 +00001319 chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001320
William Juulcfa460a2007-10-31 13:53:06 +01001321 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
1322 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001323
William Juulcfa460a2007-10-31 13:53:06 +01001324 for (i = 0; i < chip->ecc.total; i++)
1325 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001326
William Juulcfa460a2007-10-31 13:53:06 +01001327 eccsteps = chip->ecc.steps;
1328 p = buf;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001329
William Juulcfa460a2007-10-31 13:53:06 +01001330 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1331 int stat;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001332
William Juulcfa460a2007-10-31 13:53:06 +01001333 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001334 if (stat < 0) {
Scott Woodc45912d2008-10-24 16:20:43 -05001335 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001336 } else {
Scott Woodc45912d2008-10-24 16:20:43 -05001337 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001338 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1339 }
Scott Woodc45912d2008-10-24 16:20:43 -05001340 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001341 return max_bitflips;
Scott Woodc45912d2008-10-24 16:20:43 -05001342}
1343
1344/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001345 * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function
Sergey Lapindfe64e22013-01-14 03:46:50 +00001346 * @mtd: mtd info structure
1347 * @chip: nand chip info structure
1348 * @data_offs: offset of requested data within the page
1349 * @readlen: data length
1350 * @bufpoi: buffer to store read data
Heiko Schocher4e67c572014-07-15 16:08:43 +02001351 * @page: page number to read
Scott Woodc45912d2008-10-24 16:20:43 -05001352 */
Christian Hitz90e3f392011-10-12 09:32:01 +02001353static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001354 uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi,
1355 int page)
Scott Woodc45912d2008-10-24 16:20:43 -05001356{
1357 int start_step, end_step, num_steps;
1358 uint32_t *eccpos = chip->ecc.layout->eccpos;
1359 uint8_t *p;
1360 int data_col_addr, i, gaps = 0;
1361 int datafrag_len, eccfrag_len, aligned_len, aligned_pos;
1362 int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001363 int index;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001364 unsigned int max_bitflips = 0;
Scott Woodc45912d2008-10-24 16:20:43 -05001365
Sergey Lapindfe64e22013-01-14 03:46:50 +00001366 /* Column address within the page aligned to ECC size (256bytes) */
Scott Woodc45912d2008-10-24 16:20:43 -05001367 start_step = data_offs / chip->ecc.size;
1368 end_step = (data_offs + readlen - 1) / chip->ecc.size;
1369 num_steps = end_step - start_step + 1;
Heiko Schocher4e67c572014-07-15 16:08:43 +02001370 index = start_step * chip->ecc.bytes;
Scott Woodc45912d2008-10-24 16:20:43 -05001371
Sergey Lapindfe64e22013-01-14 03:46:50 +00001372 /* Data size aligned to ECC ecc.size */
Scott Woodc45912d2008-10-24 16:20:43 -05001373 datafrag_len = num_steps * chip->ecc.size;
1374 eccfrag_len = num_steps * chip->ecc.bytes;
1375
1376 data_col_addr = start_step * chip->ecc.size;
1377 /* If we read not a page aligned data */
1378 if (data_col_addr != 0)
1379 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1);
1380
1381 p = bufpoi + data_col_addr;
1382 chip->read_buf(mtd, p, datafrag_len);
1383
Sergey Lapindfe64e22013-01-14 03:46:50 +00001384 /* Calculate ECC */
Scott Woodc45912d2008-10-24 16:20:43 -05001385 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size)
1386 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]);
1387
Sergey Lapindfe64e22013-01-14 03:46:50 +00001388 /*
1389 * The performance is faster if we position offsets according to
1390 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
1391 */
Scott Woodc45912d2008-10-24 16:20:43 -05001392 for (i = 0; i < eccfrag_len - 1; i++) {
1393 if (eccpos[i + start_step * chip->ecc.bytes] + 1 !=
1394 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1395 gaps = 1;
1396 break;
1397 }
1398 }
1399 if (gaps) {
1400 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1);
1401 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1402 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001403 /*
1404 * Send the command to read the particular ECC bytes take care
1405 * about buswidth alignment in read_buf.
1406 */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001407 aligned_pos = eccpos[index] & ~(busw - 1);
Scott Woodc45912d2008-10-24 16:20:43 -05001408 aligned_len = eccfrag_len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001409 if (eccpos[index] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001410 aligned_len++;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001411 if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1))
Scott Woodc45912d2008-10-24 16:20:43 -05001412 aligned_len++;
1413
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001414 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
1415 mtd->writesize + aligned_pos, -1);
Scott Woodc45912d2008-10-24 16:20:43 -05001416 chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len);
1417 }
1418
1419 for (i = 0; i < eccfrag_len; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001420 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]];
Scott Woodc45912d2008-10-24 16:20:43 -05001421
1422 p = bufpoi + data_col_addr;
1423 for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) {
1424 int stat;
1425
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001426 stat = chip->ecc.correct(mtd, p,
1427 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001428 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001429 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001430 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001431 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001432 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1433 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001434 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001435 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001436}
1437
Wolfgang Denk932394a2005-08-17 12:55:25 +02001438/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001439 * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function
1440 * @mtd: mtd info structure
1441 * @chip: nand chip info structure
1442 * @buf: buffer to store read data
1443 * @oob_required: caller requires OOB data read to chip->oob_poi
1444 * @page: page number to read
Wolfgang Denk932394a2005-08-17 12:55:25 +02001445 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001446 * Not for syndrome calculating ECC controllers which need a special oob layout.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001447 */
William Juulcfa460a2007-10-31 13:53:06 +01001448static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001449 uint8_t *buf, int oob_required, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001450{
William Juulcfa460a2007-10-31 13:53:06 +01001451 int i, eccsize = chip->ecc.size;
1452 int eccbytes = chip->ecc.bytes;
1453 int eccsteps = chip->ecc.steps;
1454 uint8_t *p = buf;
1455 uint8_t *ecc_calc = chip->buffers->ecccalc;
1456 uint8_t *ecc_code = chip->buffers->ecccode;
1457 uint32_t *eccpos = chip->ecc.layout->eccpos;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001458 unsigned int max_bitflips = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001459
William Juulcfa460a2007-10-31 13:53:06 +01001460 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1461 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1462 chip->read_buf(mtd, p, eccsize);
1463 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1464 }
1465 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001466
William Juulcfa460a2007-10-31 13:53:06 +01001467 for (i = 0; i < chip->ecc.total; i++)
1468 ecc_code[i] = chip->oob_poi[eccpos[i]];
Wolfgang Denk932394a2005-08-17 12:55:25 +02001469
William Juulcfa460a2007-10-31 13:53:06 +01001470 eccsteps = chip->ecc.steps;
1471 p = buf;
1472
1473 for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1474 int stat;
1475
1476 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001477 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001478 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001479 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001480 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001481 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1482 }
William Juulcfa460a2007-10-31 13:53:06 +01001483 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001484 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001485}
1486
1487/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001488 * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first
1489 * @mtd: mtd info structure
1490 * @chip: nand chip info structure
1491 * @buf: buffer to store read data
1492 * @oob_required: caller requires OOB data read to chip->oob_poi
1493 * @page: page number to read
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001494 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001495 * Hardware ECC for large page chips, require OOB to be read first. For this
1496 * ECC mode, the write_page method is re-used from ECC_HW. These methods
1497 * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with
1498 * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from
1499 * the data area, by overwriting the NAND manufacturer bad block markings.
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001500 */
1501static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001502 struct nand_chip *chip, uint8_t *buf, int oob_required, int page)
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001503{
1504 int i, eccsize = chip->ecc.size;
1505 int eccbytes = chip->ecc.bytes;
1506 int eccsteps = chip->ecc.steps;
1507 uint8_t *p = buf;
1508 uint8_t *ecc_code = chip->buffers->ecccode;
1509 uint32_t *eccpos = chip->ecc.layout->eccpos;
1510 uint8_t *ecc_calc = chip->buffers->ecccalc;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001511 unsigned int max_bitflips = 0;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001512
1513 /* Read the OOB area first */
1514 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
1515 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
1516 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
1517
1518 for (i = 0; i < chip->ecc.total; i++)
1519 ecc_code[i] = chip->oob_poi[eccpos[i]];
1520
1521 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1522 int stat;
1523
1524 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1525 chip->read_buf(mtd, p, eccsize);
1526 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
1527
1528 stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001529 if (stat < 0) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001530 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001531 } else {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001532 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001533 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1534 }
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001535 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001536 return max_bitflips;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04001537}
1538
1539/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001540 * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read
1541 * @mtd: mtd info structure
1542 * @chip: nand chip info structure
1543 * @buf: buffer to store read data
1544 * @oob_required: caller requires OOB data read to chip->oob_poi
1545 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001546 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001547 * The hw generator calculates the error syndrome automatically. Therefore we
1548 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01001549 */
1550static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001551 uint8_t *buf, int oob_required, int page)
William Juulcfa460a2007-10-31 13:53:06 +01001552{
1553 int i, eccsize = chip->ecc.size;
1554 int eccbytes = chip->ecc.bytes;
1555 int eccsteps = chip->ecc.steps;
1556 uint8_t *p = buf;
1557 uint8_t *oob = chip->oob_poi;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001558 unsigned int max_bitflips = 0;
William Juulcfa460a2007-10-31 13:53:06 +01001559
1560 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
1561 int stat;
1562
1563 chip->ecc.hwctl(mtd, NAND_ECC_READ);
1564 chip->read_buf(mtd, p, eccsize);
1565
1566 if (chip->ecc.prepad) {
1567 chip->read_buf(mtd, oob, chip->ecc.prepad);
1568 oob += chip->ecc.prepad;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001569 }
1570
William Juulcfa460a2007-10-31 13:53:06 +01001571 chip->ecc.hwctl(mtd, NAND_ECC_READSYN);
1572 chip->read_buf(mtd, oob, eccbytes);
1573 stat = chip->ecc.correct(mtd, p, oob, NULL);
1574
Heiko Schocherff94bc42014-06-24 10:10:04 +02001575 if (stat < 0) {
William Juulcfa460a2007-10-31 13:53:06 +01001576 mtd->ecc_stats.failed++;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001577 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001578 mtd->ecc_stats.corrected += stat;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001579 max_bitflips = max_t(unsigned int, max_bitflips, stat);
1580 }
William Juulcfa460a2007-10-31 13:53:06 +01001581
1582 oob += eccbytes;
1583
1584 if (chip->ecc.postpad) {
1585 chip->read_buf(mtd, oob, chip->ecc.postpad);
1586 oob += chip->ecc.postpad;
1587 }
1588 }
1589
1590 /* Calculate remaining oob bytes */
1591 i = mtd->oobsize - (oob - chip->oob_poi);
1592 if (i)
1593 chip->read_buf(mtd, oob, i);
1594
Heiko Schocherff94bc42014-06-24 10:10:04 +02001595 return max_bitflips;
William Juulcfa460a2007-10-31 13:53:06 +01001596}
1597
1598/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001599 * nand_transfer_oob - [INTERN] Transfer oob to client buffer
1600 * @chip: nand chip structure
1601 * @oob: oob destination address
1602 * @ops: oob ops structure
1603 * @len: size of oob to transfer
William Juulcfa460a2007-10-31 13:53:06 +01001604 */
1605static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob,
1606 struct mtd_oob_ops *ops, size_t len)
1607{
Christian Hitz90e3f392011-10-12 09:32:01 +02001608 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01001609
Sergey Lapindfe64e22013-01-14 03:46:50 +00001610 case MTD_OPS_PLACE_OOB:
1611 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01001612 memcpy(oob, chip->oob_poi + ops->ooboffs, len);
1613 return oob + len;
1614
Sergey Lapindfe64e22013-01-14 03:46:50 +00001615 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01001616 struct nand_oobfree *free = chip->ecc.layout->oobfree;
1617 uint32_t boffs = 0, roffs = ops->ooboffs;
1618 size_t bytes = 0;
1619
Christian Hitz90e3f392011-10-12 09:32:01 +02001620 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001621 /* Read request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01001622 if (unlikely(roffs)) {
1623 if (roffs >= free->length) {
1624 roffs -= free->length;
1625 continue;
1626 }
1627 boffs = free->offset + roffs;
1628 bytes = min_t(size_t, len,
1629 (free->length - roffs));
1630 roffs = 0;
1631 } else {
1632 bytes = min_t(size_t, len, free->length);
1633 boffs = free->offset;
1634 }
1635 memcpy(oob, chip->oob_poi + boffs, bytes);
1636 oob += bytes;
1637 }
1638 return oob;
1639 }
1640 default:
1641 BUG();
1642 }
1643 return NULL;
1644}
1645
1646/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001647 * nand_setup_read_retry - [INTERN] Set the READ RETRY mode
1648 * @mtd: MTD device structure
1649 * @retry_mode: the retry mode to use
1650 *
1651 * Some vendors supply a special command to shift the Vt threshold, to be used
1652 * when there are too many bitflips in a page (i.e., ECC error). After setting
1653 * a new threshold, the host should retry reading the page.
1654 */
1655static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode)
1656{
1657 struct nand_chip *chip = mtd->priv;
1658
1659 pr_debug("setting READ RETRY mode %d\n", retry_mode);
1660
1661 if (retry_mode >= chip->read_retries)
1662 return -EINVAL;
1663
1664 if (!chip->setup_read_retry)
1665 return -EOPNOTSUPP;
1666
1667 return chip->setup_read_retry(mtd, retry_mode);
1668}
1669
1670/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001671 * nand_do_read_ops - [INTERN] Read data with ECC
1672 * @mtd: MTD device structure
1673 * @from: offset to read from
1674 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01001675 *
1676 * Internal function. Called with chip held.
1677 */
1678static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,
1679 struct mtd_oob_ops *ops)
1680{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001681 int chipnr, page, realpage, col, bytes, aligned, oob_required;
William Juulcfa460a2007-10-31 13:53:06 +01001682 struct nand_chip *chip = mtd->priv;
William Juulcfa460a2007-10-31 13:53:06 +01001683 int ret = 0;
1684 uint32_t readlen = ops->len;
1685 uint32_t oobreadlen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001686 uint32_t max_oobsize = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001687 mtd->oobavail : mtd->oobsize;
1688
William Juulcfa460a2007-10-31 13:53:06 +01001689 uint8_t *bufpoi, *oob, *buf;
Paul Burton40462e52013-09-04 15:16:56 +01001690 unsigned int max_bitflips = 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001691 int retry_mode = 0;
1692 bool ecc_fail = false;
William Juulcfa460a2007-10-31 13:53:06 +01001693
1694 chipnr = (int)(from >> chip->chip_shift);
1695 chip->select_chip(mtd, chipnr);
1696
1697 realpage = (int)(from >> chip->page_shift);
1698 page = realpage & chip->pagemask;
1699
1700 col = (int)(from & (mtd->writesize - 1));
1701
1702 buf = ops->datbuf;
1703 oob = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001704 oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01001705
Christian Hitz90e3f392011-10-12 09:32:01 +02001706 while (1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001707 unsigned int ecc_failures = mtd->ecc_stats.failed;
Scott Wood6f2ffc32011-02-02 18:15:57 -06001708
Heiko Schocherff94bc42014-06-24 10:10:04 +02001709 WATCHDOG_RESET();
William Juulcfa460a2007-10-31 13:53:06 +01001710 bytes = min(mtd->writesize - col, readlen);
1711 aligned = (bytes == mtd->writesize);
1712
Sergey Lapindfe64e22013-01-14 03:46:50 +00001713 /* Is the current page in the buffer? */
William Juulcfa460a2007-10-31 13:53:06 +01001714 if (realpage != chip->pagebuf || oob) {
1715 bufpoi = aligned ? buf : chip->buffers->databuf;
1716
Heiko Schocherff94bc42014-06-24 10:10:04 +02001717read_retry:
Sergey Lapindfe64e22013-01-14 03:46:50 +00001718 chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
William Juulcfa460a2007-10-31 13:53:06 +01001719
Paul Burton40462e52013-09-04 15:16:56 +01001720 /*
1721 * Now read the page into the buffer. Absent an error,
1722 * the read methods return max bitflips per ecc step.
1723 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001724 if (unlikely(ops->mode == MTD_OPS_RAW))
1725 ret = chip->ecc.read_page_raw(mtd, chip, bufpoi,
1726 oob_required,
1727 page);
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001728 else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001729 !oob)
Christian Hitz90e3f392011-10-12 09:32:01 +02001730 ret = chip->ecc.read_subpage(mtd, chip,
Heiko Schocher4e67c572014-07-15 16:08:43 +02001731 col, bytes, bufpoi,
1732 page);
William Juulcfa460a2007-10-31 13:53:06 +01001733 else
Sandeep Paulraja2c65b42009-08-10 13:27:46 -04001734 ret = chip->ecc.read_page(mtd, chip, bufpoi,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001735 oob_required, page);
1736 if (ret < 0) {
1737 if (!aligned)
1738 /* Invalidate page cache */
1739 chip->pagebuf = -1;
William Juulcfa460a2007-10-31 13:53:06 +01001740 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001741 }
William Juulcfa460a2007-10-31 13:53:06 +01001742
Paul Burton40462e52013-09-04 15:16:56 +01001743 max_bitflips = max_t(unsigned int, max_bitflips, ret);
1744
William Juulcfa460a2007-10-31 13:53:06 +01001745 /* Transfer not aligned data */
1746 if (!aligned) {
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00001747 if (!NAND_HAS_SUBPAGE_READ(chip) && !oob &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02001748 !(mtd->ecc_stats.failed - ecc_failures) &&
Paul Burton40462e52013-09-04 15:16:56 +01001749 (ops->mode != MTD_OPS_RAW)) {
Scott Woodc45912d2008-10-24 16:20:43 -05001750 chip->pagebuf = realpage;
Paul Burton40462e52013-09-04 15:16:56 +01001751 chip->pagebuf_bitflips = ret;
1752 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001753 /* Invalidate page cache */
1754 chip->pagebuf = -1;
Paul Burton40462e52013-09-04 15:16:56 +01001755 }
William Juulcfa460a2007-10-31 13:53:06 +01001756 memcpy(buf, chip->buffers->databuf + col, bytes);
1757 }
1758
William Juulcfa460a2007-10-31 13:53:06 +01001759 if (unlikely(oob)) {
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02001760 int toread = min(oobreadlen, max_oobsize);
1761
1762 if (toread) {
1763 oob = nand_transfer_oob(chip,
1764 oob, ops, toread);
1765 oobreadlen -= toread;
1766 }
William Juulcfa460a2007-10-31 13:53:06 +01001767 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001768
1769 if (chip->options & NAND_NEED_READRDY) {
1770 /* Apply delay or wait for ready/busy pin */
1771 if (!chip->dev_ready)
1772 udelay(chip->chip_delay);
1773 else
1774 nand_wait_ready(mtd);
1775 }
1776
1777 if (mtd->ecc_stats.failed - ecc_failures) {
1778 if (retry_mode + 1 < chip->read_retries) {
1779 retry_mode++;
1780 ret = nand_setup_read_retry(mtd,
1781 retry_mode);
1782 if (ret < 0)
1783 break;
1784
1785 /* Reset failures; retry */
1786 mtd->ecc_stats.failed = ecc_failures;
1787 goto read_retry;
1788 } else {
1789 /* No more retry modes; real failure */
1790 ecc_fail = true;
1791 }
1792 }
1793
1794 buf += bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001795 } else {
William Juulcfa460a2007-10-31 13:53:06 +01001796 memcpy(buf, chip->buffers->databuf + col, bytes);
1797 buf += bytes;
Paul Burton40462e52013-09-04 15:16:56 +01001798 max_bitflips = max_t(unsigned int, max_bitflips,
1799 chip->pagebuf_bitflips);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001800 }
1801
William Juulcfa460a2007-10-31 13:53:06 +01001802 readlen -= bytes;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001803
Heiko Schocherff94bc42014-06-24 10:10:04 +02001804 /* Reset to retry mode 0 */
1805 if (retry_mode) {
1806 ret = nand_setup_read_retry(mtd, 0);
1807 if (ret < 0)
1808 break;
1809 retry_mode = 0;
1810 }
1811
William Juulcfa460a2007-10-31 13:53:06 +01001812 if (!readlen)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001813 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001814
Sergey Lapindfe64e22013-01-14 03:46:50 +00001815 /* For subsequent reads align to page boundary */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001816 col = 0;
1817 /* Increment page address */
1818 realpage++;
1819
William Juulcfa460a2007-10-31 13:53:06 +01001820 page = realpage & chip->pagemask;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001821 /* Check, if we cross a chip boundary */
1822 if (!page) {
1823 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01001824 chip->select_chip(mtd, -1);
1825 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001826 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001827 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02001828 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001829
William Juulcfa460a2007-10-31 13:53:06 +01001830 ops->retlen = ops->len - (size_t) readlen;
1831 if (oob)
1832 ops->oobretlen = ops->ooblen - oobreadlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001833
Heiko Schocherff94bc42014-06-24 10:10:04 +02001834 if (ret < 0)
William Juulcfa460a2007-10-31 13:53:06 +01001835 return ret;
1836
Heiko Schocherff94bc42014-06-24 10:10:04 +02001837 if (ecc_fail)
William Juulcfa460a2007-10-31 13:53:06 +01001838 return -EBADMSG;
1839
Paul Burton40462e52013-09-04 15:16:56 +01001840 return max_bitflips;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001841}
1842
1843/**
Christian Hitz90e3f392011-10-12 09:32:01 +02001844 * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc
Sergey Lapindfe64e22013-01-14 03:46:50 +00001845 * @mtd: MTD device structure
1846 * @from: offset to read from
1847 * @len: number of bytes to read
1848 * @retlen: pointer to variable to store the number of read bytes
1849 * @buf: the databuffer to put data
Wolfgang Denk932394a2005-08-17 12:55:25 +02001850 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001851 * Get hold of the chip and call nand_do_read.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001852 */
William Juulcfa460a2007-10-31 13:53:06 +01001853static int nand_read(struct mtd_info *mtd, loff_t from, size_t len,
1854 size_t *retlen, uint8_t *buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001855{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001856 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01001857 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001858
Heiko Schocherff94bc42014-06-24 10:10:04 +02001859 nand_get_device(mtd, FL_READING);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001860 ops.len = len;
1861 ops.datbuf = buf;
1862 ops.oobbuf = NULL;
1863 ops.mode = MTD_OPS_PLACE_OOB;
1864 ret = nand_do_read_ops(mtd, from, &ops);
1865 *retlen = ops.retlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001866 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001867 return ret;
1868}
1869
William Juulcfa460a2007-10-31 13:53:06 +01001870/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001871 * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function
1872 * @mtd: mtd info structure
1873 * @chip: nand chip info structure
1874 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001875 */
1876static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001877 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001878{
Sergey Lapindfe64e22013-01-14 03:46:50 +00001879 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page);
William Juulcfa460a2007-10-31 13:53:06 +01001880 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001881 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001882}
Wolfgang Denk932394a2005-08-17 12:55:25 +02001883
1884/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001885 * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC
William Juulcfa460a2007-10-31 13:53:06 +01001886 * with syndromes
Sergey Lapindfe64e22013-01-14 03:46:50 +00001887 * @mtd: mtd info structure
1888 * @chip: nand chip info structure
1889 * @page: page number to read
William Juulcfa460a2007-10-31 13:53:06 +01001890 */
1891static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001892 int page)
William Juulcfa460a2007-10-31 13:53:06 +01001893{
1894 uint8_t *buf = chip->oob_poi;
1895 int length = mtd->oobsize;
1896 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1897 int eccsize = chip->ecc.size;
1898 uint8_t *bufpoi = buf;
1899 int i, toread, sndrnd = 0, pos;
1900
1901 chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page);
1902 for (i = 0; i < chip->ecc.steps; i++) {
1903 if (sndrnd) {
1904 pos = eccsize + i * (eccsize + chunk);
1905 if (mtd->writesize > 512)
1906 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1);
1907 else
1908 chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page);
1909 } else
1910 sndrnd = 1;
1911 toread = min_t(int, length, chunk);
1912 chip->read_buf(mtd, bufpoi, toread);
1913 bufpoi += toread;
1914 length -= toread;
1915 }
1916 if (length > 0)
1917 chip->read_buf(mtd, bufpoi, length);
1918
Sergey Lapindfe64e22013-01-14 03:46:50 +00001919 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01001920}
1921
1922/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001923 * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function
1924 * @mtd: mtd info structure
1925 * @chip: nand chip info structure
1926 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001927 */
1928static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip,
1929 int page)
1930{
1931 int status = 0;
1932 const uint8_t *buf = chip->oob_poi;
1933 int length = mtd->oobsize;
1934
1935 chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page);
1936 chip->write_buf(mtd, buf, length);
1937 /* Send command to program the OOB data */
1938 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1939
1940 status = chip->waitfunc(mtd, chip);
1941
1942 return status & NAND_STATUS_FAIL ? -EIO : 0;
1943}
1944
1945/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001946 * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC
1947 * with syndrome - only for large page flash
1948 * @mtd: mtd info structure
1949 * @chip: nand chip info structure
1950 * @page: page number to write
William Juulcfa460a2007-10-31 13:53:06 +01001951 */
1952static int nand_write_oob_syndrome(struct mtd_info *mtd,
1953 struct nand_chip *chip, int page)
1954{
1955 int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad;
1956 int eccsize = chip->ecc.size, length = mtd->oobsize;
1957 int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps;
1958 const uint8_t *bufpoi = chip->oob_poi;
1959
1960 /*
1961 * data-ecc-data-ecc ... ecc-oob
1962 * or
1963 * data-pad-ecc-pad-data-pad .... ecc-pad-oob
1964 */
1965 if (!chip->ecc.prepad && !chip->ecc.postpad) {
1966 pos = steps * (eccsize + chunk);
1967 steps = 0;
1968 } else
1969 pos = eccsize;
1970
1971 chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page);
1972 for (i = 0; i < steps; i++) {
1973 if (sndcmd) {
1974 if (mtd->writesize <= 512) {
1975 uint32_t fill = 0xFFFFFFFF;
1976
1977 len = eccsize;
1978 while (len > 0) {
1979 int num = min_t(int, len, 4);
1980 chip->write_buf(mtd, (uint8_t *)&fill,
1981 num);
1982 len -= num;
1983 }
1984 } else {
1985 pos = eccsize + i * (eccsize + chunk);
1986 chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1);
1987 }
1988 } else
1989 sndcmd = 1;
1990 len = min_t(int, length, chunk);
1991 chip->write_buf(mtd, bufpoi, len);
1992 bufpoi += len;
1993 length -= len;
1994 }
1995 if (length > 0)
1996 chip->write_buf(mtd, bufpoi, length);
1997
1998 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
1999 status = chip->waitfunc(mtd, chip);
2000
2001 return status & NAND_STATUS_FAIL ? -EIO : 0;
2002}
2003
2004/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002005 * nand_do_read_oob - [INTERN] NAND read out-of-band
2006 * @mtd: MTD device structure
2007 * @from: offset to read from
2008 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01002009 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002010 * NAND read out-of-band data from the spare area.
William Juulcfa460a2007-10-31 13:53:06 +01002011 */
2012static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,
2013 struct mtd_oob_ops *ops)
2014{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002015 int page, realpage, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002016 struct nand_chip *chip = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002017 struct mtd_ecc_stats stats;
William Juulcfa460a2007-10-31 13:53:06 +01002018 int readlen = ops->ooblen;
2019 int len;
2020 uint8_t *buf = ops->oobbuf;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002021 int ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002022
Heiko Schocherff94bc42014-06-24 10:10:04 +02002023 pr_debug("%s: from = 0x%08Lx, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02002024 __func__, (unsigned long long)from, readlen);
William Juulcfa460a2007-10-31 13:53:06 +01002025
Sergey Lapindfe64e22013-01-14 03:46:50 +00002026 stats = mtd->ecc_stats;
2027
2028 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01002029 len = chip->ecc.layout->oobavail;
2030 else
2031 len = mtd->oobsize;
2032
2033 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002034 pr_debug("%s: attempt to start read outside oob\n",
2035 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002036 return -EINVAL;
2037 }
2038
2039 /* Do not allow reads past end of device */
2040 if (unlikely(from >= mtd->size ||
2041 ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) -
2042 (from >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002043 pr_debug("%s: attempt to read beyond end of device\n",
2044 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002045 return -EINVAL;
2046 }
2047
2048 chipnr = (int)(from >> chip->chip_shift);
2049 chip->select_chip(mtd, chipnr);
2050
2051 /* Shift to get page */
2052 realpage = (int)(from >> chip->page_shift);
2053 page = realpage & chip->pagemask;
2054
Christian Hitz90e3f392011-10-12 09:32:01 +02002055 while (1) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002056 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02002057
Sergey Lapindfe64e22013-01-14 03:46:50 +00002058 if (ops->mode == MTD_OPS_RAW)
2059 ret = chip->ecc.read_oob_raw(mtd, chip, page);
2060 else
2061 ret = chip->ecc.read_oob(mtd, chip, page);
2062
2063 if (ret < 0)
2064 break;
William Juulcfa460a2007-10-31 13:53:06 +01002065
2066 len = min(len, readlen);
2067 buf = nand_transfer_oob(chip, buf, ops, len);
2068
Heiko Schocherff94bc42014-06-24 10:10:04 +02002069 if (chip->options & NAND_NEED_READRDY) {
2070 /* Apply delay or wait for ready/busy pin */
2071 if (!chip->dev_ready)
2072 udelay(chip->chip_delay);
2073 else
2074 nand_wait_ready(mtd);
2075 }
2076
William Juulcfa460a2007-10-31 13:53:06 +01002077 readlen -= len;
2078 if (!readlen)
2079 break;
2080
2081 /* Increment page address */
2082 realpage++;
2083
2084 page = realpage & chip->pagemask;
2085 /* Check, if we cross a chip boundary */
2086 if (!page) {
2087 chipnr++;
2088 chip->select_chip(mtd, -1);
2089 chip->select_chip(mtd, chipnr);
2090 }
William Juulcfa460a2007-10-31 13:53:06 +01002091 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02002092 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002093
Sergey Lapindfe64e22013-01-14 03:46:50 +00002094 ops->oobretlen = ops->ooblen - readlen;
2095
2096 if (ret < 0)
2097 return ret;
2098
2099 if (mtd->ecc_stats.failed - stats.failed)
2100 return -EBADMSG;
2101
2102 return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0;
William Juulcfa460a2007-10-31 13:53:06 +01002103}
2104
2105/**
2106 * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002107 * @mtd: MTD device structure
2108 * @from: offset to read from
2109 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002110 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002111 * NAND read data and/or out-of-band data.
William Juulcfa460a2007-10-31 13:53:06 +01002112 */
2113static int nand_read_oob(struct mtd_info *mtd, loff_t from,
2114 struct mtd_oob_ops *ops)
2115{
William Juulcfa460a2007-10-31 13:53:06 +01002116 int ret = -ENOTSUPP;
2117
2118 ops->retlen = 0;
2119
2120 /* Do not allow reads past end of device */
2121 if (ops->datbuf && (from + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002122 pr_debug("%s: attempt to read beyond end of device\n",
2123 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002124 return -EINVAL;
2125 }
2126
Heiko Schocherff94bc42014-06-24 10:10:04 +02002127 nand_get_device(mtd, FL_READING);
William Juulcfa460a2007-10-31 13:53:06 +01002128
Christian Hitz90e3f392011-10-12 09:32:01 +02002129 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002130 case MTD_OPS_PLACE_OOB:
2131 case MTD_OPS_AUTO_OOB:
2132 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002133 break;
2134
2135 default:
2136 goto out;
2137 }
2138
2139 if (!ops->datbuf)
2140 ret = nand_do_read_oob(mtd, from, ops);
2141 else
2142 ret = nand_do_read_ops(mtd, from, ops);
2143
Christian Hitz90e3f392011-10-12 09:32:01 +02002144out:
William Juulcfa460a2007-10-31 13:53:06 +01002145 nand_release_device(mtd);
2146 return ret;
2147}
2148
2149
2150/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002151 * nand_write_page_raw - [INTERN] raw page write function
2152 * @mtd: mtd info structure
2153 * @chip: nand chip info structure
2154 * @buf: data buffer
2155 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05002156 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002157 * Not for syndrome calculating ECC controllers, which use a special oob layout.
William Juulcfa460a2007-10-31 13:53:06 +01002158 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002159static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
2160 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002161{
2162 chip->write_buf(mtd, buf, mtd->writesize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002163 if (oob_required)
2164 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2165
2166 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002167}
2168
2169/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002170 * nand_write_page_raw_syndrome - [INTERN] raw page write function
2171 * @mtd: mtd info structure
2172 * @chip: nand chip info structure
2173 * @buf: data buffer
2174 * @oob_required: must write chip->oob_poi to OOB
David Brownell7e866612009-11-07 16:27:01 -05002175 *
2176 * We need a special oob layout and handling even when ECC isn't checked.
2177 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002178static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
Christian Hitz90e3f392011-10-12 09:32:01 +02002179 struct nand_chip *chip,
Sergey Lapindfe64e22013-01-14 03:46:50 +00002180 const uint8_t *buf, int oob_required)
David Brownell7e866612009-11-07 16:27:01 -05002181{
2182 int eccsize = chip->ecc.size;
2183 int eccbytes = chip->ecc.bytes;
2184 uint8_t *oob = chip->oob_poi;
2185 int steps, size;
2186
2187 for (steps = chip->ecc.steps; steps > 0; steps--) {
2188 chip->write_buf(mtd, buf, eccsize);
2189 buf += eccsize;
2190
2191 if (chip->ecc.prepad) {
2192 chip->write_buf(mtd, oob, chip->ecc.prepad);
2193 oob += chip->ecc.prepad;
2194 }
2195
Heiko Schocher4e67c572014-07-15 16:08:43 +02002196 chip->write_buf(mtd, oob, eccbytes);
David Brownell7e866612009-11-07 16:27:01 -05002197 oob += eccbytes;
2198
2199 if (chip->ecc.postpad) {
2200 chip->write_buf(mtd, oob, chip->ecc.postpad);
2201 oob += chip->ecc.postpad;
2202 }
2203 }
2204
2205 size = mtd->oobsize - (oob - chip->oob_poi);
2206 if (size)
2207 chip->write_buf(mtd, oob, size);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002208
2209 return 0;
David Brownell7e866612009-11-07 16:27:01 -05002210}
2211/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002212 * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function
2213 * @mtd: mtd info structure
2214 * @chip: nand chip info structure
2215 * @buf: data buffer
2216 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002217 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002218static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip,
2219 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002220{
2221 int i, eccsize = chip->ecc.size;
2222 int eccbytes = chip->ecc.bytes;
2223 int eccsteps = chip->ecc.steps;
2224 uint8_t *ecc_calc = chip->buffers->ecccalc;
2225 const uint8_t *p = buf;
2226 uint32_t *eccpos = chip->ecc.layout->eccpos;
2227
Sergey Lapindfe64e22013-01-14 03:46:50 +00002228 /* Software ECC calculation */
William Juulcfa460a2007-10-31 13:53:06 +01002229 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize)
2230 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2231
2232 for (i = 0; i < chip->ecc.total; i++)
2233 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2234
Sergey Lapindfe64e22013-01-14 03:46:50 +00002235 return chip->ecc.write_page_raw(mtd, chip, buf, 1);
William Juulcfa460a2007-10-31 13:53:06 +01002236}
2237
2238/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002239 * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function
2240 * @mtd: mtd info structure
2241 * @chip: nand chip info structure
2242 * @buf: data buffer
2243 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002244 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002245static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
2246 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002247{
2248 int i, eccsize = chip->ecc.size;
2249 int eccbytes = chip->ecc.bytes;
2250 int eccsteps = chip->ecc.steps;
2251 uint8_t *ecc_calc = chip->buffers->ecccalc;
2252 const uint8_t *p = buf;
2253 uint32_t *eccpos = chip->ecc.layout->eccpos;
2254
2255 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2256 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2257 chip->write_buf(mtd, p, eccsize);
2258 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
2259 }
2260
2261 for (i = 0; i < chip->ecc.total; i++)
2262 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2263
2264 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002265
2266 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002267}
2268
Heiko Schocherff94bc42014-06-24 10:10:04 +02002269
2270/**
2271 * nand_write_subpage_hwecc - [REPLACABLE] hardware ECC based subpage write
2272 * @mtd: mtd info structure
2273 * @chip: nand chip info structure
2274 * @offset: column address of subpage within the page
2275 * @data_len: data length
2276 * @buf: data buffer
2277 * @oob_required: must write chip->oob_poi to OOB
2278 */
2279static int nand_write_subpage_hwecc(struct mtd_info *mtd,
2280 struct nand_chip *chip, uint32_t offset,
2281 uint32_t data_len, const uint8_t *buf,
2282 int oob_required)
2283{
2284 uint8_t *oob_buf = chip->oob_poi;
2285 uint8_t *ecc_calc = chip->buffers->ecccalc;
2286 int ecc_size = chip->ecc.size;
2287 int ecc_bytes = chip->ecc.bytes;
2288 int ecc_steps = chip->ecc.steps;
2289 uint32_t *eccpos = chip->ecc.layout->eccpos;
2290 uint32_t start_step = offset / ecc_size;
2291 uint32_t end_step = (offset + data_len - 1) / ecc_size;
2292 int oob_bytes = mtd->oobsize / ecc_steps;
2293 int step, i;
2294
2295 for (step = 0; step < ecc_steps; step++) {
2296 /* configure controller for WRITE access */
2297 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2298
2299 /* write data (untouched subpages already masked by 0xFF) */
2300 chip->write_buf(mtd, buf, ecc_size);
2301
2302 /* mask ECC of un-touched subpages by padding 0xFF */
2303 if ((step < start_step) || (step > end_step))
2304 memset(ecc_calc, 0xff, ecc_bytes);
2305 else
2306 chip->ecc.calculate(mtd, buf, ecc_calc);
2307
2308 /* mask OOB of un-touched subpages by padding 0xFF */
2309 /* if oob_required, preserve OOB metadata of written subpage */
2310 if (!oob_required || (step < start_step) || (step > end_step))
2311 memset(oob_buf, 0xff, oob_bytes);
2312
2313 buf += ecc_size;
2314 ecc_calc += ecc_bytes;
2315 oob_buf += oob_bytes;
2316 }
2317
2318 /* copy calculated ECC for whole page to chip->buffer->oob */
2319 /* this include masked-value(0xFF) for unwritten subpages */
2320 ecc_calc = chip->buffers->ecccalc;
2321 for (i = 0; i < chip->ecc.total; i++)
2322 chip->oob_poi[eccpos[i]] = ecc_calc[i];
2323
2324 /* write OOB buffer to NAND device */
2325 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize);
2326
2327 return 0;
2328}
2329
2330
William Juulcfa460a2007-10-31 13:53:06 +01002331/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002332 * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write
2333 * @mtd: mtd info structure
2334 * @chip: nand chip info structure
2335 * @buf: data buffer
2336 * @oob_required: must write chip->oob_poi to OOB
William Juulcfa460a2007-10-31 13:53:06 +01002337 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002338 * The hw generator calculates the error syndrome automatically. Therefore we
2339 * need a special oob layout and handling.
William Juulcfa460a2007-10-31 13:53:06 +01002340 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002341static int nand_write_page_syndrome(struct mtd_info *mtd,
2342 struct nand_chip *chip,
2343 const uint8_t *buf, int oob_required)
William Juulcfa460a2007-10-31 13:53:06 +01002344{
2345 int i, eccsize = chip->ecc.size;
2346 int eccbytes = chip->ecc.bytes;
2347 int eccsteps = chip->ecc.steps;
2348 const uint8_t *p = buf;
2349 uint8_t *oob = chip->oob_poi;
2350
2351 for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) {
2352
2353 chip->ecc.hwctl(mtd, NAND_ECC_WRITE);
2354 chip->write_buf(mtd, p, eccsize);
2355
2356 if (chip->ecc.prepad) {
2357 chip->write_buf(mtd, oob, chip->ecc.prepad);
2358 oob += chip->ecc.prepad;
2359 }
2360
2361 chip->ecc.calculate(mtd, p, oob);
2362 chip->write_buf(mtd, oob, eccbytes);
2363 oob += eccbytes;
2364
2365 if (chip->ecc.postpad) {
2366 chip->write_buf(mtd, oob, chip->ecc.postpad);
2367 oob += chip->ecc.postpad;
2368 }
2369 }
2370
2371 /* Calculate remaining oob bytes */
2372 i = mtd->oobsize - (oob - chip->oob_poi);
2373 if (i)
2374 chip->write_buf(mtd, oob, i);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002375
2376 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01002377}
2378
2379/**
2380 * nand_write_page - [REPLACEABLE] write one page
Sergey Lapindfe64e22013-01-14 03:46:50 +00002381 * @mtd: MTD device structure
2382 * @chip: NAND chip descriptor
Heiko Schocherff94bc42014-06-24 10:10:04 +02002383 * @offset: address offset within the page
2384 * @data_len: length of actual data to be written
Sergey Lapindfe64e22013-01-14 03:46:50 +00002385 * @buf: the data to write
2386 * @oob_required: must write chip->oob_poi to OOB
2387 * @page: page number to write
2388 * @cached: cached programming
2389 * @raw: use _raw version of write_page
William Juulcfa460a2007-10-31 13:53:06 +01002390 */
2391static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02002392 uint32_t offset, int data_len, const uint8_t *buf,
2393 int oob_required, int page, int cached, int raw)
William Juulcfa460a2007-10-31 13:53:06 +01002394{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002395 int status, subpage;
2396
2397 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) &&
2398 chip->ecc.write_subpage)
2399 subpage = offset || (data_len < mtd->writesize);
2400 else
2401 subpage = 0;
William Juulcfa460a2007-10-31 13:53:06 +01002402
2403 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2404
2405 if (unlikely(raw))
Heiko Schocherff94bc42014-06-24 10:10:04 +02002406 status = chip->ecc.write_page_raw(mtd, chip, buf,
2407 oob_required);
2408 else if (subpage)
2409 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
2410 buf, oob_required);
William Juulcfa460a2007-10-31 13:53:06 +01002411 else
Sergey Lapindfe64e22013-01-14 03:46:50 +00002412 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2413
2414 if (status < 0)
2415 return status;
William Juulcfa460a2007-10-31 13:53:06 +01002416
2417 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00002418 * Cached progamming disabled for now. Not sure if it's worth the
2419 * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s).
William Juulcfa460a2007-10-31 13:53:06 +01002420 */
2421 cached = 0;
2422
Heiko Schocherff94bc42014-06-24 10:10:04 +02002423 if (!cached || !NAND_HAS_CACHEPROG(chip)) {
William Juulcfa460a2007-10-31 13:53:06 +01002424
2425 chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
2426 status = chip->waitfunc(mtd, chip);
2427 /*
2428 * See if operation failed and additional status checks are
Sergey Lapindfe64e22013-01-14 03:46:50 +00002429 * available.
William Juulcfa460a2007-10-31 13:53:06 +01002430 */
2431 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2432 status = chip->errstat(mtd, chip, FL_WRITING, status,
2433 page);
2434
2435 if (status & NAND_STATUS_FAIL)
2436 return -EIO;
2437 } else {
2438 chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1);
2439 status = chip->waitfunc(mtd, chip);
2440 }
2441
Heiko Schocherff94bc42014-06-24 10:10:04 +02002442
2443#ifdef __UBOOT__
2444#if defined(CONFIG_MTD_NAND_VERIFY_WRITE)
William Juulcfa460a2007-10-31 13:53:06 +01002445 /* Send command to read back the data */
2446 chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
2447
2448 if (chip->verify_buf(mtd, buf, mtd->writesize))
2449 return -EIO;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002450
2451 /* Make sure the next page prog is preceded by a status read */
2452 chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002453#endif
Heiko Schocherff94bc42014-06-24 10:10:04 +02002454#endif
2455
William Juulcfa460a2007-10-31 13:53:06 +01002456 return 0;
2457}
2458
2459/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002460 * nand_fill_oob - [INTERN] Transfer client buffer to oob
2461 * @mtd: MTD device structure
2462 * @oob: oob data buffer
2463 * @len: oob data write length
2464 * @ops: oob ops structure
William Juulcfa460a2007-10-31 13:53:06 +01002465 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00002466static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len,
2467 struct mtd_oob_ops *ops)
William Juulcfa460a2007-10-31 13:53:06 +01002468{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002469 struct nand_chip *chip = mtd->priv;
2470
2471 /*
2472 * Initialise to all 0xFF, to avoid the possibility of left over OOB
2473 * data from a previous OOB read.
2474 */
2475 memset(chip->oob_poi, 0xff, mtd->oobsize);
2476
Christian Hitz90e3f392011-10-12 09:32:01 +02002477 switch (ops->mode) {
William Juulcfa460a2007-10-31 13:53:06 +01002478
Sergey Lapindfe64e22013-01-14 03:46:50 +00002479 case MTD_OPS_PLACE_OOB:
2480 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002481 memcpy(chip->oob_poi + ops->ooboffs, oob, len);
2482 return oob + len;
2483
Sergey Lapindfe64e22013-01-14 03:46:50 +00002484 case MTD_OPS_AUTO_OOB: {
William Juulcfa460a2007-10-31 13:53:06 +01002485 struct nand_oobfree *free = chip->ecc.layout->oobfree;
2486 uint32_t boffs = 0, woffs = ops->ooboffs;
2487 size_t bytes = 0;
2488
Christian Hitz90e3f392011-10-12 09:32:01 +02002489 for (; free->length && len; free++, len -= bytes) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002490 /* Write request not from offset 0? */
William Juulcfa460a2007-10-31 13:53:06 +01002491 if (unlikely(woffs)) {
2492 if (woffs >= free->length) {
2493 woffs -= free->length;
2494 continue;
2495 }
2496 boffs = free->offset + woffs;
2497 bytes = min_t(size_t, len,
2498 (free->length - woffs));
2499 woffs = 0;
2500 } else {
2501 bytes = min_t(size_t, len, free->length);
2502 boffs = free->offset;
2503 }
2504 memcpy(chip->oob_poi + boffs, oob, bytes);
2505 oob += bytes;
2506 }
2507 return oob;
2508 }
2509 default:
2510 BUG();
2511 }
2512 return NULL;
2513}
2514
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002515#define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0)
William Juulcfa460a2007-10-31 13:53:06 +01002516
2517/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002518 * nand_do_write_ops - [INTERN] NAND write with ECC
2519 * @mtd: MTD device structure
2520 * @to: offset to write to
2521 * @ops: oob operations description structure
William Juulcfa460a2007-10-31 13:53:06 +01002522 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002523 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002524 */
2525static int nand_do_write_ops(struct mtd_info *mtd, loff_t to,
2526 struct mtd_oob_ops *ops)
2527{
2528 int chipnr, realpage, page, blockmask, column;
2529 struct nand_chip *chip = mtd->priv;
2530 uint32_t writelen = ops->len;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002531
2532 uint32_t oobwritelen = ops->ooblen;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002533 uint32_t oobmaxlen = ops->mode == MTD_OPS_AUTO_OOB ?
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002534 mtd->oobavail : mtd->oobsize;
2535
William Juulcfa460a2007-10-31 13:53:06 +01002536 uint8_t *oob = ops->oobbuf;
2537 uint8_t *buf = ops->datbuf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002538 int ret;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002539 int oob_required = oob ? 1 : 0;
William Juulcfa460a2007-10-31 13:53:06 +01002540
2541 ops->retlen = 0;
2542 if (!writelen)
2543 return 0;
2544
Heiko Schocherff94bc42014-06-24 10:10:04 +02002545#ifndef __UBOOT__
2546 /* Reject writes, which are not page aligned */
2547 if (NOTALIGNED(to) || NOTALIGNED(ops->len)) {
2548#else
2549 /* Reject writes, which are not page aligned */
2550 if (NOTALIGNED(to)) {
2551#endif
2552 pr_notice("%s: attempt to write non page aligned data\n",
2553 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002554 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002555 }
2556
2557 column = to & (mtd->writesize - 1);
William Juulcfa460a2007-10-31 13:53:06 +01002558
2559 chipnr = (int)(to >> chip->chip_shift);
2560 chip->select_chip(mtd, chipnr);
2561
2562 /* Check, if it is write protected */
2563 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002564 ret = -EIO;
2565 goto err_out;
William Juulcfa460a2007-10-31 13:53:06 +01002566 }
2567
2568 realpage = (int)(to >> chip->page_shift);
2569 page = realpage & chip->pagemask;
2570 blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1;
2571
2572 /* Invalidate the page cache, when we write to the cached page */
2573 if (to <= (chip->pagebuf << chip->page_shift) &&
2574 (chip->pagebuf << chip->page_shift) < (to + ops->len))
2575 chip->pagebuf = -1;
2576
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002577 /* Don't allow multipage oob writes with offset */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002578 if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) {
2579 ret = -EINVAL;
2580 goto err_out;
2581 }
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002582
Christian Hitz90e3f392011-10-12 09:32:01 +02002583 while (1) {
William Juulcfa460a2007-10-31 13:53:06 +01002584 int bytes = mtd->writesize;
2585 int cached = writelen > bytes && page != blockmask;
2586 uint8_t *wbuf = buf;
2587
Heiko Schocherff94bc42014-06-24 10:10:04 +02002588 WATCHDOG_RESET();
Sergey Lapindfe64e22013-01-14 03:46:50 +00002589 /* Partial page write? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002590 if (unlikely(column || writelen < (mtd->writesize - 1))) {
William Juulcfa460a2007-10-31 13:53:06 +01002591 cached = 0;
2592 bytes = min_t(int, bytes - column, (int) writelen);
2593 chip->pagebuf = -1;
2594 memset(chip->buffers->databuf, 0xff, mtd->writesize);
2595 memcpy(&chip->buffers->databuf[column], buf, bytes);
2596 wbuf = chip->buffers->databuf;
2597 }
2598
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002599 if (unlikely(oob)) {
2600 size_t len = min(oobwritelen, oobmaxlen);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002601 oob = nand_fill_oob(mtd, oob, len, ops);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002602 oobwritelen -= len;
Sergey Lapindfe64e22013-01-14 03:46:50 +00002603 } else {
2604 /* We still need to erase leftover OOB data */
2605 memset(chip->oob_poi, 0xff, mtd->oobsize);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002606 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02002607 ret = chip->write_page(mtd, chip, column, bytes, wbuf,
2608 oob_required, page, cached,
2609 (ops->mode == MTD_OPS_RAW));
William Juulcfa460a2007-10-31 13:53:06 +01002610 if (ret)
2611 break;
2612
2613 writelen -= bytes;
2614 if (!writelen)
2615 break;
2616
2617 column = 0;
2618 buf += bytes;
2619 realpage++;
2620
2621 page = realpage & chip->pagemask;
2622 /* Check, if we cross a chip boundary */
2623 if (!page) {
2624 chipnr++;
2625 chip->select_chip(mtd, -1);
2626 chip->select_chip(mtd, chipnr);
2627 }
2628 }
2629
2630 ops->retlen = ops->len - writelen;
2631 if (unlikely(oob))
2632 ops->oobretlen = ops->ooblen;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002633
2634err_out:
2635 chip->select_chip(mtd, -1);
2636 return ret;
2637}
2638
2639/**
2640 * panic_nand_write - [MTD Interface] NAND write with ECC
2641 * @mtd: MTD device structure
2642 * @to: offset to write to
2643 * @len: number of bytes to write
2644 * @retlen: pointer to variable to store the number of written bytes
2645 * @buf: the data to write
2646 *
2647 * NAND write with ECC. Used when performing writes in interrupt context, this
2648 * may for example be called by mtdoops when writing an oops while in panic.
2649 */
2650static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2651 size_t *retlen, const uint8_t *buf)
2652{
2653 struct nand_chip *chip = mtd->priv;
2654 struct mtd_oob_ops ops;
2655 int ret;
2656
2657 /* Wait for the device to get ready */
2658 panic_nand_wait(mtd, chip, 400);
2659
2660 /* Grab the device */
2661 panic_nand_get_device(chip, mtd, FL_WRITING);
2662
2663 ops.len = len;
2664 ops.datbuf = (uint8_t *)buf;
2665 ops.oobbuf = NULL;
2666 ops.mode = MTD_OPS_PLACE_OOB;
2667
2668 ret = nand_do_write_ops(mtd, to, &ops);
2669
2670 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002671 return ret;
2672}
2673
2674/**
2675 * nand_write - [MTD Interface] NAND write with ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00002676 * @mtd: MTD device structure
2677 * @to: offset to write to
2678 * @len: number of bytes to write
2679 * @retlen: pointer to variable to store the number of written bytes
2680 * @buf: the data to write
Wolfgang Denk932394a2005-08-17 12:55:25 +02002681 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002682 * NAND write with ECC.
William Juulcfa460a2007-10-31 13:53:06 +01002683 */
2684static int nand_write(struct mtd_info *mtd, loff_t to, size_t len,
2685 size_t *retlen, const uint8_t *buf)
2686{
Sergey Lapindfe64e22013-01-14 03:46:50 +00002687 struct mtd_oob_ops ops;
William Juulcfa460a2007-10-31 13:53:06 +01002688 int ret;
2689
Heiko Schocherff94bc42014-06-24 10:10:04 +02002690 nand_get_device(mtd, FL_WRITING);
Sergey Lapindfe64e22013-01-14 03:46:50 +00002691 ops.len = len;
2692 ops.datbuf = (uint8_t *)buf;
2693 ops.oobbuf = NULL;
2694 ops.mode = MTD_OPS_PLACE_OOB;
2695 ret = nand_do_write_ops(mtd, to, &ops);
2696 *retlen = ops.retlen;
William Juulcfa460a2007-10-31 13:53:06 +01002697 nand_release_device(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01002698 return ret;
2699}
2700
2701/**
2702 * nand_do_write_oob - [MTD Interface] NAND write out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002703 * @mtd: MTD device structure
2704 * @to: offset to write to
2705 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002706 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002707 * NAND write out-of-band.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002708 */
William Juulcfa460a2007-10-31 13:53:06 +01002709static int nand_do_write_oob(struct mtd_info *mtd, loff_t to,
2710 struct mtd_oob_ops *ops)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002711{
William Juulcfa460a2007-10-31 13:53:06 +01002712 int chipnr, page, status, len;
2713 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002714
Heiko Schocherff94bc42014-06-24 10:10:04 +02002715 pr_debug("%s: to = 0x%08x, len = %i\n",
Christian Hitz90e3f392011-10-12 09:32:01 +02002716 __func__, (unsigned int)to, (int)ops->ooblen);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002717
Sergey Lapindfe64e22013-01-14 03:46:50 +00002718 if (ops->mode == MTD_OPS_AUTO_OOB)
William Juulcfa460a2007-10-31 13:53:06 +01002719 len = chip->ecc.layout->oobavail;
2720 else
2721 len = mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002722
2723 /* Do not allow write past end of page */
William Juulcfa460a2007-10-31 13:53:06 +01002724 if ((ops->ooboffs + ops->ooblen) > len) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002725 pr_debug("%s: attempt to write past end of page\n",
2726 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002727 return -EINVAL;
2728 }
2729
William Juulcfa460a2007-10-31 13:53:06 +01002730 if (unlikely(ops->ooboffs >= len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002731 pr_debug("%s: attempt to start write outside oob\n",
2732 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002733 return -EINVAL;
2734 }
2735
Christian Hitz90e3f392011-10-12 09:32:01 +02002736 /* Do not allow write past end of device */
William Juulcfa460a2007-10-31 13:53:06 +01002737 if (unlikely(to >= mtd->size ||
2738 ops->ooboffs + ops->ooblen >
2739 ((mtd->size >> chip->page_shift) -
2740 (to >> chip->page_shift)) * len)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002741 pr_debug("%s: attempt to write beyond end of device\n",
2742 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002743 return -EINVAL;
2744 }
2745
William Juulcfa460a2007-10-31 13:53:06 +01002746 chipnr = (int)(to >> chip->chip_shift);
2747 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002748
William Juulcfa460a2007-10-31 13:53:06 +01002749 /* Shift to get page */
2750 page = (int)(to >> chip->page_shift);
2751
2752 /*
2753 * Reset the chip. Some chips (like the Toshiba TC5832DC found in one
2754 * of my DiskOnChip 2000 test units) will clear the whole data page too
2755 * if we don't do this. I have no clue why, but I seem to have 'fixed'
2756 * it in the doc2000 driver in August 1999. dwmw2.
2757 */
2758 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002759
2760 /* Check, if it is write protected */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002761 if (nand_check_wp(mtd)) {
2762 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01002763 return -EROFS;
Heiko Schocherff94bc42014-06-24 10:10:04 +02002764 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002765
Wolfgang Denk932394a2005-08-17 12:55:25 +02002766 /* Invalidate the page cache, if we write to the cached page */
William Juulcfa460a2007-10-31 13:53:06 +01002767 if (page == chip->pagebuf)
2768 chip->pagebuf = -1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002769
Sergey Lapindfe64e22013-01-14 03:46:50 +00002770 nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops);
2771
2772 if (ops->mode == MTD_OPS_RAW)
2773 status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask);
2774 else
2775 status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002776
Heiko Schocherff94bc42014-06-24 10:10:04 +02002777 chip->select_chip(mtd, -1);
2778
William Juulcfa460a2007-10-31 13:53:06 +01002779 if (status)
2780 return status;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002781
William Juulcfa460a2007-10-31 13:53:06 +01002782 ops->oobretlen = ops->ooblen;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002783
William Juulcfa460a2007-10-31 13:53:06 +01002784 return 0;
2785}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002786
William Juulcfa460a2007-10-31 13:53:06 +01002787/**
2788 * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band
Sergey Lapindfe64e22013-01-14 03:46:50 +00002789 * @mtd: MTD device structure
2790 * @to: offset to write to
2791 * @ops: oob operation description structure
William Juulcfa460a2007-10-31 13:53:06 +01002792 */
2793static int nand_write_oob(struct mtd_info *mtd, loff_t to,
2794 struct mtd_oob_ops *ops)
2795{
William Juulcfa460a2007-10-31 13:53:06 +01002796 int ret = -ENOTSUPP;
2797
2798 ops->retlen = 0;
2799
2800 /* Do not allow writes past end of device */
2801 if (ops->datbuf && (to + ops->len) > mtd->size) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002802 pr_debug("%s: attempt to write beyond end of device\n",
2803 __func__);
William Juulcfa460a2007-10-31 13:53:06 +01002804 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002805 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002806
Heiko Schocherff94bc42014-06-24 10:10:04 +02002807 nand_get_device(mtd, FL_WRITING);
William Juulcfa460a2007-10-31 13:53:06 +01002808
Christian Hitz90e3f392011-10-12 09:32:01 +02002809 switch (ops->mode) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002810 case MTD_OPS_PLACE_OOB:
2811 case MTD_OPS_AUTO_OOB:
2812 case MTD_OPS_RAW:
William Juulcfa460a2007-10-31 13:53:06 +01002813 break;
2814
2815 default:
2816 goto out;
2817 }
2818
2819 if (!ops->datbuf)
2820 ret = nand_do_write_oob(mtd, to, ops);
2821 else
2822 ret = nand_do_write_ops(mtd, to, ops);
2823
Christian Hitz90e3f392011-10-12 09:32:01 +02002824out:
William Juulcfa460a2007-10-31 13:53:06 +01002825 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002826 return ret;
2827}
Wolfgang Denk932394a2005-08-17 12:55:25 +02002828
2829/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002830 * single_erase_cmd - [GENERIC] NAND standard block erase command function
2831 * @mtd: MTD device structure
2832 * @page: the page address of the block which will be erased
Wolfgang Denk932394a2005-08-17 12:55:25 +02002833 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002834 * Standard erase command for NAND chips.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002835 */
William Juulcfa460a2007-10-31 13:53:06 +01002836static void single_erase_cmd(struct mtd_info *mtd, int page)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002837{
William Juulcfa460a2007-10-31 13:53:06 +01002838 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002839 /* Send commands to erase a block */
William Juulcfa460a2007-10-31 13:53:06 +01002840 chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page);
2841 chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002842}
2843
2844/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02002845 * nand_erase - [MTD Interface] erase block(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00002846 * @mtd: MTD device structure
2847 * @instr: erase instruction
Wolfgang Denk932394a2005-08-17 12:55:25 +02002848 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002849 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002850 */
William Juulcfa460a2007-10-31 13:53:06 +01002851static int nand_erase(struct mtd_info *mtd, struct erase_info *instr)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002852{
William Juulcfa460a2007-10-31 13:53:06 +01002853 return nand_erase_nand(mtd, instr, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002854}
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002855
Wolfgang Denk932394a2005-08-17 12:55:25 +02002856/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00002857 * nand_erase_nand - [INTERN] erase block(s)
2858 * @mtd: MTD device structure
2859 * @instr: erase instruction
2860 * @allowbbt: allow erasing the bbt area
Wolfgang Denk932394a2005-08-17 12:55:25 +02002861 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002862 * Erase one ore more blocks.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002863 */
William Juulcfa460a2007-10-31 13:53:06 +01002864int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
2865 int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002866{
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002867 int page, status, pages_per_block, ret, chipnr;
William Juulcfa460a2007-10-31 13:53:06 +01002868 struct nand_chip *chip = mtd->priv;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04002869 loff_t len;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002870
Heiko Schocherff94bc42014-06-24 10:10:04 +02002871 pr_debug("%s: start = 0x%012llx, len = %llu\n",
2872 __func__, (unsigned long long)instr->addr,
2873 (unsigned long long)instr->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002874
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02002875 if (check_offs_len(mtd, instr->addr, instr->len))
Wolfgang Denk932394a2005-08-17 12:55:25 +02002876 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002877
Wolfgang Denk932394a2005-08-17 12:55:25 +02002878 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002879 nand_get_device(mtd, FL_ERASING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002880
2881 /* Shift to get first page */
William Juulcfa460a2007-10-31 13:53:06 +01002882 page = (int)(instr->addr >> chip->page_shift);
2883 chipnr = (int)(instr->addr >> chip->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002884
2885 /* Calculate pages in each block */
William Juulcfa460a2007-10-31 13:53:06 +01002886 pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift);
William Juul4cbb6512007-11-08 10:39:53 +01002887
Wolfgang Denk932394a2005-08-17 12:55:25 +02002888 /* Select the NAND device */
William Juulcfa460a2007-10-31 13:53:06 +01002889 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002890
Wolfgang Denk932394a2005-08-17 12:55:25 +02002891 /* Check, if it is write protected */
2892 if (nand_check_wp(mtd)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002893 pr_debug("%s: device is write protected!\n",
2894 __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002895 instr->state = MTD_ERASE_FAILED;
2896 goto erase_exit;
2897 }
2898
2899 /* Loop through the pages */
2900 len = instr->len;
2901
2902 instr->state = MTD_ERASING;
2903
2904 while (len) {
Scott Wood6f2ffc32011-02-02 18:15:57 -06002905 WATCHDOG_RESET();
Heiko Schocherff94bc42014-06-24 10:10:04 +02002906
Sergey Lapindfe64e22013-01-14 03:46:50 +00002907 /* Check if we have a bad block, we do not erase bad blocks! */
Masahiro Yamada756963d2014-12-16 15:36:33 +09002908 if (!instr->scrub && nand_block_checkbad(mtd, ((loff_t) page) <<
William Juulcfa460a2007-10-31 13:53:06 +01002909 chip->page_shift, 0, allowbbt)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00002910 pr_warn("%s: attempt to erase a bad block at page 0x%08x\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02002911 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002912 instr->state = MTD_ERASE_FAILED;
2913 goto erase_exit;
2914 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02002915
William Juulcfa460a2007-10-31 13:53:06 +01002916 /*
2917 * Invalidate the page cache, if we erase the block which
Sergey Lapindfe64e22013-01-14 03:46:50 +00002918 * contains the current cached page.
William Juulcfa460a2007-10-31 13:53:06 +01002919 */
2920 if (page <= chip->pagebuf && chip->pagebuf <
2921 (page + pages_per_block))
2922 chip->pagebuf = -1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002923
William Juulcfa460a2007-10-31 13:53:06 +01002924 chip->erase_cmd(mtd, page & chip->pagemask);
2925
2926 status = chip->waitfunc(mtd, chip);
2927
2928 /*
2929 * See if operation failed and additional status checks are
2930 * available
2931 */
2932 if ((status & NAND_STATUS_FAIL) && (chip->errstat))
2933 status = chip->errstat(mtd, chip, FL_ERASING,
2934 status, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002935
2936 /* See if block erase succeeded */
William Juulcfa460a2007-10-31 13:53:06 +01002937 if (status & NAND_STATUS_FAIL) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02002938 pr_debug("%s: failed erase, page 0x%08x\n",
2939 __func__, page);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002940 instr->state = MTD_ERASE_FAILED;
Christian Hitz90e3f392011-10-12 09:32:01 +02002941 instr->fail_addr =
2942 ((loff_t)page << chip->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002943 goto erase_exit;
2944 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02002945
Wolfgang Denk932394a2005-08-17 12:55:25 +02002946 /* Increment page address and decrement length */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002947 len -= (1ULL << chip->phys_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002948 page += pages_per_block;
2949
2950 /* Check, if we cross a chip boundary */
William Juulcfa460a2007-10-31 13:53:06 +01002951 if (len && !(page & chip->pagemask)) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02002952 chipnr++;
William Juulcfa460a2007-10-31 13:53:06 +01002953 chip->select_chip(mtd, -1);
2954 chip->select_chip(mtd, chipnr);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002955 }
2956 }
2957 instr->state = MTD_ERASE_DONE;
2958
Christian Hitz90e3f392011-10-12 09:32:01 +02002959erase_exit:
Wolfgang Denk932394a2005-08-17 12:55:25 +02002960
2961 ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO;
Wolfgang Denk932394a2005-08-17 12:55:25 +02002962
2963 /* Deselect and wake up anyone waiting on the device */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002964 chip->select_chip(mtd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002965 nand_release_device(mtd);
2966
Scott Woodc45912d2008-10-24 16:20:43 -05002967 /* Do call back function */
2968 if (!ret)
2969 mtd_erase_callback(instr);
2970
Wolfgang Denk932394a2005-08-17 12:55:25 +02002971 /* Return more or less happy */
2972 return ret;
2973}
2974
2975/**
2976 * nand_sync - [MTD Interface] sync
Sergey Lapindfe64e22013-01-14 03:46:50 +00002977 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02002978 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00002979 * Sync is actually a wait for chip ready function.
Wolfgang Denk932394a2005-08-17 12:55:25 +02002980 */
William Juulcfa460a2007-10-31 13:53:06 +01002981static void nand_sync(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002982{
Heiko Schocherff94bc42014-06-24 10:10:04 +02002983 pr_debug("%s: called\n", __func__);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002984
2985 /* Grab the lock and see if the device is available */
Heiko Schocherff94bc42014-06-24 10:10:04 +02002986 nand_get_device(mtd, FL_SYNCING);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002987 /* Release it and go back */
William Juulcfa460a2007-10-31 13:53:06 +01002988 nand_release_device(mtd);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002989}
2990
Wolfgang Denk932394a2005-08-17 12:55:25 +02002991/**
William Juulcfa460a2007-10-31 13:53:06 +01002992 * nand_block_isbad - [MTD Interface] Check if block at offset is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00002993 * @mtd: MTD device structure
2994 * @offs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02002995 */
William Juulcfa460a2007-10-31 13:53:06 +01002996static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02002997{
William Juulcfa460a2007-10-31 13:53:06 +01002998 return nand_block_checkbad(mtd, offs, 1, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +02002999}
3000
3001/**
William Juulcfa460a2007-10-31 13:53:06 +01003002 * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00003003 * @mtd: MTD device structure
3004 * @ofs: offset relative to mtd start
Wolfgang Denk932394a2005-08-17 12:55:25 +02003005 */
William Juulcfa460a2007-10-31 13:53:06 +01003006static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02003007{
Wolfgang Denk932394a2005-08-17 12:55:25 +02003008 int ret;
3009
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003010 ret = nand_block_isbad(mtd, ofs);
3011 if (ret) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003012 /* If it was bad already, return success and do nothing */
Wolfgang Denk932394a2005-08-17 12:55:25 +02003013 if (ret > 0)
3014 return 0;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02003015 return ret;
3016 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02003017
Heiko Schocherff94bc42014-06-24 10:10:04 +02003018 return nand_block_markbad_lowlevel(mtd, ofs);
Wolfgang Denk932394a2005-08-17 12:55:25 +02003019}
3020
Heiko Schocherff94bc42014-06-24 10:10:04 +02003021/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00003022 * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand
3023 * @mtd: MTD device structure
3024 * @chip: nand chip info structure
3025 * @addr: feature address.
3026 * @subfeature_param: the subfeature parameters, a four bytes array.
William Juulcfa460a2007-10-31 13:53:06 +01003027 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00003028static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip,
3029 int addr, uint8_t *subfeature_param)
3030{
3031 int status;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003032 int i;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003033
Heiko Schocherff94bc42014-06-24 10:10:04 +02003034#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
3035 if (!chip->onfi_version ||
3036 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3037 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00003038 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003039#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00003040
3041 chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003042 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3043 chip->write_byte(mtd, subfeature_param[i]);
3044
Sergey Lapindfe64e22013-01-14 03:46:50 +00003045 status = chip->waitfunc(mtd, chip);
3046 if (status & NAND_STATUS_FAIL)
3047 return -EIO;
3048 return 0;
3049}
3050
3051/**
3052 * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand
3053 * @mtd: MTD device structure
3054 * @chip: nand chip info structure
3055 * @addr: feature address.
3056 * @subfeature_param: the subfeature parameters, a four bytes array.
3057 */
3058static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip,
3059 int addr, uint8_t *subfeature_param)
3060{
Heiko Schocherff94bc42014-06-24 10:10:04 +02003061 int i;
3062
3063#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
3064 if (!chip->onfi_version ||
3065 !(le16_to_cpu(chip->onfi_params.opt_cmd)
3066 & ONFI_OPT_CMD_SET_GET_FEATURES))
Sergey Lapindfe64e22013-01-14 03:46:50 +00003067 return -EINVAL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003068#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00003069
3070 /* clear the sub feature parameters */
3071 memset(subfeature_param, 0, ONFI_SUBFEATURE_PARAM_LEN);
3072
3073 chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003074 for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i)
3075 *subfeature_param++ = chip->read_byte(mtd);
Sergey Lapindfe64e22013-01-14 03:46:50 +00003076 return 0;
3077}
3078
Heiko Schocherff94bc42014-06-24 10:10:04 +02003079#ifndef __UBOOT__
3080/**
3081 * nand_suspend - [MTD Interface] Suspend the NAND flash
3082 * @mtd: MTD device structure
3083 */
3084static int nand_suspend(struct mtd_info *mtd)
3085{
3086 return nand_get_device(mtd, FL_PM_SUSPENDED);
3087}
3088
3089/**
3090 * nand_resume - [MTD Interface] Resume the NAND flash
3091 * @mtd: MTD device structure
3092 */
3093static void nand_resume(struct mtd_info *mtd)
3094{
3095 struct nand_chip *chip = mtd->priv;
3096
3097 if (chip->state == FL_PM_SUSPENDED)
3098 nand_release_device(mtd);
3099 else
3100 pr_err("%s called for a chip which is not in suspended state\n",
3101 __func__);
3102}
3103#endif
3104
Sergey Lapindfe64e22013-01-14 03:46:50 +00003105/* Set default functions */
William Juulcfa460a2007-10-31 13:53:06 +01003106static void nand_set_defaults(struct nand_chip *chip, int busw)
3107{
3108 /* check for proper chip_delay setup, set 20us if not */
3109 if (!chip->chip_delay)
3110 chip->chip_delay = 20;
3111
3112 /* check, if a user supplied command function given */
3113 if (chip->cmdfunc == NULL)
3114 chip->cmdfunc = nand_command;
3115
3116 /* check, if a user supplied wait function given */
3117 if (chip->waitfunc == NULL)
3118 chip->waitfunc = nand_wait;
3119
3120 if (!chip->select_chip)
3121 chip->select_chip = nand_select_chip;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003122
3123 /* set for ONFI nand */
3124 if (!chip->onfi_set_features)
3125 chip->onfi_set_features = nand_onfi_set_features;
3126 if (!chip->onfi_get_features)
3127 chip->onfi_get_features = nand_onfi_get_features;
3128
3129 /* If called twice, pointers that depend on busw may need to be reset */
3130 if (!chip->read_byte || chip->read_byte == nand_read_byte)
William Juulcfa460a2007-10-31 13:53:06 +01003131 chip->read_byte = busw ? nand_read_byte16 : nand_read_byte;
3132 if (!chip->read_word)
3133 chip->read_word = nand_read_word;
3134 if (!chip->block_bad)
3135 chip->block_bad = nand_block_bad;
3136 if (!chip->block_markbad)
3137 chip->block_markbad = nand_default_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003138 if (!chip->write_buf || chip->write_buf == nand_write_buf)
William Juulcfa460a2007-10-31 13:53:06 +01003139 chip->write_buf = busw ? nand_write_buf16 : nand_write_buf;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003140 if (!chip->write_byte || chip->write_byte == nand_write_byte)
3141 chip->write_byte = busw ? nand_write_byte16 : nand_write_byte;
3142 if (!chip->read_buf || chip->read_buf == nand_read_buf)
William Juulcfa460a2007-10-31 13:53:06 +01003143 chip->read_buf = busw ? nand_read_buf16 : nand_read_buf;
William Juulcfa460a2007-10-31 13:53:06 +01003144 if (!chip->scan_bbt)
3145 chip->scan_bbt = nand_default_bbt;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003146#ifdef __UBOOT__
3147#if defined(CONFIG_MTD_NAND_VERIFY_WRITE)
3148 if (!chip->verify_buf)
3149 chip->verify_buf = busw ? nand_verify_buf16 : nand_verify_buf;
3150#endif
3151#endif
3152
3153 if (!chip->controller) {
William Juulcfa460a2007-10-31 13:53:06 +01003154 chip->controller = &chip->hwcontrol;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003155 spin_lock_init(&chip->controller->lock);
3156 init_waitqueue_head(&chip->controller->wq);
3157 }
3158
William Juulcfa460a2007-10-31 13:53:06 +01003159}
3160
Sergey Lapindfe64e22013-01-14 03:46:50 +00003161/* Sanitize ONFI strings so we can safely print them */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003162#ifndef __UBOOT__
3163static void sanitize_string(uint8_t *s, size_t len)
3164#else
Christian Hitz5454ddb2011-10-12 09:32:05 +02003165static void sanitize_string(char *s, size_t len)
Heiko Schocherff94bc42014-06-24 10:10:04 +02003166#endif
Christian Hitz5454ddb2011-10-12 09:32:05 +02003167{
3168 ssize_t i;
3169
Sergey Lapindfe64e22013-01-14 03:46:50 +00003170 /* Null terminate */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003171 s[len - 1] = 0;
3172
Sergey Lapindfe64e22013-01-14 03:46:50 +00003173 /* Remove non printable chars */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003174 for (i = 0; i < len - 1; i++) {
3175 if (s[i] < ' ' || s[i] > 127)
3176 s[i] = '?';
3177 }
3178
Sergey Lapindfe64e22013-01-14 03:46:50 +00003179 /* Remove trailing spaces */
Christian Hitz5454ddb2011-10-12 09:32:05 +02003180 strim(s);
3181}
3182
Florian Fainelli0272c712011-02-25 00:01:34 +00003183static u16 onfi_crc16(u16 crc, u8 const *p, size_t len)
William Juulcfa460a2007-10-31 13:53:06 +01003184{
Florian Fainelli0272c712011-02-25 00:01:34 +00003185 int i;
Florian Fainelli0272c712011-02-25 00:01:34 +00003186 while (len--) {
3187 crc ^= *p++ << 8;
3188 for (i = 0; i < 8; i++)
3189 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0);
Scott Woodc45912d2008-10-24 16:20:43 -05003190 }
3191
Florian Fainelli0272c712011-02-25 00:01:34 +00003192 return crc;
3193}
William Juulcfa460a2007-10-31 13:53:06 +01003194
Heiko Schocher4e67c572014-07-15 16:08:43 +02003195#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocherff94bc42014-06-24 10:10:04 +02003196/* Parse the Extended Parameter Page. */
3197static int nand_flash_detect_ext_param_page(struct mtd_info *mtd,
3198 struct nand_chip *chip, struct nand_onfi_params *p)
3199{
3200 struct onfi_ext_param_page *ep;
3201 struct onfi_ext_section *s;
3202 struct onfi_ext_ecc_info *ecc;
3203 uint8_t *cursor;
3204 int ret = -EINVAL;
3205 int len;
3206 int i;
3207
3208 len = le16_to_cpu(p->ext_param_page_length) * 16;
3209 ep = kmalloc(len, GFP_KERNEL);
3210 if (!ep)
3211 return -ENOMEM;
3212
3213 /* Send our own NAND_CMD_PARAM. */
3214 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3215
3216 /* Use the Change Read Column command to skip the ONFI param pages. */
3217 chip->cmdfunc(mtd, NAND_CMD_RNDOUT,
3218 sizeof(*p) * p->num_of_param_pages , -1);
3219
3220 /* Read out the Extended Parameter Page. */
3221 chip->read_buf(mtd, (uint8_t *)ep, len);
3222 if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2)
3223 != le16_to_cpu(ep->crc))) {
3224 pr_debug("fail in the CRC.\n");
3225 goto ext_out;
3226 }
3227
3228 /*
3229 * Check the signature.
3230 * Do not strictly follow the ONFI spec, maybe changed in future.
3231 */
3232#ifndef __UBOOT__
3233 if (strncmp(ep->sig, "EPPS", 4)) {
3234#else
3235 if (strncmp((char *)ep->sig, "EPPS", 4)) {
3236#endif
3237 pr_debug("The signature is invalid.\n");
3238 goto ext_out;
3239 }
3240
3241 /* find the ECC section. */
3242 cursor = (uint8_t *)(ep + 1);
3243 for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) {
3244 s = ep->sections + i;
3245 if (s->type == ONFI_SECTION_TYPE_2)
3246 break;
3247 cursor += s->length * 16;
3248 }
3249 if (i == ONFI_EXT_SECTION_MAX) {
3250 pr_debug("We can not find the ECC section.\n");
3251 goto ext_out;
3252 }
3253
3254 /* get the info we want. */
3255 ecc = (struct onfi_ext_ecc_info *)cursor;
3256
3257 if (!ecc->codeword_size) {
3258 pr_debug("Invalid codeword size\n");
3259 goto ext_out;
3260 }
3261
3262 chip->ecc_strength_ds = ecc->ecc_bits;
3263 chip->ecc_step_ds = 1 << ecc->codeword_size;
3264 ret = 0;
3265
3266ext_out:
3267 kfree(ep);
3268 return ret;
3269}
3270
3271static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode)
3272{
3273 struct nand_chip *chip = mtd->priv;
3274 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode};
3275
3276 return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY,
3277 feature);
3278}
3279
3280/*
3281 * Configure chip properties from Micron vendor-specific ONFI table
3282 */
3283static void nand_onfi_detect_micron(struct nand_chip *chip,
3284 struct nand_onfi_params *p)
3285{
3286 struct nand_onfi_vendor_micron *micron = (void *)p->vendor;
3287
3288 if (le16_to_cpu(p->vendor_revision) < 1)
3289 return;
3290
3291 chip->read_retries = micron->read_retry_options;
3292 chip->setup_read_retry = nand_setup_read_retry_micron;
3293}
3294
Florian Fainelli0272c712011-02-25 00:01:34 +00003295/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003296 * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise.
Florian Fainelli0272c712011-02-25 00:01:34 +00003297 */
Christian Hitz90e3f392011-10-12 09:32:01 +02003298static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003299 int *busw)
3300{
3301 struct nand_onfi_params *p = &chip->onfi_params;
Brian Norrisb9ae6092014-05-06 00:46:16 +05303302 int i, j;
Florian Fainelli0272c712011-02-25 00:01:34 +00003303 int val;
3304
Sergey Lapindfe64e22013-01-14 03:46:50 +00003305 /* Try ONFI for unknown chip or LP */
Florian Fainelli0272c712011-02-25 00:01:34 +00003306 chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
3307 if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||
3308 chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I')
3309 return 0;
3310
Florian Fainelli0272c712011-02-25 00:01:34 +00003311 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1);
3312 for (i = 0; i < 3; i++) {
Brian Norrisb9ae6092014-05-06 00:46:16 +05303313 for (j = 0; j < sizeof(*p); j++)
3314 ((uint8_t *)p)[j] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00003315 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) ==
Christian Hitz90e3f392011-10-12 09:32:01 +02003316 le16_to_cpu(p->crc)) {
Wolfgang Denkd1a24f02011-02-02 22:36:10 +01003317 break;
Florian Fainelli0272c712011-02-25 00:01:34 +00003318 }
Florian Fainelli3e9b3492010-06-12 20:59:25 +02003319 }
William Juulcfa460a2007-10-31 13:53:06 +01003320
Heiko Schocherff94bc42014-06-24 10:10:04 +02003321 if (i == 3) {
3322 pr_err("Could not find valid ONFI parameter page; aborting\n");
Florian Fainelli0272c712011-02-25 00:01:34 +00003323 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003324 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003325
Sergey Lapindfe64e22013-01-14 03:46:50 +00003326 /* Check version */
Florian Fainelli0272c712011-02-25 00:01:34 +00003327 val = le16_to_cpu(p->revision);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003328 if (val & (1 << 5))
3329 chip->onfi_version = 23;
3330 else if (val & (1 << 4))
Florian Fainelli0272c712011-02-25 00:01:34 +00003331 chip->onfi_version = 22;
3332 else if (val & (1 << 3))
3333 chip->onfi_version = 21;
3334 else if (val & (1 << 2))
3335 chip->onfi_version = 20;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003336 else if (val & (1 << 1))
Florian Fainelli0272c712011-02-25 00:01:34 +00003337 chip->onfi_version = 10;
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003338
3339 if (!chip->onfi_version) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003340 pr_info("unsupported ONFI version: %d\n", val);
Florian Fainelliaad99bb2011-04-03 18:23:56 +02003341 return 0;
3342 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003343
Christian Hitz5454ddb2011-10-12 09:32:05 +02003344 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3345 sanitize_string(p->model, sizeof(p->model));
William Juulcfa460a2007-10-31 13:53:06 +01003346 if (!mtd->name)
Florian Fainelli0272c712011-02-25 00:01:34 +00003347 mtd->name = p->model;
William Juulcfa460a2007-10-31 13:53:06 +01003348
Heiko Schocherff94bc42014-06-24 10:10:04 +02003349 mtd->writesize = le32_to_cpu(p->byte_per_page);
3350
3351 /*
3352 * pages_per_block and blocks_per_lun may not be a power-of-2 size
3353 * (don't ask me who thought of this...). MTD assumes that these
3354 * dimensions will be power-of-2, so just truncate the remaining area.
3355 */
3356 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3357 mtd->erasesize *= mtd->writesize;
3358
3359 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3360
3361 /* See erasesize comment */
3362 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3363 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3364 chip->bits_per_cell = p->bits_per_cell;
3365
3366 if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS)
3367 *busw = NAND_BUSWIDTH_16;
3368 else
3369 *busw = 0;
3370
3371 if (p->ecc_bits != 0xff) {
3372 chip->ecc_strength_ds = p->ecc_bits;
3373 chip->ecc_step_ds = 512;
3374 } else if (chip->onfi_version >= 21 &&
3375 (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) {
3376
3377 /*
3378 * The nand_flash_detect_ext_param_page() uses the
3379 * Change Read Column command which maybe not supported
3380 * by the chip->cmdfunc. So try to update the chip->cmdfunc
3381 * now. We do not replace user supplied command function.
3382 */
3383 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3384 chip->cmdfunc = nand_command_lp;
3385
3386 /* The Extended Parameter Page is supported since ONFI 2.1. */
3387 if (nand_flash_detect_ext_param_page(mtd, chip, p))
3388 pr_warn("Failed to detect ONFI extended param page\n");
3389 } else {
3390 pr_warn("Could not retrieve ONFI ECC requirements\n");
3391 }
3392
3393 if (p->jedec_id == NAND_MFR_MICRON)
3394 nand_onfi_detect_micron(chip, p);
3395
Florian Fainelli0272c712011-02-25 00:01:34 +00003396 return 1;
3397}
3398#else
Heiko Schocherff94bc42014-06-24 10:10:04 +02003399static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003400 int *busw)
3401{
3402 return 0;
3403}
3404#endif
3405
Florian Fainelli0272c712011-02-25 00:01:34 +00003406/*
Heiko Schocher4e67c572014-07-15 16:08:43 +02003407 * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise.
3408 */
3409static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip,
3410 int *busw)
3411{
3412 struct nand_jedec_params *p = &chip->jedec_params;
3413 struct jedec_ecc_info *ecc;
3414 int val;
3415 int i, j;
3416
3417 /* Try JEDEC for unknown chip or LP */
3418 chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1);
3419 if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' ||
3420 chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' ||
3421 chip->read_byte(mtd) != 'C')
3422 return 0;
3423
3424 chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1);
3425 for (i = 0; i < 3; i++) {
3426 for (j = 0; j < sizeof(*p); j++)
3427 ((uint8_t *)p)[j] = chip->read_byte(mtd);
3428
3429 if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) ==
3430 le16_to_cpu(p->crc))
3431 break;
3432 }
3433
3434 if (i == 3) {
3435 pr_err("Could not find valid JEDEC parameter page; aborting\n");
3436 return 0;
3437 }
3438
3439 /* Check version */
3440 val = le16_to_cpu(p->revision);
3441 if (val & (1 << 2))
3442 chip->jedec_version = 10;
3443 else if (val & (1 << 1))
3444 chip->jedec_version = 1; /* vendor specific version */
3445
3446 if (!chip->jedec_version) {
3447 pr_info("unsupported JEDEC version: %d\n", val);
3448 return 0;
3449 }
3450
3451 sanitize_string(p->manufacturer, sizeof(p->manufacturer));
3452 sanitize_string(p->model, sizeof(p->model));
3453 if (!mtd->name)
3454 mtd->name = p->model;
3455
3456 mtd->writesize = le32_to_cpu(p->byte_per_page);
3457
3458 /* Please reference to the comment for nand_flash_detect_onfi. */
3459 mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1);
3460 mtd->erasesize *= mtd->writesize;
3461
3462 mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page);
3463
3464 /* Please reference to the comment for nand_flash_detect_onfi. */
3465 chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1);
3466 chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count;
3467 chip->bits_per_cell = p->bits_per_cell;
3468
3469 if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS)
3470 *busw = NAND_BUSWIDTH_16;
3471 else
3472 *busw = 0;
3473
3474 /* ECC info */
3475 ecc = &p->ecc_info[0];
3476
3477 if (ecc->codeword_size >= 9) {
3478 chip->ecc_strength_ds = ecc->ecc_bits;
3479 chip->ecc_step_ds = 1 << ecc->codeword_size;
3480 } else {
3481 pr_warn("Invalid codeword size\n");
3482 }
3483
3484 return 1;
3485}
3486
3487/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003488 * nand_id_has_period - Check if an ID string has a given wraparound period
3489 * @id_data: the ID string
3490 * @arrlen: the length of the @id_data array
3491 * @period: the period of repitition
3492 *
3493 * Check if an ID string is repeated within a given sequence of bytes at
3494 * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a
Heiko Schocherff94bc42014-06-24 10:10:04 +02003495 * period of 3). This is a helper function for nand_id_len(). Returns non-zero
Sergey Lapindfe64e22013-01-14 03:46:50 +00003496 * if the repetition has a period of @period; otherwise, returns zero.
3497 */
3498static int nand_id_has_period(u8 *id_data, int arrlen, int period)
3499{
3500 int i, j;
3501 for (i = 0; i < period; i++)
3502 for (j = i + period; j < arrlen; j += period)
3503 if (id_data[i] != id_data[j])
3504 return 0;
3505 return 1;
3506}
3507
3508/*
3509 * nand_id_len - Get the length of an ID string returned by CMD_READID
3510 * @id_data: the ID string
3511 * @arrlen: the length of the @id_data array
3512
3513 * Returns the length of the ID string, according to known wraparound/trailing
3514 * zero patterns. If no pattern exists, returns the length of the array.
3515 */
3516static int nand_id_len(u8 *id_data, int arrlen)
3517{
3518 int last_nonzero, period;
3519
3520 /* Find last non-zero byte */
3521 for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--)
3522 if (id_data[last_nonzero])
3523 break;
3524
3525 /* All zeros */
3526 if (last_nonzero < 0)
3527 return 0;
3528
3529 /* Calculate wraparound period */
3530 for (period = 1; period < arrlen; period++)
3531 if (nand_id_has_period(id_data, arrlen, period))
3532 break;
3533
3534 /* There's a repeated pattern */
3535 if (period < arrlen)
3536 return period;
3537
3538 /* There are trailing zeros */
3539 if (last_nonzero < arrlen - 1)
3540 return last_nonzero + 1;
3541
3542 /* No pattern detected */
3543 return arrlen;
3544}
3545
Heiko Schocherff94bc42014-06-24 10:10:04 +02003546/* Extract the bits of per cell from the 3rd byte of the extended ID */
3547static int nand_get_bits_per_cell(u8 cellinfo)
3548{
3549 int bits;
3550
3551 bits = cellinfo & NAND_CI_CELLTYPE_MSK;
3552 bits >>= NAND_CI_CELLTYPE_SHIFT;
3553 return bits + 1;
3554}
3555
Sergey Lapindfe64e22013-01-14 03:46:50 +00003556/*
3557 * Many new NAND share similar device ID codes, which represent the size of the
3558 * chip. The rest of the parameters must be decoded according to generic or
3559 * manufacturer-specific "extended ID" decoding patterns.
3560 */
3561static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip,
3562 u8 id_data[8], int *busw)
3563{
3564 int extid, id_len;
3565 /* The 3rd id byte holds MLC / multichip data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003566 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
Sergey Lapindfe64e22013-01-14 03:46:50 +00003567 /* The 4th id byte is the important one */
3568 extid = id_data[3];
3569
3570 id_len = nand_id_len(id_data, 8);
3571
3572 /*
3573 * Field definitions are in the following datasheets:
3574 * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32)
3575 * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44)
3576 * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22)
3577 *
3578 * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung
3579 * ID to decide what to do.
3580 */
3581 if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003582 !nand_is_slc(chip) && id_data[5] != 0x00) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003583 /* Calc pagesize */
3584 mtd->writesize = 2048 << (extid & 0x03);
3585 extid >>= 2;
3586 /* Calc oobsize */
3587 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3588 case 1:
3589 mtd->oobsize = 128;
3590 break;
3591 case 2:
3592 mtd->oobsize = 218;
3593 break;
3594 case 3:
3595 mtd->oobsize = 400;
3596 break;
3597 case 4:
3598 mtd->oobsize = 436;
3599 break;
3600 case 5:
3601 mtd->oobsize = 512;
3602 break;
3603 case 6:
Sergey Lapindfe64e22013-01-14 03:46:50 +00003604 mtd->oobsize = 640;
3605 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003606 case 7:
3607 default: /* Other cases are "reserved" (unknown) */
3608 mtd->oobsize = 1024;
3609 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003610 }
3611 extid >>= 2;
3612 /* Calc blocksize */
3613 mtd->erasesize = (128 * 1024) <<
3614 (((extid >> 1) & 0x04) | (extid & 0x03));
3615 *busw = 0;
3616 } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX &&
Heiko Schocherff94bc42014-06-24 10:10:04 +02003617 !nand_is_slc(chip)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003618 unsigned int tmp;
3619
3620 /* Calc pagesize */
3621 mtd->writesize = 2048 << (extid & 0x03);
3622 extid >>= 2;
3623 /* Calc oobsize */
3624 switch (((extid >> 2) & 0x04) | (extid & 0x03)) {
3625 case 0:
3626 mtd->oobsize = 128;
3627 break;
3628 case 1:
3629 mtd->oobsize = 224;
3630 break;
3631 case 2:
3632 mtd->oobsize = 448;
3633 break;
3634 case 3:
3635 mtd->oobsize = 64;
3636 break;
3637 case 4:
3638 mtd->oobsize = 32;
3639 break;
3640 case 5:
3641 mtd->oobsize = 16;
3642 break;
3643 default:
3644 mtd->oobsize = 640;
3645 break;
3646 }
3647 extid >>= 2;
3648 /* Calc blocksize */
3649 tmp = ((extid >> 1) & 0x04) | (extid & 0x03);
3650 if (tmp < 0x03)
3651 mtd->erasesize = (128 * 1024) << tmp;
3652 else if (tmp == 0x03)
3653 mtd->erasesize = 768 * 1024;
3654 else
3655 mtd->erasesize = (64 * 1024) << tmp;
3656 *busw = 0;
3657 } else {
3658 /* Calc pagesize */
3659 mtd->writesize = 1024 << (extid & 0x03);
3660 extid >>= 2;
3661 /* Calc oobsize */
3662 mtd->oobsize = (8 << (extid & 0x01)) *
3663 (mtd->writesize >> 9);
3664 extid >>= 2;
3665 /* Calc blocksize. Blocksize is multiples of 64KiB */
3666 mtd->erasesize = (64 * 1024) << (extid & 0x03);
3667 extid >>= 2;
3668 /* Get buswidth information */
3669 *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003670
3671 /*
3672 * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per
3673 * 512B page. For Toshiba SLC, we decode the 5th/6th byte as
3674 * follows:
3675 * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm,
3676 * 110b -> 24nm
3677 * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC
3678 */
3679 if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA &&
3680 nand_is_slc(chip) &&
3681 (id_data[5] & 0x7) == 0x6 /* 24nm */ &&
3682 !(id_data[4] & 0x80) /* !BENAND */) {
3683 mtd->oobsize = 32 * mtd->writesize >> 9;
3684 }
3685
Sergey Lapindfe64e22013-01-14 03:46:50 +00003686 }
3687}
3688
Heiko Schocherff94bc42014-06-24 10:10:04 +02003689/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003690 * Old devices have chip data hardcoded in the device ID table. nand_decode_id
3691 * decodes a matching ID table entry and assigns the MTD size parameters for
3692 * the chip.
3693 */
3694static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003695 struct nand_flash_dev *type, u8 id_data[8],
Sergey Lapindfe64e22013-01-14 03:46:50 +00003696 int *busw)
3697{
3698 int maf_id = id_data[0];
3699
3700 mtd->erasesize = type->erasesize;
3701 mtd->writesize = type->pagesize;
3702 mtd->oobsize = mtd->writesize / 32;
3703 *busw = type->options & NAND_BUSWIDTH_16;
3704
Heiko Schocherff94bc42014-06-24 10:10:04 +02003705 /* All legacy ID NAND are small-page, SLC */
3706 chip->bits_per_cell = 1;
3707
Sergey Lapindfe64e22013-01-14 03:46:50 +00003708 /*
3709 * Check for Spansion/AMD ID + repeating 5th, 6th byte since
3710 * some Spansion chips have erasesize that conflicts with size
3711 * listed in nand_ids table.
3712 * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39)
3713 */
3714 if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00
3715 && id_data[6] == 0x00 && id_data[7] == 0x00
3716 && mtd->writesize == 512) {
3717 mtd->erasesize = 128 * 1024;
3718 mtd->erasesize <<= ((id_data[3] & 0x03) << 1);
3719 }
3720}
3721
Heiko Schocherff94bc42014-06-24 10:10:04 +02003722/*
Sergey Lapindfe64e22013-01-14 03:46:50 +00003723 * Set the bad block marker/indicator (BBM/BBI) patterns according to some
3724 * heuristic patterns using various detected parameters (e.g., manufacturer,
3725 * page size, cell-type information).
3726 */
3727static void nand_decode_bbm_options(struct mtd_info *mtd,
3728 struct nand_chip *chip, u8 id_data[8])
3729{
3730 int maf_id = id_data[0];
3731
3732 /* Set the bad block position */
3733 if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16))
3734 chip->badblockpos = NAND_LARGE_BADBLOCK_POS;
3735 else
3736 chip->badblockpos = NAND_SMALL_BADBLOCK_POS;
3737
3738 /*
3739 * Bad block marker is stored in the last page of each block on Samsung
3740 * and Hynix MLC devices; stored in first two pages of each block on
3741 * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba,
3742 * AMD/Spansion, and Macronix. All others scan only the first page.
3743 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003744 if (!nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003745 (maf_id == NAND_MFR_SAMSUNG ||
3746 maf_id == NAND_MFR_HYNIX))
3747 chip->bbt_options |= NAND_BBT_SCANLASTPAGE;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003748 else if ((nand_is_slc(chip) &&
Sergey Lapindfe64e22013-01-14 03:46:50 +00003749 (maf_id == NAND_MFR_SAMSUNG ||
3750 maf_id == NAND_MFR_HYNIX ||
3751 maf_id == NAND_MFR_TOSHIBA ||
3752 maf_id == NAND_MFR_AMD ||
3753 maf_id == NAND_MFR_MACRONIX)) ||
3754 (mtd->writesize == 2048 &&
3755 maf_id == NAND_MFR_MICRON))
3756 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
3757}
3758
Heiko Schocherff94bc42014-06-24 10:10:04 +02003759static inline bool is_full_id_nand(struct nand_flash_dev *type)
3760{
3761 return type->id_len;
3762}
3763
3764static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip,
3765 struct nand_flash_dev *type, u8 *id_data, int *busw)
3766{
3767#ifndef __UBOOT__
3768 if (!strncmp(type->id, id_data, type->id_len)) {
3769#else
3770 if (!strncmp((char *)type->id, (char *)id_data, type->id_len)) {
3771#endif
3772 mtd->writesize = type->pagesize;
3773 mtd->erasesize = type->erasesize;
3774 mtd->oobsize = type->oobsize;
3775
3776 chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]);
3777 chip->chipsize = (uint64_t)type->chipsize << 20;
3778 chip->options |= type->options;
3779 chip->ecc_strength_ds = NAND_ECC_STRENGTH(type);
3780 chip->ecc_step_ds = NAND_ECC_STEP(type);
3781
3782 *busw = type->options & NAND_BUSWIDTH_16;
3783
3784 if (!mtd->name)
3785 mtd->name = type->name;
3786
3787 return true;
3788 }
3789 return false;
3790}
3791
Sergey Lapindfe64e22013-01-14 03:46:50 +00003792/*
3793 * Get the flash and manufacturer id and lookup if the type is supported.
Florian Fainelli0272c712011-02-25 00:01:34 +00003794 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02003795static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
Florian Fainelli0272c712011-02-25 00:01:34 +00003796 struct nand_chip *chip,
Florian Fainelli0272c712011-02-25 00:01:34 +00003797 int *maf_id, int *dev_id,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003798 struct nand_flash_dev *type)
Florian Fainelli0272c712011-02-25 00:01:34 +00003799{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003800 int busw;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003801 int i, maf_idx;
3802 u8 id_data[8];
Florian Fainelli0272c712011-02-25 00:01:34 +00003803
3804 /* Select the device */
3805 chip->select_chip(mtd, 0);
3806
3807 /*
3808 * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx)
Sergey Lapindfe64e22013-01-14 03:46:50 +00003809 * after power-up.
Florian Fainelli0272c712011-02-25 00:01:34 +00003810 */
3811 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
3812
3813 /* Send the command for reading device ID */
3814 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3815
3816 /* Read manufacturer and device IDs */
3817 *maf_id = chip->read_byte(mtd);
3818 *dev_id = chip->read_byte(mtd);
3819
Sergey Lapindfe64e22013-01-14 03:46:50 +00003820 /*
3821 * Try again to make sure, as some systems the bus-hold or other
Florian Fainelli0272c712011-02-25 00:01:34 +00003822 * interface concerns can cause random data which looks like a
3823 * possibly credible NAND flash to appear. If the two results do
3824 * not match, ignore the device completely.
3825 */
3826
3827 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
3828
Sergey Lapindfe64e22013-01-14 03:46:50 +00003829 /* Read entire ID string */
3830 for (i = 0; i < 8; i++)
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003831 id_data[i] = chip->read_byte(mtd);
Florian Fainelli0272c712011-02-25 00:01:34 +00003832
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003833 if (id_data[0] != *maf_id || id_data[1] != *dev_id) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003834 pr_info("second ID read did not match %02x,%02x against %02x,%02x\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003835 *maf_id, *dev_id, id_data[0], id_data[1]);
Florian Fainelli0272c712011-02-25 00:01:34 +00003836 return ERR_PTR(-ENODEV);
3837 }
3838
3839 if (!type)
3840 type = nand_flash_ids;
3841
Heiko Schocherff94bc42014-06-24 10:10:04 +02003842 for (; type->name != NULL; type++) {
3843 if (is_full_id_nand(type)) {
3844 if (find_full_id_nand(mtd, chip, type, id_data, &busw))
3845 goto ident_done;
3846 } else if (*dev_id == type->dev_id) {
3847 break;
3848 }
3849 }
Florian Fainelli0272c712011-02-25 00:01:34 +00003850
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003851 chip->onfi_version = 0;
3852 if (!type->name || !type->pagesize) {
3853 /* Check is chip is ONFI compliant */
Sergey Lapindfe64e22013-01-14 03:46:50 +00003854 if (nand_flash_detect_onfi(mtd, chip, &busw))
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003855 goto ident_done;
Heiko Schocher4e67c572014-07-15 16:08:43 +02003856
3857 /* Check if the chip is JEDEC compliant */
3858 if (nand_flash_detect_jedec(mtd, chip, &busw))
3859 goto ident_done;
Florian Fainelli0272c712011-02-25 00:01:34 +00003860 }
3861
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003862 if (!type->name)
3863 return ERR_PTR(-ENODEV);
3864
Florian Fainelli0272c712011-02-25 00:01:34 +00003865 if (!mtd->name)
3866 mtd->name = type->name;
3867
3868 chip->chipsize = (uint64_t)type->chipsize << 20;
Florian Fainelli0272c712011-02-25 00:01:34 +00003869
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003870 if (!type->pagesize && chip->init_size) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003871 /* Set the pagesize, oobsize, erasesize by the driver */
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003872 busw = chip->init_size(mtd, chip, id_data);
3873 } else if (!type->pagesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003874 /* Decode parameters from extended ID */
3875 nand_decode_ext_id(mtd, chip, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003876 } else {
Sergey Lapindfe64e22013-01-14 03:46:50 +00003877 nand_decode_id(mtd, chip, type, id_data, &busw);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003878 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02003879 /* Get chip options */
Marek Vasut9c790a72012-08-30 13:39:38 +00003880 chip->options |= type->options;
Florian Fainelli0272c712011-02-25 00:01:34 +00003881
Sergey Lapindfe64e22013-01-14 03:46:50 +00003882 /*
3883 * Check if chip is not a Samsung device. Do not clear the
3884 * options for chips which do not have an extended id.
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003885 */
3886 if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize)
3887 chip->options &= ~NAND_SAMSUNG_LP_OPTIONS;
3888ident_done:
3889
William Juulcfa460a2007-10-31 13:53:06 +01003890 /* Try to identify manufacturer */
3891 for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
3892 if (nand_manuf_ids[maf_idx].id == *maf_id)
3893 break;
3894 }
3895
Heiko Schocherff94bc42014-06-24 10:10:04 +02003896 if (chip->options & NAND_BUSWIDTH_AUTO) {
3897 WARN_ON(chip->options & NAND_BUSWIDTH_16);
3898 chip->options |= busw;
3899 nand_set_defaults(chip, busw);
3900 } else if (busw != (chip->options & NAND_BUSWIDTH_16)) {
3901 /*
3902 * Check, if buswidth is correct. Hardware drivers should set
3903 * chip correct!
3904 */
3905 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3906 *maf_id, *dev_id);
3907 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name);
3908 pr_warn("bus width %d instead %d bit\n",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003909 (chip->options & NAND_BUSWIDTH_16) ? 16 : 8,
3910 busw ? 16 : 8);
William Juulcfa460a2007-10-31 13:53:06 +01003911 return ERR_PTR(-EINVAL);
3912 }
3913
Sergey Lapindfe64e22013-01-14 03:46:50 +00003914 nand_decode_bbm_options(mtd, chip, id_data);
3915
William Juulcfa460a2007-10-31 13:53:06 +01003916 /* Calculate the address shift from the page size */
3917 chip->page_shift = ffs(mtd->writesize) - 1;
Sergey Lapindfe64e22013-01-14 03:46:50 +00003918 /* Convert chipsize to number of pages per chip -1 */
William Juulcfa460a2007-10-31 13:53:06 +01003919 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
3920
3921 chip->bbt_erase_shift = chip->phys_erase_shift =
3922 ffs(mtd->erasesize) - 1;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -04003923 if (chip->chipsize & 0xffffffff)
Sandeep Paulraj4f41e7e2009-11-07 14:24:06 -05003924 chip->chip_shift = ffs((unsigned)chip->chipsize) - 1;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003925 else {
3926 chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32));
3927 chip->chip_shift += 32 - 1;
3928 }
3929
3930 chip->badblockbits = 8;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003931 chip->erase_cmd = single_erase_cmd;
William Juulcfa460a2007-10-31 13:53:06 +01003932
Sergey Lapindfe64e22013-01-14 03:46:50 +00003933 /* Do not replace user supplied command function! */
William Juulcfa460a2007-10-31 13:53:06 +01003934 if (mtd->writesize > 512 && chip->cmdfunc == nand_command)
3935 chip->cmdfunc = nand_command_lp;
3936
Heiko Schocherff94bc42014-06-24 10:10:04 +02003937 pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n",
3938 *maf_id, *dev_id);
Heiko Schocher4e67c572014-07-15 16:08:43 +02003939
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003940#ifdef CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocher4e67c572014-07-15 16:08:43 +02003941 if (chip->onfi_version)
3942 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3943 chip->onfi_params.model);
3944 else if (chip->jedec_version)
3945 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3946 chip->jedec_params.model);
3947 else
3948 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3949 type->name);
Heiko Schocherff94bc42014-06-24 10:10:04 +02003950#else
Heiko Schocher4e67c572014-07-15 16:08:43 +02003951 if (chip->jedec_version)
3952 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3953 chip->jedec_params.model);
3954 else
3955 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3956 type->name);
3957
3958 pr_info("%s %s\n", nand_manuf_ids[maf_idx].name,
3959 type->name);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02003960#endif
Heiko Schocher4e67c572014-07-15 16:08:43 +02003961
Heiko Schocherff94bc42014-06-24 10:10:04 +02003962 pr_info("%dMiB, %s, page size: %d, OOB size: %d\n",
3963 (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC",
Sergey Lapindfe64e22013-01-14 03:46:50 +00003964 mtd->writesize, mtd->oobsize);
William Juulcfa460a2007-10-31 13:53:06 +01003965 return type;
3966}
3967
3968/**
3969 * nand_scan_ident - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00003970 * @mtd: MTD device structure
3971 * @maxchips: number of chips to scan for
3972 * @table: alternative NAND ID table
William Juulcfa460a2007-10-31 13:53:06 +01003973 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00003974 * This is the first phase of the normal nand_scan() function. It reads the
3975 * flash ID and sets up MTD fields accordingly.
William Juulcfa460a2007-10-31 13:53:06 +01003976 *
3977 * The mtd->owner field must be set to the module of the caller.
3978 */
Lei Wen245eb902011-01-06 09:48:18 +08003979int nand_scan_ident(struct mtd_info *mtd, int maxchips,
Heiko Schocherff94bc42014-06-24 10:10:04 +02003980 struct nand_flash_dev *table)
William Juulcfa460a2007-10-31 13:53:06 +01003981{
Heiko Schocher4e67c572014-07-15 16:08:43 +02003982 int i, nand_maf_id, nand_dev_id;
William Juulcfa460a2007-10-31 13:53:06 +01003983 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02003984 struct nand_flash_dev *type;
William Juulcfa460a2007-10-31 13:53:06 +01003985
William Juulcfa460a2007-10-31 13:53:06 +01003986 /* Set the default functions */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003987 nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16);
William Juulcfa460a2007-10-31 13:53:06 +01003988
3989 /* Read the flash type */
Heiko Schocher4e67c572014-07-15 16:08:43 +02003990 type = nand_get_flash_type(mtd, chip, &nand_maf_id,
3991 &nand_dev_id, table);
William Juulcfa460a2007-10-31 13:53:06 +01003992
3993 if (IS_ERR(type)) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02003994 if (!(chip->options & NAND_SCAN_SILENT_NODEV))
3995 pr_warn("No NAND device found\n");
William Juulcfa460a2007-10-31 13:53:06 +01003996 chip->select_chip(mtd, -1);
3997 return PTR_ERR(type);
3998 }
3999
Heiko Schocherff94bc42014-06-24 10:10:04 +02004000 chip->select_chip(mtd, -1);
4001
William Juulcfa460a2007-10-31 13:53:06 +01004002 /* Check for a chip array */
4003 for (i = 1; i < maxchips; i++) {
4004 chip->select_chip(mtd, i);
Karl Beldan33efde52008-09-15 16:08:03 +02004005 /* See comment in nand_get_flash_type for reset */
4006 chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004007 /* Send the command for reading device ID */
4008 chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1);
4009 /* Read manufacturer and device IDs */
4010 if (nand_maf_id != chip->read_byte(mtd) ||
Heiko Schocherff94bc42014-06-24 10:10:04 +02004011 nand_dev_id != chip->read_byte(mtd)) {
4012 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004013 break;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004014 }
4015 chip->select_chip(mtd, -1);
William Juulcfa460a2007-10-31 13:53:06 +01004016 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004017
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01004018#ifdef DEBUG
William Juulcfa460a2007-10-31 13:53:06 +01004019 if (i > 1)
Heiko Schocherff94bc42014-06-24 10:10:04 +02004020 pr_info("%d chips detected\n", i);
Wolfgang Grandegger672ed2a2009-02-11 18:38:20 +01004021#endif
William Juulcfa460a2007-10-31 13:53:06 +01004022
4023 /* Store the number of chips and calc total size for mtd */
4024 chip->numchips = i;
4025 mtd->size = i * chip->chipsize;
4026
4027 return 0;
4028}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004029EXPORT_SYMBOL(nand_scan_ident);
William Juulcfa460a2007-10-31 13:53:06 +01004030
4031
4032/**
4033 * nand_scan_tail - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004034 * @mtd: MTD device structure
William Juulcfa460a2007-10-31 13:53:06 +01004035 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00004036 * This is the second phase of the normal nand_scan() function. It fills out
4037 * all the uninitialized function pointers with the defaults and scans for a
4038 * bad block table if appropriate.
William Juulcfa460a2007-10-31 13:53:06 +01004039 */
4040int nand_scan_tail(struct mtd_info *mtd)
4041{
4042 int i;
4043 struct nand_chip *chip = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004044 struct nand_ecc_ctrl *ecc = &chip->ecc;
Heiko Schocher4e67c572014-07-15 16:08:43 +02004045 struct nand_buffers *nbuf;
William Juulcfa460a2007-10-31 13:53:06 +01004046
Sergey Lapindfe64e22013-01-14 03:46:50 +00004047 /* New bad blocks should be marked in OOB, flash-based BBT, or both */
4048 BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) &&
4049 !(chip->bbt_options & NAND_BBT_USE_FLASH));
4050
Heiko Schocher4e67c572014-07-15 16:08:43 +02004051 if (!(chip->options & NAND_OWN_BUFFERS)) {
4052#ifndef __UBOOT__
4053 nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize
4054 + mtd->oobsize * 3, GFP_KERNEL);
4055 if (!nbuf)
4056 return -ENOMEM;
4057 nbuf->ecccalc = (uint8_t *)(nbuf + 1);
4058 nbuf->ecccode = nbuf->ecccalc + mtd->oobsize;
4059 nbuf->databuf = nbuf->ecccode + mtd->oobsize;
4060#else
4061 nbuf = kzalloc(sizeof(struct nand_buffers), GFP_KERNEL);
4062#endif
4063
4064 chip->buffers = nbuf;
4065 } else {
4066 if (!chip->buffers)
4067 return -ENOMEM;
4068 }
William Juulcfa460a2007-10-31 13:53:06 +01004069
4070 /* Set the internal oob buffer location, just after the page data */
4071 chip->oob_poi = chip->buffers->databuf + mtd->writesize;
4072
4073 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00004074 * If no default placement scheme is given, select an appropriate one.
William Juulcfa460a2007-10-31 13:53:06 +01004075 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004076 if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) {
William Juulcfa460a2007-10-31 13:53:06 +01004077 switch (mtd->oobsize) {
4078 case 8:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004079 ecc->layout = &nand_oob_8;
William Juulcfa460a2007-10-31 13:53:06 +01004080 break;
4081 case 16:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004082 ecc->layout = &nand_oob_16;
William Juulcfa460a2007-10-31 13:53:06 +01004083 break;
4084 case 64:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004085 ecc->layout = &nand_oob_64;
William Juulcfa460a2007-10-31 13:53:06 +01004086 break;
4087 case 128:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004088 ecc->layout = &nand_oob_128;
William Juulcfa460a2007-10-31 13:53:06 +01004089 break;
4090 default:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004091 pr_warn("No oob scheme defined for oobsize %d\n",
4092 mtd->oobsize);
Heiko Schocherff94bc42014-06-24 10:10:04 +02004093 BUG();
William Juulcfa460a2007-10-31 13:53:06 +01004094 }
4095 }
4096
4097 if (!chip->write_page)
4098 chip->write_page = nand_write_page;
4099
4100 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +00004101 * Check ECC mode, default to software if 3byte/512byte hardware ECC is
William Juulcfa460a2007-10-31 13:53:06 +01004102 * selected and we have 256 byte pagesize fallback to software ECC
4103 */
William Juulcfa460a2007-10-31 13:53:06 +01004104
Heiko Schocherff94bc42014-06-24 10:10:04 +02004105 switch (ecc->mode) {
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004106 case NAND_ECC_HW_OOB_FIRST:
4107 /* Similar to NAND_ECC_HW, but a separate read_page handle */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004108 if (!ecc->calculate || !ecc->correct || !ecc->hwctl) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004109 pr_warn("No ECC functions supplied; "
4110 "hardware ECC not possible\n");
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004111 BUG();
4112 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004113 if (!ecc->read_page)
4114 ecc->read_page = nand_read_page_hwecc_oob_first;
Sandeep Paulrajf83b7f92009-08-10 13:27:56 -04004115
William Juulcfa460a2007-10-31 13:53:06 +01004116 case NAND_ECC_HW:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004117 /* Use standard hwecc read page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004118 if (!ecc->read_page)
4119 ecc->read_page = nand_read_page_hwecc;
4120 if (!ecc->write_page)
4121 ecc->write_page = nand_write_page_hwecc;
4122 if (!ecc->read_page_raw)
4123 ecc->read_page_raw = nand_read_page_raw;
4124 if (!ecc->write_page_raw)
4125 ecc->write_page_raw = nand_write_page_raw;
4126 if (!ecc->read_oob)
4127 ecc->read_oob = nand_read_oob_std;
4128 if (!ecc->write_oob)
4129 ecc->write_oob = nand_write_oob_std;
4130 if (!ecc->read_subpage)
4131 ecc->read_subpage = nand_read_subpage;
4132 if (!ecc->write_subpage)
4133 ecc->write_subpage = nand_write_subpage_hwecc;
William Juulcfa460a2007-10-31 13:53:06 +01004134
4135 case NAND_ECC_HW_SYNDROME:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004136 if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) &&
4137 (!ecc->read_page ||
4138 ecc->read_page == nand_read_page_hwecc ||
4139 !ecc->write_page ||
4140 ecc->write_page == nand_write_page_hwecc)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004141 pr_warn("No ECC functions supplied; "
4142 "hardware ECC not possible\n");
William Juulcfa460a2007-10-31 13:53:06 +01004143 BUG();
4144 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00004145 /* Use standard syndrome read/write page function? */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004146 if (!ecc->read_page)
4147 ecc->read_page = nand_read_page_syndrome;
4148 if (!ecc->write_page)
4149 ecc->write_page = nand_write_page_syndrome;
4150 if (!ecc->read_page_raw)
4151 ecc->read_page_raw = nand_read_page_raw_syndrome;
4152 if (!ecc->write_page_raw)
4153 ecc->write_page_raw = nand_write_page_raw_syndrome;
4154 if (!ecc->read_oob)
4155 ecc->read_oob = nand_read_oob_syndrome;
4156 if (!ecc->write_oob)
4157 ecc->write_oob = nand_write_oob_syndrome;
William Juulcfa460a2007-10-31 13:53:06 +01004158
Heiko Schocherff94bc42014-06-24 10:10:04 +02004159 if (mtd->writesize >= ecc->size) {
4160 if (!ecc->strength) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004161 pr_warn("Driver must set ecc.strength when using hardware ECC\n");
4162 BUG();
4163 }
William Juulcfa460a2007-10-31 13:53:06 +01004164 break;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004165 }
4166 pr_warn("%d byte HW ECC not possible on "
4167 "%d byte page size, fallback to SW ECC\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +02004168 ecc->size, mtd->writesize);
4169 ecc->mode = NAND_ECC_SOFT;
William Juulcfa460a2007-10-31 13:53:06 +01004170
4171 case NAND_ECC_SOFT:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004172 ecc->calculate = nand_calculate_ecc;
4173 ecc->correct = nand_correct_data;
4174 ecc->read_page = nand_read_page_swecc;
4175 ecc->read_subpage = nand_read_subpage;
4176 ecc->write_page = nand_write_page_swecc;
4177 ecc->read_page_raw = nand_read_page_raw;
4178 ecc->write_page_raw = nand_write_page_raw;
4179 ecc->read_oob = nand_read_oob_std;
4180 ecc->write_oob = nand_write_oob_std;
4181 if (!ecc->size)
4182 ecc->size = 256;
4183 ecc->bytes = 3;
4184 ecc->strength = 1;
William Juulcfa460a2007-10-31 13:53:06 +01004185 break;
4186
Christian Hitz4c6de852011-10-12 09:31:59 +02004187 case NAND_ECC_SOFT_BCH:
4188 if (!mtd_nand_has_bch()) {
Heiko Schocher4e67c572014-07-15 16:08:43 +02004189 pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02004190 BUG();
Christian Hitz4c6de852011-10-12 09:31:59 +02004191 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004192 ecc->calculate = nand_bch_calculate_ecc;
4193 ecc->correct = nand_bch_correct_data;
4194 ecc->read_page = nand_read_page_swecc;
4195 ecc->read_subpage = nand_read_subpage;
4196 ecc->write_page = nand_write_page_swecc;
4197 ecc->read_page_raw = nand_read_page_raw;
4198 ecc->write_page_raw = nand_write_page_raw;
4199 ecc->read_oob = nand_read_oob_std;
4200 ecc->write_oob = nand_write_oob_std;
Christian Hitz4c6de852011-10-12 09:31:59 +02004201 /*
4202 * Board driver should supply ecc.size and ecc.bytes values to
4203 * select how many bits are correctable; see nand_bch_init()
Sergey Lapindfe64e22013-01-14 03:46:50 +00004204 * for details. Otherwise, default to 4 bits for large page
4205 * devices.
Christian Hitz4c6de852011-10-12 09:31:59 +02004206 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004207 if (!ecc->size && (mtd->oobsize >= 64)) {
4208 ecc->size = 512;
4209 ecc->bytes = 7;
Christian Hitz4c6de852011-10-12 09:31:59 +02004210 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004211 ecc->priv = nand_bch_init(mtd, ecc->size, ecc->bytes,
4212 &ecc->layout);
4213 if (!ecc->priv) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004214 pr_warn("BCH ECC initialization failed!\n");
Heiko Schocherff94bc42014-06-24 10:10:04 +02004215 BUG();
4216 }
4217 ecc->strength = ecc->bytes * 8 / fls(8 * ecc->size);
Christian Hitz4c6de852011-10-12 09:31:59 +02004218 break;
4219
William Juulcfa460a2007-10-31 13:53:06 +01004220 case NAND_ECC_NONE:
Sergey Lapindfe64e22013-01-14 03:46:50 +00004221 pr_warn("NAND_ECC_NONE selected by board driver. "
Heiko Schocherff94bc42014-06-24 10:10:04 +02004222 "This is not recommended!\n");
4223 ecc->read_page = nand_read_page_raw;
4224 ecc->write_page = nand_write_page_raw;
4225 ecc->read_oob = nand_read_oob_std;
4226 ecc->read_page_raw = nand_read_page_raw;
4227 ecc->write_page_raw = nand_write_page_raw;
4228 ecc->write_oob = nand_write_oob_std;
4229 ecc->size = mtd->writesize;
4230 ecc->bytes = 0;
4231 ecc->strength = 0;
William Juulcfa460a2007-10-31 13:53:06 +01004232 break;
4233
4234 default:
Heiko Schocherff94bc42014-06-24 10:10:04 +02004235 pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode);
William Juulcfa460a2007-10-31 13:53:06 +01004236 BUG();
4237 }
4238
Sergey Lapindfe64e22013-01-14 03:46:50 +00004239 /* For many systems, the standard OOB write also works for raw */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004240 if (!ecc->read_oob_raw)
4241 ecc->read_oob_raw = ecc->read_oob;
4242 if (!ecc->write_oob_raw)
4243 ecc->write_oob_raw = ecc->write_oob;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004244
William Juulcfa460a2007-10-31 13:53:06 +01004245 /*
4246 * The number of bytes available for a client to place data into
Sergey Lapindfe64e22013-01-14 03:46:50 +00004247 * the out of band area.
William Juulcfa460a2007-10-31 13:53:06 +01004248 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004249 ecc->layout->oobavail = 0;
4250 for (i = 0; ecc->layout->oobfree[i].length
4251 && i < ARRAY_SIZE(ecc->layout->oobfree); i++)
4252 ecc->layout->oobavail += ecc->layout->oobfree[i].length;
4253 mtd->oobavail = ecc->layout->oobavail;
William Juulcfa460a2007-10-31 13:53:06 +01004254
4255 /*
4256 * Set the number of read / write steps for one page depending on ECC
Sergey Lapindfe64e22013-01-14 03:46:50 +00004257 * mode.
William Juulcfa460a2007-10-31 13:53:06 +01004258 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004259 ecc->steps = mtd->writesize / ecc->size;
4260 if (ecc->steps * ecc->size != mtd->writesize) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00004261 pr_warn("Invalid ECC parameters\n");
William Juulcfa460a2007-10-31 13:53:06 +01004262 BUG();
4263 }
Heiko Schocherff94bc42014-06-24 10:10:04 +02004264 ecc->total = ecc->steps * ecc->bytes;
William Juulcfa460a2007-10-31 13:53:06 +01004265
Sergey Lapindfe64e22013-01-14 03:46:50 +00004266 /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004267 if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) {
4268 switch (ecc->steps) {
William Juulcfa460a2007-10-31 13:53:06 +01004269 case 2:
4270 mtd->subpage_sft = 1;
4271 break;
4272 case 4:
4273 case 8:
Sandeep Paulrajaad4a282009-11-07 14:24:34 -05004274 case 16:
William Juulcfa460a2007-10-31 13:53:06 +01004275 mtd->subpage_sft = 2;
4276 break;
4277 }
4278 }
4279 chip->subpagesize = mtd->writesize >> mtd->subpage_sft;
4280
4281 /* Initialize state */
4282 chip->state = FL_READY;
4283
William Juulcfa460a2007-10-31 13:53:06 +01004284 /* Invalidate the pagebuffer reference */
4285 chip->pagebuf = -1;
4286
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00004287 /* Large page NAND with SOFT_ECC should support subpage reads */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004288 if ((ecc->mode == NAND_ECC_SOFT) && (chip->page_shift > 9))
Joe Hershbergerc788ecf2012-11-05 06:46:31 +00004289 chip->options |= NAND_SUBPAGE_READ;
4290
William Juulcfa460a2007-10-31 13:53:06 +01004291 /* Fill in remaining MTD driver data */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004292 mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH;
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02004293 mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM :
4294 MTD_CAP_NANDFLASH;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004295 mtd->_erase = nand_erase;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004296#ifndef __UBOOT__
Sergey Lapindfe64e22013-01-14 03:46:50 +00004297 mtd->_point = NULL;
4298 mtd->_unpoint = NULL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004299#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00004300 mtd->_read = nand_read;
4301 mtd->_write = nand_write;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004302 mtd->_panic_write = panic_nand_write;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004303 mtd->_read_oob = nand_read_oob;
4304 mtd->_write_oob = nand_write_oob;
4305 mtd->_sync = nand_sync;
4306 mtd->_lock = NULL;
4307 mtd->_unlock = NULL;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004308#ifndef __UBOOT__
4309 mtd->_suspend = nand_suspend;
4310 mtd->_resume = nand_resume;
4311#endif
Sergey Lapindfe64e22013-01-14 03:46:50 +00004312 mtd->_block_isbad = nand_block_isbad;
4313 mtd->_block_markbad = nand_block_markbad;
Heiko Schocherff94bc42014-06-24 10:10:04 +02004314 mtd->writebufsize = mtd->writesize;
William Juulcfa460a2007-10-31 13:53:06 +01004315
Sergey Lapindfe64e22013-01-14 03:46:50 +00004316 /* propagate ecc info to mtd_info */
Heiko Schocherff94bc42014-06-24 10:10:04 +02004317 mtd->ecclayout = ecc->layout;
4318 mtd->ecc_strength = ecc->strength;
4319 mtd->ecc_step_size = ecc->size;
Sergey Lapindfe64e22013-01-14 03:46:50 +00004320 /*
4321 * Initialize bitflip_threshold to its default prior scan_bbt() call.
4322 * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be
4323 * properly set.
4324 */
4325 if (!mtd->bitflip_threshold)
4326 mtd->bitflip_threshold = mtd->ecc_strength;
William Juulcfa460a2007-10-31 13:53:06 +01004327
4328 /* Check, if we should skip the bad block table scan */
4329 if (chip->options & NAND_SKIP_BBTSCAN)
Rostislav Lisovy35c204d2014-10-22 13:40:44 +02004330 chip->options |= NAND_BBT_SCANNED;
William Juulcfa460a2007-10-31 13:53:06 +01004331
Rostislav Lisovy35c204d2014-10-22 13:40:44 +02004332 return 0;
William Juulcfa460a2007-10-31 13:53:06 +01004333}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004334EXPORT_SYMBOL(nand_scan_tail);
4335
4336/*
4337 * is_module_text_address() isn't exported, and it's mostly a pointless
4338 * test if this is a module _anyway_ -- they'd have to try _really_ hard
4339 * to call us from in-kernel code if the core NAND support is modular.
4340 */
4341#ifdef MODULE
4342#define caller_is_module() (1)
4343#else
4344#define caller_is_module() \
4345 is_module_text_address((unsigned long)__builtin_return_address(0))
4346#endif
William Juulcfa460a2007-10-31 13:53:06 +01004347
William Juulcfa460a2007-10-31 13:53:06 +01004348/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02004349 * nand_scan - [NAND Interface] Scan for the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004350 * @mtd: MTD device structure
4351 * @maxchips: number of chips to scan for
Wolfgang Denk932394a2005-08-17 12:55:25 +02004352 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00004353 * This fills out all the uninitialized function pointers with the defaults.
4354 * The flash ID is read and the mtd/chip structures are filled with the
4355 * appropriate values. The mtd->owner field must be set to the module of the
4356 * caller.
Wolfgang Denk932394a2005-08-17 12:55:25 +02004357 */
William Juulcfa460a2007-10-31 13:53:06 +01004358int nand_scan(struct mtd_info *mtd, int maxchips)
Wolfgang Denk932394a2005-08-17 12:55:25 +02004359{
William Juulcfa460a2007-10-31 13:53:06 +01004360 int ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004361
Heiko Schocherff94bc42014-06-24 10:10:04 +02004362 /* Many callers got this wrong, so check for it for a while... */
4363 if (!mtd->owner && caller_is_module()) {
4364 pr_crit("%s called with NULL mtd->owner!\n", __func__);
4365 BUG();
4366 }
4367
Lei Wen245eb902011-01-06 09:48:18 +08004368 ret = nand_scan_ident(mtd, maxchips, NULL);
William Juulcfa460a2007-10-31 13:53:06 +01004369 if (!ret)
4370 ret = nand_scan_tail(mtd);
4371 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004372}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004373EXPORT_SYMBOL(nand_scan);
Wolfgang Denk932394a2005-08-17 12:55:25 +02004374
Heiko Schocherff94bc42014-06-24 10:10:04 +02004375#ifndef __UBOOT__
Wolfgang Denk932394a2005-08-17 12:55:25 +02004376/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02004377 * nand_release - [NAND Interface] Free resources held by the NAND device
Sergey Lapindfe64e22013-01-14 03:46:50 +00004378 * @mtd: MTD device structure
4379 */
William Juulcfa460a2007-10-31 13:53:06 +01004380void nand_release(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02004381{
William Juulcfa460a2007-10-31 13:53:06 +01004382 struct nand_chip *chip = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +02004383
Christian Hitz4c6de852011-10-12 09:31:59 +02004384 if (chip->ecc.mode == NAND_ECC_SOFT_BCH)
4385 nand_bch_free((struct nand_bch_control *)chip->ecc.priv);
4386
Heiko Schocherff94bc42014-06-24 10:10:04 +02004387 mtd_device_unregister(mtd);
William Juulcfa460a2007-10-31 13:53:06 +01004388
4389 /* Free bad block table memory */
4390 kfree(chip->bbt);
4391 if (!(chip->options & NAND_OWN_BUFFERS))
4392 kfree(chip->buffers);
Christian Hitz2a8e0fc2011-10-12 09:32:02 +02004393
4394 /* Free bad block descriptor memory */
4395 if (chip->badblock_pattern && chip->badblock_pattern->options
4396 & NAND_BBT_DYNAMICSTRUCT)
4397 kfree(chip->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02004398}
Heiko Schocherff94bc42014-06-24 10:10:04 +02004399EXPORT_SYMBOL_GPL(nand_release);
4400
4401static int __init nand_base_init(void)
4402{
4403 led_trigger_register_simple("nand-disk", &nand_led_trigger);
4404 return 0;
4405}
4406
4407static void __exit nand_base_exit(void)
4408{
4409 led_trigger_unregister_simple(nand_led_trigger);
4410}
4411#endif
4412
4413module_init(nand_base_init);
4414module_exit(nand_base_exit);
4415
4416MODULE_LICENSE("GPL");
4417MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>");
4418MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>");
4419MODULE_DESCRIPTION("Generic NAND flash driver code");