blob: cf4a82d93a929904560ebaad71c0be5018a04c10 [file] [log] [blame]
Wolfgang Denk932394a2005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02006 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00007 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk932394a2005-08-17 12:55:25 +02008 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Description:
14 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020015 * When nand_scan_bbt is called, then it tries to find the bad block table
Christian Hitzff8a8a72011-10-12 09:32:04 +020016 * depending on the options in the BBT descriptor(s). If no flash based BBT
Sergey Lapindfe64e22013-01-14 03:46:50 +000017 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Christian Hitzff8a8a72011-10-12 09:32:04 +020018 * marked good / bad blocks. This information is used to create a memory BBT.
19 * Once a new bad block is discovered then the "factory" information is updated
20 * on the device.
21 * If a flash based BBT is specified then the function first tries to find the
22 * BBT on flash. If a BBT is found then the contents are read and the memory
23 * based BBT is created. If a mirrored BBT is selected then the mirror is
24 * searched too and the versions are compared. If the mirror has a greater
Sergey Lapindfe64e22013-01-14 03:46:50 +000025 * version number, then the mirror BBT is used to build the memory based BBT.
Wolfgang Denk932394a2005-08-17 12:55:25 +020026 * If the tables are not versioned, then we "or" the bad block information.
Christian Hitzff8a8a72011-10-12 09:32:04 +020027 * If one of the BBTs is out of date or does not exist it is (re)created.
28 * If no BBT exists at all then the device is scanned for factory marked
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020029 * good / bad blocks and the bad block tables are created.
Wolfgang Denk932394a2005-08-17 12:55:25 +020030 *
Christian Hitzff8a8a72011-10-12 09:32:04 +020031 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
Wolfgang Denk932394a2005-08-17 12:55:25 +020033 *
Christian Hitzff8a8a72011-10-12 09:32:04 +020034 * The auto generated bad block table is located in the last good blocks
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020035 * of the device. The table is mirrored, so it can be updated eventually.
Christian Hitzff8a8a72011-10-12 09:32:04 +020036 * The table is marked in the OOB area with an ident pattern and a version
37 * number which indicates which of both tables is more up to date. If the NAND
38 * controller needs the complete OOB area for the ECC information then the
Sergey Lapindfe64e22013-01-14 03:46:50 +000039 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
40 * course): it moves the ident pattern and the version byte into the data area
41 * and the OOB area will remain untouched.
Wolfgang Denk932394a2005-08-17 12:55:25 +020042 *
43 * The table uses 2 bits per block
Christian Hitzff8a8a72011-10-12 09:32:04 +020044 * 11b: block is good
45 * 00b: block is factory marked bad
Wolfgang Denk53677ef2008-05-20 16:00:29 +020046 * 01b, 10b: block is marked bad due to wear
Wolfgang Denk932394a2005-08-17 12:55:25 +020047 *
48 * The memory bad block table uses the following scheme:
49 * 00b: block is good
50 * 01b: block is marked bad due to wear
51 * 10b: block is reserved (to protect the bbt area)
52 * 11b: block is factory marked bad
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020053 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020054 * Multichip devices like DOC store the bad block info per floor.
55 *
56 * Following assumptions are made:
57 * - bbts start at a page boundary, if autolocated on a block boundary
William Juulcfa460a2007-10-31 13:53:06 +010058 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020059 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020060 */
61
Heiko Schocherff94bc42014-06-24 10:10:04 +020062#ifndef __UBOOT__
63#include <linux/slab.h>
64#include <linux/types.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020065#include <linux/mtd/mtd.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000066#include <linux/mtd/bbm.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020067#include <linux/mtd/nand.h>
Christian Hitzff8a8a72011-10-12 09:32:04 +020068#include <linux/mtd/nand_ecc.h>
69#include <linux/bitops.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020070#include <linux/delay.h>
71#include <linux/vmalloc.h>
72#include <linux/export.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000073#include <linux/string.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020074#else
75#include <common.h>
76#include <malloc.h>
77#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020078
Heiko Schocherff94bc42014-06-24 10:10:04 +020079 #include <linux/mtd/mtd.h>
80 #include <linux/mtd/bbm.h>
81 #include <linux/mtd/nand.h>
82 #include <linux/mtd/nand_ecc.h>
83 #include <linux/bitops.h>
84 #include <linux/string.h>
85#endif
86
87#define BBT_BLOCK_GOOD 0x00
88#define BBT_BLOCK_WORN 0x01
89#define BBT_BLOCK_RESERVED 0x02
90#define BBT_BLOCK_FACTORY_BAD 0x03
91
92#define BBT_ENTRY_MASK 0x03
93#define BBT_ENTRY_SHIFT 2
94
95static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
96
97static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
98{
99 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
100 entry >>= (block & BBT_ENTRY_MASK) * 2;
101 return entry & BBT_ENTRY_MASK;
102}
103
104static inline void bbt_mark_entry(struct nand_chip *chip, int block,
105 uint8_t mark)
106{
107 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
108 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
109}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200110
Christian Hitzff8a8a72011-10-12 09:32:04 +0200111static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
112{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000113 if (memcmp(buf, td->pattern, td->len))
114 return -1;
115 return 0;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200116}
117
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200118/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200119 * check_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000120 * @buf: the buffer to search
121 * @len: the length of buffer to search
122 * @paglen: the pagelength
123 * @td: search pattern descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200124 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000125 * Check for a pattern at the given place. Used to search bad block tables and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200126 * good / bad block identifiers.
Sergey Lapindfe64e22013-01-14 03:46:50 +0000127 */
William Juulcfa460a2007-10-31 13:53:06 +0100128static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200129{
Christian Hitzff8a8a72011-10-12 09:32:04 +0200130 if (td->options & NAND_BBT_NO_OOB)
131 return check_pattern_no_oob(buf, td);
132
Wolfgang Denk932394a2005-08-17 12:55:25 +0200133 /* Compare the pattern */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200134 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Sergey Lapindfe64e22013-01-14 03:46:50 +0000135 return -1;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200136
Wolfgang Denk932394a2005-08-17 12:55:25 +0200137 return 0;
138}
139
140/**
William Juulcfa460a2007-10-31 13:53:06 +0100141 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000142 * @buf: the buffer to search
143 * @td: search pattern descriptor
William Juulcfa460a2007-10-31 13:53:06 +0100144 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000145 * Check for a pattern at the given place. Used to search bad block tables and
146 * good / bad block identifiers. Same as check_pattern, but no optional empty
147 * check.
148 */
William Juulcfa460a2007-10-31 13:53:06 +0100149static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
150{
William Juulcfa460a2007-10-31 13:53:06 +0100151 /* Compare the pattern */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000152 if (memcmp(buf + td->offs, td->pattern, td->len))
153 return -1;
William Juulcfa460a2007-10-31 13:53:06 +0100154 return 0;
155}
156
157/**
Christian Hitzff8a8a72011-10-12 09:32:04 +0200158 * add_marker_len - compute the length of the marker in data area
Sergey Lapindfe64e22013-01-14 03:46:50 +0000159 * @td: BBT descriptor used for computation
Christian Hitzff8a8a72011-10-12 09:32:04 +0200160 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000161 * The length will be 0 if the marker is located in OOB area.
Christian Hitzff8a8a72011-10-12 09:32:04 +0200162 */
163static u32 add_marker_len(struct nand_bbt_descr *td)
164{
165 u32 len;
166
167 if (!(td->options & NAND_BBT_NO_OOB))
168 return 0;
169
170 len = td->len;
171 if (td->options & NAND_BBT_VERSION)
172 len++;
173 return len;
174}
175
176/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200177 * read_bbt - [GENERIC] Read the bad block table starting from page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000178 * @mtd: MTD device structure
179 * @buf: temporary buffer
180 * @page: the starting page
181 * @num: the number of bbt descriptors to read
182 * @td: the bbt describtion table
Heiko Schocherff94bc42014-06-24 10:10:04 +0200183 * @offs: block number offset in the table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200184 *
185 * Read the bad block table starting from page.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200186 */
William Juulcfa460a2007-10-31 13:53:06 +0100187static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200188 struct nand_bbt_descr *td, int offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200189{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000190 int res, ret = 0, i, j, act = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200191 struct nand_chip *this = mtd->priv;
192 size_t retlen, len, totlen;
193 loff_t from;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200194 int bits = td->options & NAND_BBT_NRBITS_MSK;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000195 uint8_t msk = (uint8_t)((1 << bits) - 1);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200196 u32 marker_len;
197 int reserved_block_code = td->reserved_block_code;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200198
199 totlen = (num * bits) >> 3;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200200 marker_len = add_marker_len(td);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000201 from = ((loff_t)page) << this->page_shift;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200202
Wolfgang Denk932394a2005-08-17 12:55:25 +0200203 while (totlen) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000204 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Christian Hitzff8a8a72011-10-12 09:32:04 +0200205 if (marker_len) {
206 /*
207 * In case the BBT marker is not in the OOB area it
208 * will be just in the first page.
209 */
210 len -= marker_len;
211 from += marker_len;
212 marker_len = 0;
213 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000214 res = mtd_read(mtd, from, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200215 if (res < 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000216 if (mtd_is_eccerr(res)) {
217 pr_info("nand_bbt: ECC error in BBT at "
218 "0x%012llx\n", from & ~mtd->writesize);
219 return res;
220 } else if (mtd_is_bitflip(res)) {
221 pr_info("nand_bbt: corrected error in BBT at "
222 "0x%012llx\n", from & ~mtd->writesize);
223 ret = res;
224 } else {
225 pr_info("nand_bbt: error reading BBT\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200226 return res;
227 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200228 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200229
230 /* Analyse data */
231 for (i = 0; i < len; i++) {
232 uint8_t dat = buf[i];
Heiko Schocherff94bc42014-06-24 10:10:04 +0200233 for (j = 0; j < 8; j += bits, act++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200234 uint8_t tmp = (dat >> j) & msk;
235 if (tmp == msk)
236 continue;
William Juulcfa460a2007-10-31 13:53:06 +0100237 if (reserved_block_code && (tmp == reserved_block_code)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000238 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200239 (loff_t)(offs + act) <<
240 this->bbt_erase_shift);
241 bbt_mark_entry(this, offs + act,
242 BBT_BLOCK_RESERVED);
William Juulcfa460a2007-10-31 13:53:06 +0100243 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200244 continue;
245 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200246 /*
247 * Leave it for now, if it's matured we can
248 * move this message to pr_debug.
249 */
250 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
251 (loff_t)(offs + act) <<
252 this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000253 /* Factory marked bad or worn out? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200254 if (tmp == 0)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200255 bbt_mark_entry(this, offs + act,
256 BBT_BLOCK_FACTORY_BAD);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200257 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200258 bbt_mark_entry(this, offs + act,
259 BBT_BLOCK_WORN);
William Juulcfa460a2007-10-31 13:53:06 +0100260 mtd->ecc_stats.badblocks++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200261 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200262 }
263 totlen -= len;
264 from += len;
265 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000266 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200267}
268
269/**
270 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000271 * @mtd: MTD device structure
272 * @buf: temporary buffer
273 * @td: descriptor for the bad block table
274 * @chip: read the table for a specific chip, -1 read all chips; applies only if
275 * NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200276 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000277 * Read the bad block table for all chips starting at a given page. We assume
278 * that the bbt bits are in consecutive order.
279 */
William Juulcfa460a2007-10-31 13:53:06 +0100280static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200281{
282 struct nand_chip *this = mtd->priv;
283 int res = 0, i;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200284
Wolfgang Denk932394a2005-08-17 12:55:25 +0200285 if (td->options & NAND_BBT_PERCHIP) {
286 int offs = 0;
287 for (i = 0; i < this->numchips; i++) {
288 if (chip == -1 || chip == i)
Christian Hitzff8a8a72011-10-12 09:32:04 +0200289 res = read_bbt(mtd, buf, td->pages[i],
290 this->chipsize >> this->bbt_erase_shift,
291 td, offs);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200292 if (res)
293 return res;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200294 offs += this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200295 }
296 } else {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200297 res = read_bbt(mtd, buf, td->pages[0],
298 mtd->size >> this->bbt_erase_shift, td, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200299 if (res)
300 return res;
301 }
302 return 0;
303}
304
Sergey Lapindfe64e22013-01-14 03:46:50 +0000305/* BBT marker is in the first page, no OOB */
306static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200307 struct nand_bbt_descr *td)
308{
309 size_t retlen;
310 size_t len;
311
312 len = td->len;
313 if (td->options & NAND_BBT_VERSION)
314 len++;
315
Sergey Lapindfe64e22013-01-14 03:46:50 +0000316 return mtd_read(mtd, offs, len, &retlen, buf);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200317}
318
Sergey Lapindfe64e22013-01-14 03:46:50 +0000319/**
320 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
321 * @mtd: MTD device structure
322 * @buf: temporary buffer
323 * @offs: offset at which to scan
324 * @len: length of data region to read
325 *
326 * Scan read data from data+OOB. May traverse multiple pages, interleaving
327 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
328 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
William Juulcfa460a2007-10-31 13:53:06 +0100329 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000330static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
William Juulcfa460a2007-10-31 13:53:06 +0100331 size_t len)
332{
333 struct mtd_oob_ops ops;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000334 int res, ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100335
Sergey Lapindfe64e22013-01-14 03:46:50 +0000336 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100337 ops.ooboffs = 0;
338 ops.ooblen = mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +0100339
Christian Hitzff8a8a72011-10-12 09:32:04 +0200340 while (len > 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000341 ops.datbuf = buf;
342 ops.len = min(len, (size_t)mtd->writesize);
343 ops.oobbuf = buf + ops.len;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200344
Sergey Lapindfe64e22013-01-14 03:46:50 +0000345 res = mtd_read_oob(mtd, offs, &ops);
346 if (res) {
347 if (!mtd_is_bitflip_or_eccerr(res))
Christian Hitzff8a8a72011-10-12 09:32:04 +0200348 return res;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000349 else if (mtd_is_eccerr(res) || !ret)
350 ret = res;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200351 }
352
353 buf += mtd->oobsize + mtd->writesize;
354 len -= mtd->writesize;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000355 offs += mtd->writesize;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200356 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000357 return ret;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200358}
359
Sergey Lapindfe64e22013-01-14 03:46:50 +0000360static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200361 size_t len, struct nand_bbt_descr *td)
362{
363 if (td->options & NAND_BBT_NO_OOB)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000364 return scan_read_data(mtd, buf, offs, td);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200365 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000366 return scan_read_oob(mtd, buf, offs, len);
William Juulcfa460a2007-10-31 13:53:06 +0100367}
368
Sergey Lapindfe64e22013-01-14 03:46:50 +0000369/* Scan write data with oob to flash */
William Juulcfa460a2007-10-31 13:53:06 +0100370static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
371 uint8_t *buf, uint8_t *oob)
372{
373 struct mtd_oob_ops ops;
374
Sergey Lapindfe64e22013-01-14 03:46:50 +0000375 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100376 ops.ooboffs = 0;
377 ops.ooblen = mtd->oobsize;
378 ops.datbuf = buf;
379 ops.oobbuf = oob;
380 ops.len = len;
381
Sergey Lapindfe64e22013-01-14 03:46:50 +0000382 return mtd_write_oob(mtd, offs, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100383}
384
Christian Hitzff8a8a72011-10-12 09:32:04 +0200385static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
386{
387 u32 ver_offs = td->veroffs;
388
389 if (!(td->options & NAND_BBT_NO_OOB))
390 ver_offs += mtd->writesize;
391 return ver_offs;
392}
393
Wolfgang Denk932394a2005-08-17 12:55:25 +0200394/**
395 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000396 * @mtd: MTD device structure
397 * @buf: temporary buffer
398 * @td: descriptor for the bad block table
399 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200400 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000401 * Read the bad block table(s) for all chips starting at a given page. We
402 * assume that the bbt bits are in consecutive order.
403 */
404static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
405 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200406{
407 struct nand_chip *this = mtd->priv;
408
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200409 /* Read the primary version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200410 if (td->options & NAND_BBT_VERSION) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000411 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200412 mtd->writesize, td);
413 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000414 pr_info("Bad block table at page %d, version 0x%02X\n",
415 td->pages[0], td->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200416 }
417
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200418 /* Read the mirror version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200419 if (md && (md->options & NAND_BBT_VERSION)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000420 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
421 mtd->writesize, md);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200422 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000423 pr_info("Bad block table at page %d, version 0x%02X\n",
424 md->pages[0], md->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200425 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200426}
427
Sergey Lapindfe64e22013-01-14 03:46:50 +0000428/* Scan a given block partially */
William Juulcfa460a2007-10-31 13:53:06 +0100429static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000430 loff_t offs, uint8_t *buf, int numpages)
William Juulcfa460a2007-10-31 13:53:06 +0100431{
432 struct mtd_oob_ops ops;
433 int j, ret;
434
435 ops.ooblen = mtd->oobsize;
436 ops.oobbuf = buf;
437 ops.ooboffs = 0;
438 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000439 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100440
Sergey Lapindfe64e22013-01-14 03:46:50 +0000441 for (j = 0; j < numpages; j++) {
William Juulcfa460a2007-10-31 13:53:06 +0100442 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000443 * Read the full oob until read_oob is fixed to handle single
444 * byte reads for 16 bit buswidth.
William Juulcfa460a2007-10-31 13:53:06 +0100445 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000446 ret = mtd_read_oob(mtd, offs, &ops);
447 /* Ignore ECC errors when checking for BBM */
448 if (ret && !mtd_is_bitflip_or_eccerr(ret))
William Juulcfa460a2007-10-31 13:53:06 +0100449 return ret;
450
451 if (check_short_pattern(buf, bd))
452 return 1;
453
454 offs += mtd->writesize;
455 }
456 return 0;
457}
458
Wolfgang Denk932394a2005-08-17 12:55:25 +0200459/**
460 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000461 * @mtd: MTD device structure
462 * @buf: temporary buffer
463 * @bd: descriptor for the good/bad block search pattern
464 * @chip: create the table for a specific chip, -1 read all chips; applies only
465 * if NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200466 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000467 * Create a bad block table by scanning the device for the given good/bad block
468 * identify pattern.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200469 */
William Juulcfa460a2007-10-31 13:53:06 +0100470static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
471 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200472{
473 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200474 int i, numblocks, numpages;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200475 int startblock;
476 loff_t from;
William Juulcfa460a2007-10-31 13:53:06 +0100477
Sergey Lapindfe64e22013-01-14 03:46:50 +0000478 pr_info("Scanning device for bad blocks\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200479
Heiko Schocherff94bc42014-06-24 10:10:04 +0200480 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000481 numpages = 2;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200482 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000483 numpages = 1;
William Juulcfa460a2007-10-31 13:53:06 +0100484
Wolfgang Denk932394a2005-08-17 12:55:25 +0200485 if (chip == -1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200486 numblocks = mtd->size >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200487 startblock = 0;
488 from = 0;
489 } else {
490 if (chip >= this->numchips) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000491 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
William Juulcfa460a2007-10-31 13:53:06 +0100492 chip + 1, this->numchips);
493 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200494 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200495 numblocks = this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200496 startblock = chip * numblocks;
497 numblocks += startblock;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200498 from = (loff_t)startblock << this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200499 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200500
Sergey Lapindfe64e22013-01-14 03:46:50 +0000501 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
502 from += mtd->erasesize - (mtd->writesize * numpages);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200503
Heiko Schocherff94bc42014-06-24 10:10:04 +0200504 for (i = startblock; i < numblocks; i++) {
William Juulcfa460a2007-10-31 13:53:06 +0100505 int ret;
506
Christian Hitzff8a8a72011-10-12 09:32:04 +0200507 BUG_ON(bd->options & NAND_BBT_NO_OOB);
508
Heiko Schocherff94bc42014-06-24 10:10:04 +0200509 ret = scan_block_fast(mtd, bd, from, buf, numpages);
William Juulcfa460a2007-10-31 13:53:06 +0100510 if (ret < 0)
511 return ret;
512
513 if (ret) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200514 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000515 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200516 i, (unsigned long long)from);
William Juulcfa460a2007-10-31 13:53:06 +0100517 mtd->ecc_stats.badblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200518 }
William Juulcfa460a2007-10-31 13:53:06 +0100519
Wolfgang Denk932394a2005-08-17 12:55:25 +0200520 from += (1 << this->bbt_erase_shift);
521 }
William Juulcfa460a2007-10-31 13:53:06 +0100522 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200523}
524
525/**
526 * search_bbt - [GENERIC] scan the device for a specific bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000527 * @mtd: MTD device structure
528 * @buf: temporary buffer
529 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200530 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000531 * Read the bad block table by searching for a given ident pattern. Search is
532 * preformed either from the beginning up or from the end of the device
533 * downwards. The search starts always at the start of a block. If the option
534 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
535 * the bad block information of this chip. This is necessary to provide support
536 * for certain DOC devices.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200537 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000538 * The bbt ident pattern resides in the oob area of the first page in a block.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200539 */
William Juulcfa460a2007-10-31 13:53:06 +0100540static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200541{
542 struct nand_chip *this = mtd->priv;
543 int i, chips;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200544#ifndef __UBOOT__
545 int bits, startblock, block, dir;
546#else
Marek Vasut89131e92011-09-30 12:13:22 +0200547 int startblock, block, dir;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200548#endif
William Juulcfa460a2007-10-31 13:53:06 +0100549 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200550 int bbtblocks;
William Juulcfa460a2007-10-31 13:53:06 +0100551 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200552
Sergey Lapindfe64e22013-01-14 03:46:50 +0000553 /* Search direction top -> down? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200554 if (td->options & NAND_BBT_LASTBLOCK) {
William Juulcfa460a2007-10-31 13:53:06 +0100555 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200556 dir = -1;
557 } else {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200558 startblock = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200559 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200560 }
561
Sergey Lapindfe64e22013-01-14 03:46:50 +0000562 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200563 if (td->options & NAND_BBT_PERCHIP) {
564 chips = this->numchips;
565 bbtblocks = this->chipsize >> this->bbt_erase_shift;
566 startblock &= bbtblocks - 1;
567 } else {
568 chips = 1;
569 bbtblocks = mtd->size >> this->bbt_erase_shift;
570 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200571
Heiko Schocherff94bc42014-06-24 10:10:04 +0200572#ifndef __UBOOT__
573 /* Number of bits for each erase block in the bbt */
574 bits = td->options & NAND_BBT_NRBITS_MSK;
575#endif
576
Wolfgang Denk932394a2005-08-17 12:55:25 +0200577 for (i = 0; i < chips; i++) {
578 /* Reset version information */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200579 td->version[i] = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200580 td->pages[i] = -1;
581 /* Scan the maximum number of blocks */
582 for (block = 0; block < td->maxblocks; block++) {
William Juulcfa460a2007-10-31 13:53:06 +0100583
Wolfgang Denk932394a2005-08-17 12:55:25 +0200584 int actblock = startblock + dir * block;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400585 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100586
Wolfgang Denk932394a2005-08-17 12:55:25 +0200587 /* Read first page */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000588 scan_read(mtd, buf, offs, mtd->writesize, td);
William Juulcfa460a2007-10-31 13:53:06 +0100589 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
590 td->pages[i] = actblock << blocktopage;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200591 if (td->options & NAND_BBT_VERSION) {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200592 offs = bbt_get_ver_offs(mtd, td);
593 td->version[i] = buf[offs];
Wolfgang Denk932394a2005-08-17 12:55:25 +0200594 }
595 break;
596 }
597 }
598 startblock += this->chipsize >> this->bbt_erase_shift;
599 }
600 /* Check, if we found a bbt for each requested chip */
601 for (i = 0; i < chips; i++) {
602 if (td->pages[i] == -1)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000603 pr_warn("Bad block table not found for chip %d\n", i);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200604 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200605 pr_info("Bad block table found at page %d, version "
606 "0x%02X\n", td->pages[i], td->version[i]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200607 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200608 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200609}
610
611/**
612 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000613 * @mtd: MTD device structure
614 * @buf: temporary buffer
615 * @td: descriptor for the bad block table
616 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200617 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000618 * Search and read the bad block table(s).
619 */
620static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
621 struct nand_bbt_descr *td,
622 struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200623{
624 /* Search the primary table */
William Juulcfa460a2007-10-31 13:53:06 +0100625 search_bbt(mtd, buf, td);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200626
Wolfgang Denk932394a2005-08-17 12:55:25 +0200627 /* Search the mirror table */
628 if (md)
William Juulcfa460a2007-10-31 13:53:06 +0100629 search_bbt(mtd, buf, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200630}
631
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200632/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200633 * write_bbt - [GENERIC] (Re)write the bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000634 * @mtd: MTD device structure
635 * @buf: temporary buffer
636 * @td: descriptor for the bad block table
637 * @md: descriptor for the bad block table mirror
638 * @chipsel: selector for a specific chip, -1 for all
Wolfgang Denk932394a2005-08-17 12:55:25 +0200639 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000640 * (Re)write the bad block table.
641 */
William Juulcfa460a2007-10-31 13:53:06 +0100642static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
643 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
644 int chipsel)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200645{
646 struct nand_chip *this = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200647 struct erase_info einfo;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200648 int i, res, chip = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200649 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200650 int nrchips, pageoffs, ooboffs;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200651 uint8_t msk[4];
652 uint8_t rcode = td->reserved_block_code;
653 size_t retlen, len = 0;
654 loff_t to;
William Juulcfa460a2007-10-31 13:53:06 +0100655 struct mtd_oob_ops ops;
656
657 ops.ooblen = mtd->oobsize;
658 ops.ooboffs = 0;
659 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000660 ops.mode = MTD_OPS_PLACE_OOB;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200661
662 if (!rcode)
663 rcode = 0xff;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000664 /* Write bad block table per chip rather than per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200665 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +0100666 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000667 /* Full device write or specific chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200668 if (chipsel == -1) {
669 nrchips = this->numchips;
670 } else {
671 nrchips = chipsel + 1;
672 chip = chipsel;
673 }
674 } else {
William Juulcfa460a2007-10-31 13:53:06 +0100675 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200676 nrchips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200677 }
678
Wolfgang Denk932394a2005-08-17 12:55:25 +0200679 /* Loop through the chips */
680 for (; chip < nrchips; chip++) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000681 /*
682 * There was already a version of the table, reuse the page
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200683 * This applies for absolute placement too, as we have the
Wolfgang Denk932394a2005-08-17 12:55:25 +0200684 * page nr. in td->pages.
685 */
686 if (td->pages[chip] != -1) {
687 page = td->pages[chip];
688 goto write;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200689 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200690
Sergey Lapindfe64e22013-01-14 03:46:50 +0000691 /*
692 * Automatic placement of the bad block table. Search direction
693 * top -> down?
694 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200695 if (td->options & NAND_BBT_LASTBLOCK) {
696 startblock = numblocks * (chip + 1) - 1;
697 dir = -1;
698 } else {
699 startblock = chip * numblocks;
700 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200701 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200702
703 for (i = 0; i < td->maxblocks; i++) {
704 int block = startblock + dir * i;
705 /* Check, if the block is bad */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200706 switch (bbt_get_entry(this, block)) {
707 case BBT_BLOCK_WORN:
708 case BBT_BLOCK_FACTORY_BAD:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200709 continue;
710 }
William Juulcfa460a2007-10-31 13:53:06 +0100711 page = block <<
712 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200713 /* Check, if the block is used by the mirror table */
714 if (!md || md->pages[chip] != page)
715 goto write;
716 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000717 pr_err("No space left to write bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200718 return -ENOSPC;
William Juulcfa460a2007-10-31 13:53:06 +0100719 write:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200720
721 /* Set up shift count and masks for the flash table */
722 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juulcfa460a2007-10-31 13:53:06 +0100723 msk[2] = ~rcode;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200724 switch (bits) {
William Juulcfa460a2007-10-31 13:53:06 +0100725 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
726 msk[3] = 0x01;
727 break;
728 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
729 msk[3] = 0x03;
730 break;
731 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
732 msk[3] = 0x0f;
733 break;
734 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
735 msk[3] = 0xff;
736 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200737 default: return -EINVAL;
738 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200739
Sergey Lapindfe64e22013-01-14 03:46:50 +0000740 to = ((loff_t)page) << this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200741
Sergey Lapindfe64e22013-01-14 03:46:50 +0000742 /* Must we save the block contents? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200743 if (td->options & NAND_BBT_SAVECONTENT) {
744 /* Make it block aligned */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000745 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200746 len = 1 << this->bbt_erase_shift;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000747 res = mtd_read(mtd, to, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200748 if (res < 0) {
749 if (retlen != len) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000750 pr_info("nand_bbt: error reading block "
751 "for writing the bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200752 return res;
753 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000754 pr_warn("nand_bbt: ECC error while reading "
755 "block for writing bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200756 }
William Juulcfa460a2007-10-31 13:53:06 +0100757 /* Read oob data */
758 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
759 ops.oobbuf = &buf[len];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000760 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100761 if (res < 0 || ops.oobretlen != ops.ooblen)
762 goto outerr;
763
Wolfgang Denk932394a2005-08-17 12:55:25 +0200764 /* Calc the byte offset in the buffer */
765 pageoffs = page - (int)(to >> this->page_shift);
766 offs = pageoffs << this->page_shift;
767 /* Preset the bbt area with 0xff */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000768 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
William Juulcfa460a2007-10-31 13:53:06 +0100769 ooboffs = len + (pageoffs * mtd->oobsize);
770
Christian Hitzff8a8a72011-10-12 09:32:04 +0200771 } else if (td->options & NAND_BBT_NO_OOB) {
772 ooboffs = 0;
773 offs = td->len;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000774 /* The version byte */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200775 if (td->options & NAND_BBT_VERSION)
776 offs++;
777 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000778 len = (size_t)(numblocks >> sft);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200779 len += offs;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000780 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200781 len = ALIGN(len, mtd->writesize);
782 /* Preset the buffer with 0xff */
783 memset(buf, 0xff, len);
784 /* Pattern is located at the begin of first page */
785 memcpy(buf, td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200786 } else {
787 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000788 len = (size_t)(numblocks >> sft);
789 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200790 len = ALIGN(len, mtd->writesize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200791 /* Preset the buffer with 0xff */
William Juulcfa460a2007-10-31 13:53:06 +0100792 memset(buf, 0xff, len +
793 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200794 offs = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100795 ooboffs = len;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200796 /* Pattern is located in oob area of first page */
William Juulcfa460a2007-10-31 13:53:06 +0100797 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200798 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200799
William Juulcfa460a2007-10-31 13:53:06 +0100800 if (td->options & NAND_BBT_VERSION)
801 buf[ooboffs + td->veroffs] = td->version[chip];
802
Sergey Lapindfe64e22013-01-14 03:46:50 +0000803 /* Walk through the memory table */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200804 for (i = 0; i < numblocks; i++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200805 uint8_t dat;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200806 int sftcnt = (i << (3 - sft)) & sftmsk;
807 dat = bbt_get_entry(this, chip * numblocks + i);
808 /* Do not store the reserved bbt blocks! */
809 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200810 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200811
William Juulcfa460a2007-10-31 13:53:06 +0100812 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200813 einfo.mtd = mtd;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400814 einfo.addr = to;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200815 einfo.len = 1 << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100816 res = nand_erase_nand(mtd, &einfo, 1);
817 if (res < 0)
818 goto outerr;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200819
Christian Hitzff8a8a72011-10-12 09:32:04 +0200820 res = scan_write_bbt(mtd, to, len, buf,
821 td->options & NAND_BBT_NO_OOB ? NULL :
822 &buf[len]);
William Juulcfa460a2007-10-31 13:53:06 +0100823 if (res < 0)
824 goto outerr;
825
Sergey Lapindfe64e22013-01-14 03:46:50 +0000826 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
827 (unsigned long long)to, td->version[chip]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200828
Wolfgang Denk932394a2005-08-17 12:55:25 +0200829 /* Mark it as used */
830 td->pages[chip] = page;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200831 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200832 return 0;
William Juulcfa460a2007-10-31 13:53:06 +0100833
834 outerr:
Sergey Lapindfe64e22013-01-14 03:46:50 +0000835 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
William Juulcfa460a2007-10-31 13:53:06 +0100836 return res;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200837}
838
839/**
840 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000841 * @mtd: MTD device structure
842 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200843 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000844 * The function creates a memory based bbt by scanning the device for
845 * manufacturer / software marked good / bad blocks.
846 */
William Juulcfa460a2007-10-31 13:53:06 +0100847static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200848{
849 struct nand_chip *this = mtd->priv;
850
William Juulcfa460a2007-10-31 13:53:06 +0100851 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200852}
853
854/**
William Juulcfa460a2007-10-31 13:53:06 +0100855 * check_create - [GENERIC] create and write bbt(s) if necessary
Sergey Lapindfe64e22013-01-14 03:46:50 +0000856 * @mtd: MTD device structure
857 * @buf: temporary buffer
858 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200859 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000860 * The function checks the results of the previous call to read_bbt and creates
861 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
862 * for the chip/device. Update is necessary if one of the tables is missing or
863 * the version nr. of one table is less than the other.
864 */
William Juulcfa460a2007-10-31 13:53:06 +0100865static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200866{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000867 int i, chips, writeops, create, chipsel, res, res2;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200868 struct nand_chip *this = mtd->priv;
869 struct nand_bbt_descr *td = this->bbt_td;
870 struct nand_bbt_descr *md = this->bbt_md;
871 struct nand_bbt_descr *rd, *rd2;
872
Sergey Lapindfe64e22013-01-14 03:46:50 +0000873 /* Do we have a bbt per chip? */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200874 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200875 chips = this->numchips;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200876 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200877 chips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200878
Wolfgang Denk932394a2005-08-17 12:55:25 +0200879 for (i = 0; i < chips; i++) {
880 writeops = 0;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000881 create = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200882 rd = NULL;
883 rd2 = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000884 res = res2 = 0;
885 /* Per chip or per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200886 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000887 /* Mirrored table available? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200888 if (md) {
889 if (td->pages[i] == -1 && md->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000890 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200891 writeops = 0x03;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000892 } else if (td->pages[i] == -1) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200893 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000894 writeops = 0x01;
895 } else if (md->pages[i] == -1) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200896 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000897 writeops = 0x02;
898 } else if (td->version[i] == md->version[i]) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200899 rd = td;
900 if (!(td->options & NAND_BBT_VERSION))
901 rd2 = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000902 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200903 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000904 writeops = 0x02;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200905 } else {
906 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000907 writeops = 0x01;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200908 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200909 } else {
910 if (td->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000911 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200912 writeops = 0x01;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000913 } else {
914 rd = td;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200915 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200916 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200917
Sergey Lapindfe64e22013-01-14 03:46:50 +0000918 if (create) {
919 /* Create the bad block table by scanning the device? */
920 if (!(td->options & NAND_BBT_CREATE))
921 continue;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200922
Sergey Lapindfe64e22013-01-14 03:46:50 +0000923 /* Create the table in memory by scanning the chip(s) */
924 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
925 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200926
Sergey Lapindfe64e22013-01-14 03:46:50 +0000927 td->version[i] = 1;
928 if (md)
929 md->version[i] = 1;
930 }
931
932 /* Read back first? */
933 if (rd) {
934 res = read_abs_bbt(mtd, buf, rd, chipsel);
935 if (mtd_is_eccerr(res)) {
936 /* Mark table as invalid */
937 rd->pages[i] = -1;
938 rd->version[i] = 0;
939 i--;
940 continue;
941 }
942 }
943 /* If they weren't versioned, read both */
944 if (rd2) {
945 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
946 if (mtd_is_eccerr(res2)) {
947 /* Mark table as invalid */
948 rd2->pages[i] = -1;
949 rd2->version[i] = 0;
950 i--;
951 continue;
952 }
953 }
954
955 /* Scrub the flash table(s)? */
956 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
957 writeops = 0x03;
958
959 /* Update version numbers before writing */
960 if (md) {
961 td->version[i] = max(td->version[i], md->version[i]);
962 md->version[i] = td->version[i];
963 }
964
965 /* Write the bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200966 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100967 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200968 if (res < 0)
969 return res;
970 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200971
Sergey Lapindfe64e22013-01-14 03:46:50 +0000972 /* Write the mirror bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200973 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100974 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200975 if (res < 0)
976 return res;
977 }
978 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200979 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200980}
981
982/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200983 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Sergey Lapindfe64e22013-01-14 03:46:50 +0000984 * @mtd: MTD device structure
985 * @td: bad block table descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200986 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000987 * The bad block table regions are marked as "bad" to prevent accidental
988 * erasures / writes. The regions are identified by the mark 0x02.
989 */
William Juulcfa460a2007-10-31 13:53:06 +0100990static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200991{
992 struct nand_chip *this = mtd->priv;
993 int i, j, chips, block, nrblocks, update;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200994 uint8_t oldval;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200995
Sergey Lapindfe64e22013-01-14 03:46:50 +0000996 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200997 if (td->options & NAND_BBT_PERCHIP) {
998 chips = this->numchips;
999 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1000 } else {
1001 chips = 1;
1002 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001003 }
1004
Wolfgang Denk932394a2005-08-17 12:55:25 +02001005 for (i = 0; i < chips; i++) {
1006 if ((td->options & NAND_BBT_ABSPAGE) ||
1007 !(td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001008 if (td->pages[i] == -1)
1009 continue;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001010 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001011 oldval = bbt_get_entry(this, block);
1012 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1013 if ((oldval != BBT_BLOCK_RESERVED) &&
1014 td->reserved_block_code)
1015 nand_update_bbt(mtd, (loff_t)block <<
1016 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001017 continue;
1018 }
1019 update = 0;
1020 if (td->options & NAND_BBT_LASTBLOCK)
1021 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001022 else
Wolfgang Denk932394a2005-08-17 12:55:25 +02001023 block = i * nrblocks;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001024 for (j = 0; j < td->maxblocks; j++) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001025 oldval = bbt_get_entry(this, block);
1026 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1027 if (oldval != BBT_BLOCK_RESERVED)
William Juulcfa460a2007-10-31 13:53:06 +01001028 update = 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001029 block++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001030 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001031 /*
1032 * If we want reserved blocks to be recorded to flash, and some
1033 * new ones have been marked, then we need to update the stored
1034 * bbts. This should only happen once.
1035 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001036 if (update && td->reserved_block_code)
Heiko Schocherff94bc42014-06-24 10:10:04 +02001037 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1038 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001039 }
1040}
1041
1042/**
Christian Hitzff8a8a72011-10-12 09:32:04 +02001043 * verify_bbt_descr - verify the bad block description
Sergey Lapindfe64e22013-01-14 03:46:50 +00001044 * @mtd: MTD device structure
1045 * @bd: the table to verify
Christian Hitzff8a8a72011-10-12 09:32:04 +02001046 *
1047 * This functions performs a few sanity checks on the bad block description
1048 * table.
1049 */
1050static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1051{
1052 struct nand_chip *this = mtd->priv;
1053 u32 pattern_len;
1054 u32 bits;
1055 u32 table_size;
1056
1057 if (!bd)
1058 return;
1059
1060 pattern_len = bd->len;
1061 bits = bd->options & NAND_BBT_NRBITS_MSK;
1062
Sergey Lapindfe64e22013-01-14 03:46:50 +00001063 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1064 !(this->bbt_options & NAND_BBT_USE_FLASH));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001065 BUG_ON(!bits);
1066
1067 if (bd->options & NAND_BBT_VERSION)
1068 pattern_len++;
1069
1070 if (bd->options & NAND_BBT_NO_OOB) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001071 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1072 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001073 BUG_ON(bd->offs);
1074 if (bd->options & NAND_BBT_VERSION)
1075 BUG_ON(bd->veroffs != bd->len);
1076 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1077 }
1078
1079 if (bd->options & NAND_BBT_PERCHIP)
1080 table_size = this->chipsize >> this->bbt_erase_shift;
1081 else
1082 table_size = mtd->size >> this->bbt_erase_shift;
1083 table_size >>= 3;
1084 table_size *= bits;
1085 if (bd->options & NAND_BBT_NO_OOB)
1086 table_size += pattern_len;
1087 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1088}
1089
1090/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02001091 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001092 * @mtd: MTD device structure
1093 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +02001094 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001095 * The function checks, if a bad block table(s) is/are already available. If
1096 * not it scans the device for manufacturer marked good / bad blocks and writes
1097 * the bad block table(s) to the selected place.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001098 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001099 * The bad block table memory is allocated here. It must be freed by calling
1100 * the nand_free_bbt function.
1101 */
William Juulcfa460a2007-10-31 13:53:06 +01001102int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001103{
1104 struct nand_chip *this = mtd->priv;
1105 int len, res = 0;
1106 uint8_t *buf;
1107 struct nand_bbt_descr *td = this->bbt_td;
1108 struct nand_bbt_descr *md = this->bbt_md;
1109
1110 len = mtd->size >> (this->bbt_erase_shift + 2);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001111 /*
1112 * Allocate memory (2bit per block) and clear the memory bad block
1113 * table.
1114 */
William Juulcfa460a2007-10-31 13:53:06 +01001115 this->bbt = kzalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001116 if (!this->bbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001117 return -ENOMEM;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001118
Sergey Lapindfe64e22013-01-14 03:46:50 +00001119 /*
1120 * If no primary table decriptor is given, scan the device to build a
1121 * memory based bad block table.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001122 */
William Juulcfa460a2007-10-31 13:53:06 +01001123 if (!td) {
1124 if ((res = nand_memory_bbt(mtd, bd))) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001125 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
William Juulcfa460a2007-10-31 13:53:06 +01001126 kfree(this->bbt);
1127 this->bbt = NULL;
1128 }
1129 return res;
1130 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001131 verify_bbt_descr(mtd, td);
1132 verify_bbt_descr(mtd, md);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001133
1134 /* Allocate a temporary buffer for one eraseblock incl. oob */
1135 len = (1 << this->bbt_erase_shift);
1136 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001137 buf = vmalloc(len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001138 if (!buf) {
William Juulcfa460a2007-10-31 13:53:06 +01001139 kfree(this->bbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001140 this->bbt = NULL;
1141 return -ENOMEM;
1142 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001143
Sergey Lapindfe64e22013-01-14 03:46:50 +00001144 /* Is the bbt at a given page? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001145 if (td->options & NAND_BBT_ABSPAGE) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001146 read_abs_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001147 } else {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001148 /* Search the bad block table using a pattern in oob */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001149 search_read_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001150 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001151
Sergey Lapindfe64e22013-01-14 03:46:50 +00001152 res = check_create(mtd, buf, bd);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001153
Wolfgang Denk932394a2005-08-17 12:55:25 +02001154 /* Prevent the bbt regions from erasing / writing */
William Juulcfa460a2007-10-31 13:53:06 +01001155 mark_bbt_region(mtd, td);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001156 if (md)
William Juulcfa460a2007-10-31 13:53:06 +01001157 mark_bbt_region(mtd, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001158
William Juulcfa460a2007-10-31 13:53:06 +01001159 vfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001160 return res;
1161}
1162
Wolfgang Denk932394a2005-08-17 12:55:25 +02001163/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001164 * nand_update_bbt - update bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001165 * @mtd: MTD device structure
1166 * @offs: the offset of the newly marked block
Wolfgang Denk932394a2005-08-17 12:55:25 +02001167 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001168 * The function updates the bad block table(s).
1169 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001170static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001171{
1172 struct nand_chip *this = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001173 int len, res = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001174 int chip, chipsel;
1175 uint8_t *buf;
1176 struct nand_bbt_descr *td = this->bbt_td;
1177 struct nand_bbt_descr *md = this->bbt_md;
1178
1179 if (!this->bbt || !td)
1180 return -EINVAL;
1181
Wolfgang Denk932394a2005-08-17 12:55:25 +02001182 /* Allocate a temporary buffer for one eraseblock incl. oob */
1183 len = (1 << this->bbt_erase_shift);
1184 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001185 buf = kmalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001186 if (!buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001187 return -ENOMEM;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001188
Sergey Lapindfe64e22013-01-14 03:46:50 +00001189 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001190 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +01001191 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001192 chipsel = chip;
1193 } else {
1194 chip = 0;
1195 chipsel = -1;
1196 }
1197
1198 td->version[chip]++;
1199 if (md)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001200 md->version[chip]++;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001201
Sergey Lapindfe64e22013-01-14 03:46:50 +00001202 /* Write the bad block table to the device? */
1203 if (td->options & NAND_BBT_WRITE) {
William Juulcfa460a2007-10-31 13:53:06 +01001204 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001205 if (res < 0)
1206 goto out;
1207 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001208 /* Write the mirror bad block table to the device? */
1209 if (md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001210 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001211 }
1212
William Juulcfa460a2007-10-31 13:53:06 +01001213 out:
1214 kfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001215 return res;
1216}
1217
Sergey Lapindfe64e22013-01-14 03:46:50 +00001218/*
1219 * Define some generic bad / good block scan pattern which are used
1220 * while scanning a device for factory marked good / bad blocks.
1221 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001222static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1223
Sergey Lapindfe64e22013-01-14 03:46:50 +00001224/* Generic flash bbt descriptors */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001225static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1226static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1227
1228static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001229 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001230 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1231 .offs = 8,
1232 .len = 4,
1233 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001234 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001235 .pattern = bbt_pattern
1236};
1237
1238static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001239 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001240 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1241 .offs = 8,
1242 .len = 4,
1243 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001244 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001245 .pattern = mirror_pattern
1246};
1247
Sergey Lapindfe64e22013-01-14 03:46:50 +00001248static struct nand_bbt_descr bbt_main_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001249 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1250 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1251 | NAND_BBT_NO_OOB,
1252 .len = 4,
1253 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001254 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001255 .pattern = bbt_pattern
1256};
1257
Sergey Lapindfe64e22013-01-14 03:46:50 +00001258static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001259 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1260 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1261 | NAND_BBT_NO_OOB,
1262 .len = 4,
1263 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001264 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001265 .pattern = mirror_pattern
1266};
1267
Sergey Lapindfe64e22013-01-14 03:46:50 +00001268#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001269/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001270 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1271 * @this: NAND chip to create descriptor for
Christian Hitzff8a8a72011-10-12 09:32:04 +02001272 *
1273 * This function allocates and initializes a nand_bbt_descr for BBM detection
Sergey Lapindfe64e22013-01-14 03:46:50 +00001274 * based on the properties of @this. The new descriptor is stored in
Christian Hitzff8a8a72011-10-12 09:32:04 +02001275 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1276 * passed to this function.
Christian Hitzff8a8a72011-10-12 09:32:04 +02001277 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001278static int nand_create_badblock_pattern(struct nand_chip *this)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001279{
1280 struct nand_bbt_descr *bd;
1281 if (this->badblock_pattern) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001282 pr_warn("Bad block pattern already allocated; not replacing\n");
Christian Hitzff8a8a72011-10-12 09:32:04 +02001283 return -EINVAL;
1284 }
1285 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001286 if (!bd)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001287 return -ENOMEM;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001288 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001289 bd->offs = this->badblockpos;
1290 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1291 bd->pattern = scan_ff_pattern;
1292 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1293 this->badblock_pattern = bd;
1294 return 0;
1295}
1296
Wolfgang Denk932394a2005-08-17 12:55:25 +02001297/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001298 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Sergey Lapindfe64e22013-01-14 03:46:50 +00001299 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02001300 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001301 * This function selects the default bad block table support for the device and
1302 * calls the nand_scan_bbt function.
1303 */
William Juulcfa460a2007-10-31 13:53:06 +01001304int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001305{
1306 struct nand_chip *this = mtd->priv;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001307
Sergey Lapindfe64e22013-01-14 03:46:50 +00001308 /* Is a flash based bad block table requested? */
1309 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001310 /* Use the default pattern descriptors */
1311 if (!this->bbt_td) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001312 if (this->bbt_options & NAND_BBT_NO_OOB) {
1313 this->bbt_td = &bbt_main_no_oob_descr;
1314 this->bbt_md = &bbt_mirror_no_oob_descr;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001315 } else {
1316 this->bbt_td = &bbt_main_descr;
1317 this->bbt_md = &bbt_mirror_descr;
1318 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001319 }
1320 } else {
1321 this->bbt_td = NULL;
1322 this->bbt_md = NULL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001323 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001324
1325 if (!this->badblock_pattern)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001326 nand_create_badblock_pattern(this);
Christian Hitzff8a8a72011-10-12 09:32:04 +02001327
William Juulcfa460a2007-10-31 13:53:06 +01001328 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001329}
1330
1331/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001332 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00001333 * @mtd: MTD device structure
1334 * @offs: offset in the device
1335 * @allowbbt: allow access to bad block table region
1336 */
William Juulcfa460a2007-10-31 13:53:06 +01001337int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001338{
1339 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001340 int block, res;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001341
Heiko Schocherff94bc42014-06-24 10:10:04 +02001342 block = (int)(offs >> this->bbt_erase_shift);
1343 res = bbt_get_entry(this, block);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001344
Heiko Schocherff94bc42014-06-24 10:10:04 +02001345 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1346 "(block %d) 0x%02x\n",
1347 (unsigned int)offs, block, res);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001348
Heiko Schocherff94bc42014-06-24 10:10:04 +02001349 switch (res) {
1350 case BBT_BLOCK_GOOD:
William Juulcfa460a2007-10-31 13:53:06 +01001351 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001352 case BBT_BLOCK_WORN:
William Juulcfa460a2007-10-31 13:53:06 +01001353 return 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001354 case BBT_BLOCK_RESERVED:
William Juulcfa460a2007-10-31 13:53:06 +01001355 return allowbbt ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001356 }
1357 return 1;
1358}
Heiko Schocherff94bc42014-06-24 10:10:04 +02001359
1360/**
1361 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1362 * @mtd: MTD device structure
1363 * @offs: offset of the bad block
1364 */
1365int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1366{
1367 struct nand_chip *this = mtd->priv;
1368 int block, ret = 0;
1369
1370 block = (int)(offs >> this->bbt_erase_shift);
1371
1372 /* Mark bad block in memory */
1373 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1374
1375 /* Update flash-based bad block table */
1376 if (this->bbt_options & NAND_BBT_USE_FLASH)
1377 ret = nand_update_bbt(mtd, offs);
1378
1379 return ret;
1380}
1381
1382EXPORT_SYMBOL(nand_scan_bbt);