blob: c75b6a7c6ea430e040675e038ea00f398756bd64 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006 *
Fabio Estevamd159c4e2012-07-28 19:29:25 -03007 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000015 * When nand_scan_bbt is called, then it tries to find the bad block table
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020016 * depending on the options in the BBT descriptor(s). If no flash based BBT
Brian Norrisbb9ebd42011-05-31 16:31:23 -070017 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +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
Huang Shijie44ed0ff2012-07-03 16:44:15 +080025 * version number, then the mirror BBT is used to build the memory based BBT.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * If the tables are not versioned, then we "or" the bad block information.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +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
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000029 * good / bad blocks and the bad block tables are created.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020031 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020034 * The auto generated bad block table is located in the last good blocks
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000035 * of the device. The table is mirrored, so it can be updated eventually.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +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
Brian Norrisbb9ebd42011-05-31 16:31:23 -070039 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
Brian Norrisa40f7342011-05-31 16:31:22 -070040 * course): it moves the ident pattern and the version byte into the data area
41 * and the OOB area will remain untouched.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
43 * The table uses 2 bits per block
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020044 * 11b: block is good
45 * 00b: block is factory marked bad
46 * 01b, 10b: block is marked bad due to wear
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
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
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000053 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * 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
David Woodhousee0c7d762006-05-13 18:07:53 +010058 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000059 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
61
62#include <linux/slab.h>
63#include <linux/types.h>
64#include <linux/mtd/mtd.h>
Richard Genoud61de9da2012-09-11 15:50:54 +020065#include <linux/mtd/bbm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/mtd/nand.h>
67#include <linux/mtd/nand_ecc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/bitops.h>
69#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010070#include <linux/vmalloc.h>
Paul Gortmakerf3bcc012011-07-10 12:43:28 -040071#include <linux/export.h>
Brian Norris491ed062012-06-22 16:35:44 -070072#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Brian Norris771c5682013-07-30 17:52:55 -070074#define BBT_BLOCK_GOOD 0x00
75#define BBT_BLOCK_WORN 0x01
76#define BBT_BLOCK_RESERVED 0x02
77#define BBT_BLOCK_FACTORY_BAD 0x03
78
79#define BBT_ENTRY_MASK 0x03
80#define BBT_ENTRY_SHIFT 2
81
Brian Norrisb32843b2013-07-30 17:52:59 -070082static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
83
Brian Norris771c5682013-07-30 17:52:55 -070084static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
85{
86 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
87 entry >>= (block & BBT_ENTRY_MASK) * 2;
88 return entry & BBT_ENTRY_MASK;
89}
90
91static inline void bbt_mark_entry(struct nand_chip *chip, int block,
92 uint8_t mark)
93{
94 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
95 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
96}
97
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020098static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
99{
Brian Norris718894a2012-06-22 16:35:43 -0700100 if (memcmp(buf, td->pattern, td->len))
101 return -1;
102 return 0;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200103}
104
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000105/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * check_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700107 * @buf: the buffer to search
108 * @len: the length of buffer to search
109 * @paglen: the pagelength
110 * @td: search pattern descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700112 * Check for a pattern at the given place. Used to search bad block tables and
Brian Norrisdad22562013-07-30 17:53:00 -0700113 * good / bad block identifiers.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700114 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100115static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200117 if (td->options & NAND_BBT_NO_OOB)
118 return check_pattern_no_oob(buf, td);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* Compare the pattern */
Brian Norrisdad22562013-07-30 17:53:00 -0700121 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Brian Norris75b66d82011-09-07 13:13:41 -0700122 return -1;
Brian Norris58373ff2010-07-15 12:15:44 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return 0;
125}
126
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000127/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100128 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700129 * @buf: the buffer to search
130 * @td: search pattern descriptor
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100131 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700132 * Check for a pattern at the given place. Used to search bad block tables and
133 * good / bad block identifiers. Same as check_pattern, but no optional empty
134 * check.
135 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100136static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100137{
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100138 /* Compare the pattern */
Brian Norris491ed062012-06-22 16:35:44 -0700139 if (memcmp(buf + td->offs, td->pattern, td->len))
140 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100141 return 0;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200145 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700146 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200147 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700148 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200149 */
150static u32 add_marker_len(struct nand_bbt_descr *td)
151{
152 u32 len;
153
154 if (!(td->options & NAND_BBT_NO_OOB))
155 return 0;
156
157 len = td->len;
158 if (td->options & NAND_BBT_VERSION)
159 len++;
160 return len;
161}
162
163/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700165 * @mtd: MTD device structure
166 * @buf: temporary buffer
167 * @page: the starting page
168 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700169 * @td: the bbt describtion table
Brian Norrisb4d20d62013-07-30 17:52:56 -0700170 * @offs: block number offset in the table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100174static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200175 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Brian Norris167a8d52011-09-20 18:35:08 -0700177 int res, ret = 0, i, j, act = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct nand_chip *this = mtd->priv;
179 size_t retlen, len, totlen;
180 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200181 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700182 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200183 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200184 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200187 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700188 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700191 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200192 if (marker_len) {
193 /*
194 * In case the BBT marker is not in the OOB area it
195 * will be just in the first page.
196 */
197 len -= marker_len;
198 from += marker_len;
199 marker_len = 0;
200 }
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200201 res = mtd_read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700203 if (mtd_is_eccerr(res)) {
204 pr_info("nand_bbt: ECC error in BBT at "
205 "0x%012llx\n", from & ~mtd->writesize);
206 return res;
207 } else if (mtd_is_bitflip(res)) {
208 pr_info("nand_bbt: corrected error in BBT at "
209 "0x%012llx\n", from & ~mtd->writesize);
210 ret = res;
211 } else {
212 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return res;
214 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Analyse data */
218 for (i = 0; i < len; i++) {
219 uint8_t dat = buf[i];
Brian Norrisb4d20d62013-07-30 17:52:56 -0700220 for (j = 0; j < 8; j += bits, act++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 uint8_t tmp = (dat >> j) & msk;
222 if (tmp == msk)
223 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100224 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700225 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700226 (loff_t)(offs + act) <<
227 this->bbt_erase_shift);
228 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700229 BBT_BLOCK_RESERVED);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200230 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 continue;
232 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700233 /*
234 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700235 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700236 */
Brian Norrisd0370212011-07-19 10:06:08 -0700237 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700238 (loff_t)(offs + act) <<
239 this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700240 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (tmp == 0)
Brian Norrisb4d20d62013-07-30 17:52:56 -0700242 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700243 BBT_BLOCK_FACTORY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 else
Brian Norrisb4d20d62013-07-30 17:52:56 -0700245 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700246 BBT_BLOCK_WORN);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200247 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 totlen -= len;
251 from += len;
252 }
Brian Norris167a8d52011-09-20 18:35:08 -0700253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/**
257 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700258 * @mtd: MTD device structure
259 * @buf: temporary buffer
260 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700261 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700262 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700264 * Read the bad block table for all chips starting at a given page. We assume
265 * that the bbt bits are in consecutive order.
266 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100267static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct nand_chip *this = mtd->priv;
270 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (td->options & NAND_BBT_PERCHIP) {
273 int offs = 0;
274 for (i = 0; i < this->numchips; i++) {
275 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200276 res = read_bbt(mtd, buf, td->pages[i],
277 this->chipsize >> this->bbt_erase_shift,
278 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (res)
280 return res;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700281 offs += this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200284 res = read_bbt(mtd, buf, td->pages[0],
285 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (res)
287 return res;
288 }
289 return 0;
290}
291
Brian Norris8b6e50c2011-05-25 14:59:01 -0700292/* BBT marker is in the first page, no OOB */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700293static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200294 struct nand_bbt_descr *td)
295{
296 size_t retlen;
297 size_t len;
298
299 len = td->len;
300 if (td->options & NAND_BBT_VERSION)
301 len++;
302
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200303 return mtd_read(mtd, offs, len, &retlen, buf);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200304}
305
Brian Norrisa7e68832012-06-22 16:35:45 -0700306/**
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700307 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
Brian Norrisa7e68832012-06-22 16:35:45 -0700308 * @mtd: MTD device structure
309 * @buf: temporary buffer
310 * @offs: offset at which to scan
311 * @len: length of data region to read
312 *
313 * Scan read data from data+OOB. May traverse multiple pages, interleaving
314 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
315 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
316 */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700317static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200318 size_t len)
319{
320 struct mtd_oob_ops ops;
Brian Norrisa7e68832012-06-22 16:35:45 -0700321 int res, ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200322
Brian Norrisa7e68832012-06-22 16:35:45 -0700323 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200324 ops.ooboffs = 0;
325 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200326
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200327 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700328 ops.datbuf = buf;
329 ops.len = min(len, (size_t)mtd->writesize);
330 ops.oobbuf = buf + ops.len;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200331
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200332 res = mtd_read_oob(mtd, offs, &ops);
Brian Norrisa7e68832012-06-22 16:35:45 -0700333 if (res) {
334 if (!mtd_is_bitflip_or_eccerr(res))
335 return res;
336 else if (mtd_is_eccerr(res) || !ret)
337 ret = res;
338 }
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200339
340 buf += mtd->oobsize + mtd->writesize;
341 len -= mtd->writesize;
Dmitry Maluka34a57042012-05-11 20:51:51 +0300342 offs += mtd->writesize;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200343 }
Brian Norrisa7e68832012-06-22 16:35:45 -0700344 return ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200345}
346
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700347static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200348 size_t len, struct nand_bbt_descr *td)
349{
350 if (td->options & NAND_BBT_NO_OOB)
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700351 return scan_read_data(mtd, buf, offs, td);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200352 else
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700353 return scan_read_oob(mtd, buf, offs, len);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200354}
355
Brian Norris8b6e50c2011-05-25 14:59:01 -0700356/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200357static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
358 uint8_t *buf, uint8_t *oob)
359{
360 struct mtd_oob_ops ops;
361
Brian Norris0612b9d2011-08-30 18:45:40 -0700362 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200363 ops.ooboffs = 0;
364 ops.ooblen = mtd->oobsize;
365 ops.datbuf = buf;
366 ops.oobbuf = oob;
367 ops.len = len;
368
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200369 return mtd_write_oob(mtd, offs, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200370}
371
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200372static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
373{
374 u32 ver_offs = td->veroffs;
375
376 if (!(td->options & NAND_BBT_NO_OOB))
377 ver_offs += mtd->writesize;
378 return ver_offs;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/**
382 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700383 * @mtd: MTD device structure
384 * @buf: temporary buffer
385 * @td: descriptor for the bad block table
386 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700388 * Read the bad block table(s) for all chips starting at a given page. We
389 * assume that the bbt bits are in consecutive order.
390 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700391static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
392 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct nand_chip *this = mtd->priv;
395
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000396 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (td->options & NAND_BBT_VERSION) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700398 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200399 mtd->writesize, td);
400 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700401 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700402 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000405 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (md && (md->options & NAND_BBT_VERSION)) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700407 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Shmulik Ladkani7bb9c752012-06-10 13:58:12 +0300408 mtd->writesize, md);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200409 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700410 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700411 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Brian Norris8b6e50c2011-05-25 14:59:01 -0700415/* Scan a given block full */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200416static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
417 loff_t offs, uint8_t *buf, size_t readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300418 int scanlen, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200419{
420 int ret, j;
421
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700422 ret = scan_read_oob(mtd, buf, offs, readlen);
Brian Norrisafa17de2011-09-07 13:13:29 -0700423 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700424 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200425 return ret;
426
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300427 for (j = 0; j < numpages; j++, buf += scanlen) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200428 if (check_pattern(buf, scanlen, mtd->writesize, bd))
429 return 1;
430 }
431 return 0;
432}
433
Brian Norris8b6e50c2011-05-25 14:59:01 -0700434/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200435static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300436 loff_t offs, uint8_t *buf, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200437{
438 struct mtd_oob_ops ops;
439 int j, ret;
440
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200441 ops.ooblen = mtd->oobsize;
442 ops.oobbuf = buf;
443 ops.ooboffs = 0;
444 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700445 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200446
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300447 for (j = 0; j < numpages; j++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200448 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700449 * Read the full oob until read_oob is fixed to handle single
450 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200451 */
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200452 ret = mtd_read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700453 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700454 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200455 return ret;
456
457 if (check_short_pattern(buf, bd))
458 return 1;
459
460 offs += mtd->writesize;
461 }
462 return 0;
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/**
466 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700467 * @mtd: MTD device structure
468 * @buf: temporary buffer
469 * @bd: descriptor for the good/bad block search pattern
470 * @chip: create the table for a specific chip, -1 read all chips; applies only
471 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700473 * Create a bad block table by scanning the device for the given good/bad block
474 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200476static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
477 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 struct nand_chip *this = mtd->priv;
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300480 int i, numblocks, numpages, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int startblock;
482 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200483 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Brian Norris9a4d4d62011-07-19 10:06:07 -0700485 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (bd->options & NAND_BBT_SCANALLPAGES)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300488 numpages = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700489 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300490 numpages = 2;
Brian Norris58373ff2010-07-15 12:15:44 -0700491 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300492 numpages = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000493
Brian Norrisdad22562013-07-30 17:53:00 -0700494 /* We need only read few bytes from the OOB area */
495 scanlen = 0;
496 readlen = bd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (chip == -1) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700499 numblocks = mtd->size >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 startblock = 0;
501 from = 0;
502 } else {
503 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700504 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100505 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000506 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Brian Norrisb4d20d62013-07-30 17:52:56 -0700508 numblocks = this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 startblock = chip * numblocks;
510 numblocks += startblock;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700511 from = (loff_t)startblock << this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000513
Brian Norris5fb15492011-05-31 16:31:21 -0700514 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300515 from += mtd->erasesize - (mtd->writesize * numpages);
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700516
Brian Norrisb4d20d62013-07-30 17:52:56 -0700517 for (i = startblock; i < numblocks; i++) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000518 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000519
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200520 BUG_ON(bd->options & NAND_BBT_NO_OOB);
521
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200522 if (bd->options & NAND_BBT_SCANALLPAGES)
523 ret = scan_block_full(mtd, bd, from, buf, readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300524 scanlen, numpages);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200525 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300526 ret = scan_block_fast(mtd, bd, from, buf, numpages);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000527
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200528 if (ret < 0)
529 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000530
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200531 if (ret) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700532 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700533 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700534 i, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200535 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 from += (1 << this->bbt_erase_shift);
539 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543/**
544 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700545 * @mtd: MTD device structure
546 * @buf: temporary buffer
547 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700549 * Read the bad block table by searching for a given ident pattern. Search is
550 * preformed either from the beginning up or from the end of the device
551 * downwards. The search starts always at the start of a block. If the option
552 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
553 * the bad block information of this chip. This is necessary to provide support
554 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700556 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100558static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct nand_chip *this = mtd->priv;
561 int i, chips;
562 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200563 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200565 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Brian Norris8b6e50c2011-05-25 14:59:01 -0700567 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100569 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 dir = -1;
571 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000572 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000574 }
575
Brian Norris8b6e50c2011-05-25 14:59:01 -0700576 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (td->options & NAND_BBT_PERCHIP) {
578 chips = this->numchips;
579 bbtblocks = this->chipsize >> this->bbt_erase_shift;
580 startblock &= bbtblocks - 1;
581 } else {
582 chips = 1;
583 bbtblocks = mtd->size >> this->bbt_erase_shift;
584 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* Number of bits for each erase block in the bbt */
587 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 for (i = 0; i < chips; i++) {
590 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000591 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 td->pages[i] = -1;
593 /* Scan the maximum number of blocks */
594 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000597 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* Read first page */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700600 scan_read(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200601 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200602 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200604 offs = bbt_get_ver_offs(mtd, td);
605 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607 break;
608 }
609 }
610 startblock += this->chipsize >> this->bbt_erase_shift;
611 }
612 /* Check, if we found a bbt for each requested chip */
613 for (i = 0; i < chips; i++) {
614 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700615 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 else
Brian Norrisd0370212011-07-19 10:06:08 -0700617 pr_info("Bad block table found at page %d, version "
618 "0x%02X\n", td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623/**
624 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700625 * @mtd: MTD device structure
626 * @buf: temporary buffer
627 * @td: descriptor for the bad block table
628 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700630 * Search and read the bad block table(s).
631 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700632static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
633 struct nand_bbt_descr *td,
634 struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100637 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* Search the mirror table */
640 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100641 search_bbt(mtd, buf, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000642}
643
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000644/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700646 * @mtd: MTD device structure
647 * @buf: temporary buffer
648 * @td: descriptor for the bad block table
649 * @md: descriptor for the bad block table mirror
650 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700652 * (Re)write the bad block table.
653 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100654static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200655 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
656 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 struct erase_info einfo;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700660 int i, res, chip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700662 int nrchips, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 uint8_t msk[4];
664 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200665 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200667 struct mtd_oob_ops ops;
668
669 ops.ooblen = mtd->oobsize;
670 ops.ooboffs = 0;
671 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700672 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (!rcode)
675 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700676 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100678 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700679 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (chipsel == -1) {
681 nrchips = this->numchips;
682 } else {
683 nrchips = chipsel + 1;
684 chip = chipsel;
685 }
686 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100687 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000689 }
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /* Loop through the chips */
692 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700693 /*
694 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000695 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 * page nr. in td->pages.
697 */
698 if (td->pages[chip] != -1) {
699 page = td->pages[chip];
700 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Brian Norris8b6e50c2011-05-25 14:59:01 -0700703 /*
704 * Automatic placement of the bad block table. Search direction
705 * top -> down?
706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (td->options & NAND_BBT_LASTBLOCK) {
708 startblock = numblocks * (chip + 1) - 1;
709 dir = -1;
710 } else {
711 startblock = chip * numblocks;
712 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 for (i = 0; i < td->maxblocks; i++) {
716 int block = startblock + dir * i;
717 /* Check, if the block is bad */
Brian Norris771c5682013-07-30 17:52:55 -0700718 switch (bbt_get_entry(this, block)) {
719 case BBT_BLOCK_WORN:
720 case BBT_BLOCK_FACTORY_BAD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 continue;
722 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200723 page = block <<
724 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* Check, if the block is used by the mirror table */
726 if (!md || md->pages[chip] != page)
727 goto write;
728 }
Brian Norris9a4d4d62011-07-19 10:06:07 -0700729 pr_err("No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100731 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* Set up shift count and masks for the flash table */
734 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200735 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200737 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
738 msk[3] = 0x01;
739 break;
740 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
741 msk[3] = 0x03;
742 break;
743 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
744 msk[3] = 0x0f;
745 break;
746 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
747 msk[3] = 0xff;
748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 default: return -EINVAL;
750 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000751
Brian Norris596d7452011-09-07 13:13:33 -0700752 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Brian Norris8b6e50c2011-05-25 14:59:01 -0700754 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (td->options & NAND_BBT_SAVECONTENT) {
756 /* Make it block aligned */
Brian Norris596d7452011-09-07 13:13:33 -0700757 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 len = 1 << this->bbt_erase_shift;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200759 res = mtd_read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (res < 0) {
761 if (retlen != len) {
Brian Norrisd0370212011-07-19 10:06:08 -0700762 pr_info("nand_bbt: error reading block "
763 "for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return res;
765 }
Brian Norrisd0370212011-07-19 10:06:08 -0700766 pr_warn("nand_bbt: ECC error while reading "
767 "block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200769 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300770 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200771 ops.oobbuf = &buf[len];
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200772 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300773 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200774 goto outerr;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /* Calc the byte offset in the buffer */
777 pageoffs = page - (int)(to >> this->page_shift);
778 offs = pageoffs << this->page_shift;
779 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700780 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200781 ooboffs = len + (pageoffs * mtd->oobsize);
782
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200783 } else if (td->options & NAND_BBT_NO_OOB) {
784 ooboffs = 0;
785 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700786 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200787 if (td->options & NAND_BBT_VERSION)
788 offs++;
789 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700790 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200791 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700792 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200793 len = ALIGN(len, mtd->writesize);
794 /* Preset the buffer with 0xff */
795 memset(buf, 0xff, len);
796 /* Pattern is located at the begin of first page */
797 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else {
799 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700800 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700801 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200802 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200804 memset(buf, 0xff, len +
805 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200807 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200809 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000811
Thomas Gleixner9223a452006-05-23 17:21:03 +0200812 if (td->options & NAND_BBT_VERSION)
813 buf[ooboffs + td->veroffs] = td->version[chip];
814
Brian Norris8b6e50c2011-05-25 14:59:01 -0700815 /* Walk through the memory table */
Brian Norrisb4d20d62013-07-30 17:52:56 -0700816 for (i = 0; i < numblocks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 uint8_t dat;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700818 int sftcnt = (i << (3 - sft)) & sftmsk;
819 dat = bbt_get_entry(this, chip * numblocks + i);
820 /* Do not store the reserved bbt blocks! */
821 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000823
David Woodhousee0c7d762006-05-13 18:07:53 +0100824 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000826 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100828 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200829 if (res < 0)
830 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000831
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200832 res = scan_write_bbt(mtd, to, len, buf,
833 td->options & NAND_BBT_NO_OOB ? NULL :
834 &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200835 if (res < 0)
836 goto outerr;
837
Brian Norrisd0370212011-07-19 10:06:08 -0700838 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
839 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* Mark it as used */
842 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200845
846 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700847 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200848 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
851/**
852 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700853 * @mtd: MTD device structure
854 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700856 * The function creates a memory based bbt by scanning the device for
857 * manufacturer / software marked good / bad blocks.
858 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100859static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct nand_chip *this = mtd->priv;
862
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100863 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100867 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700868 * @mtd: MTD device structure
869 * @buf: temporary buffer
870 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700872 * The function checks the results of the previous call to read_bbt and creates
873 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
874 * for the chip/device. Update is necessary if one of the tables is missing or
875 * the version nr. of one table is less than the other.
876 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100877static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Brian Norris623978d2011-09-20 18:35:34 -0700879 int i, chips, writeops, create, chipsel, res, res2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct nand_chip *this = mtd->priv;
881 struct nand_bbt_descr *td = this->bbt_td;
882 struct nand_bbt_descr *md = this->bbt_md;
883 struct nand_bbt_descr *rd, *rd2;
884
Brian Norris8b6e50c2011-05-25 14:59:01 -0700885 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000886 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000888 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 for (i = 0; i < chips; i++) {
892 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700893 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 rd = NULL;
895 rd2 = NULL;
Brian Norris623978d2011-09-20 18:35:34 -0700896 res = res2 = 0;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700897 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700899 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (md) {
901 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700902 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700904 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000905 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700906 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700907 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700909 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700910 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 rd = td;
912 if (!(td->options & NAND_BBT_VERSION))
913 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700914 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700916 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 } else {
918 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700919 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 } else {
922 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700923 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700925 } else {
926 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000929
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700930 if (create) {
931 /* Create the bad block table by scanning the device? */
932 if (!(td->options & NAND_BBT_CREATE))
933 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000934
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700935 /* Create the table in memory by scanning the chip(s) */
936 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
937 create_bbt(mtd, buf, bd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700939 td->version[i] = 1;
940 if (md)
941 md->version[i] = 1;
942 }
943
Brian Norris8b6e50c2011-05-25 14:59:01 -0700944 /* Read back first? */
Brian Norris623978d2011-09-20 18:35:34 -0700945 if (rd) {
946 res = read_abs_bbt(mtd, buf, rd, chipsel);
947 if (mtd_is_eccerr(res)) {
948 /* Mark table as invalid */
949 rd->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700950 rd->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700951 i--;
952 continue;
953 }
954 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700955 /* If they weren't versioned, read both */
Brian Norris623978d2011-09-20 18:35:34 -0700956 if (rd2) {
957 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
958 if (mtd_is_eccerr(res2)) {
959 /* Mark table as invalid */
960 rd2->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700961 rd2->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700962 i--;
963 continue;
964 }
965 }
966
967 /* Scrub the flash table(s)? */
968 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
969 writeops = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Brian Norrisdadc17a2011-09-20 18:35:57 -0700971 /* Update version numbers before writing */
972 if (md) {
973 td->version[i] = max(td->version[i], md->version[i]);
974 md->version[i] = td->version[i];
975 }
976
Brian Norris8b6e50c2011-05-25 14:59:01 -0700977 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100979 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (res < 0)
981 return res;
982 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000983
Brian Norris8b6e50c2011-05-25 14:59:01 -0700984 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100986 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (res < 0)
988 return res;
989 }
990 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000995 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -0700996 * @mtd: MTD device structure
997 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700999 * The bad block table regions are marked as "bad" to prevent accidental
1000 * erasures / writes. The regions are identified by the mark 0x02.
1001 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001002static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 struct nand_chip *this = mtd->priv;
1005 int i, j, chips, block, nrblocks, update;
Brian Norris771c5682013-07-30 17:52:55 -07001006 uint8_t oldval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Brian Norris8b6e50c2011-05-25 14:59:01 -07001008 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (td->options & NAND_BBT_PERCHIP) {
1010 chips = this->numchips;
1011 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1012 } else {
1013 chips = 1;
1014 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001015 }
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 for (i = 0; i < chips; i++) {
1018 if ((td->options & NAND_BBT_ABSPAGE) ||
1019 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001020 if (td->pages[i] == -1)
1021 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Brian Norrisb4d20d62013-07-30 17:52:56 -07001023 oldval = bbt_get_entry(this, block);
1024 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001025 if ((oldval != BBT_BLOCK_RESERVED) &&
1026 td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001027 nand_update_bbt(mtd, (loff_t)block <<
1028 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 continue;
1030 }
1031 update = 0;
1032 if (td->options & NAND_BBT_LASTBLOCK)
1033 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001034 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 block = i * nrblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 for (j = 0; j < td->maxblocks; j++) {
Brian Norrisb4d20d62013-07-30 17:52:56 -07001037 oldval = bbt_get_entry(this, block);
1038 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001039 if (oldval != BBT_BLOCK_RESERVED)
David Woodhousee0c7d762006-05-13 18:07:53 +01001040 update = 1;
Brian Norrisb4d20d62013-07-30 17:52:56 -07001041 block++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001042 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001043 /*
1044 * If we want reserved blocks to be recorded to flash, and some
1045 * new ones have been marked, then we need to update the stored
1046 * bbts. This should only happen once.
1047 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (update && td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001049 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1050 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052}
1053
1054/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001055 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001056 * @mtd: MTD device structure
1057 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001058 *
1059 * This functions performs a few sanity checks on the bad block description
1060 * table.
1061 */
1062static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1063{
1064 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001065 u32 pattern_len;
1066 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001067 u32 table_size;
1068
1069 if (!bd)
1070 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001071
1072 pattern_len = bd->len;
1073 bits = bd->options & NAND_BBT_NRBITS_MSK;
1074
Brian Norrisa40f7342011-05-31 16:31:22 -07001075 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001076 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001077 BUG_ON(!bits);
1078
1079 if (bd->options & NAND_BBT_VERSION)
1080 pattern_len++;
1081
1082 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001083 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001084 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001085 BUG_ON(bd->offs);
1086 if (bd->options & NAND_BBT_VERSION)
1087 BUG_ON(bd->veroffs != bd->len);
1088 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1089 }
1090
1091 if (bd->options & NAND_BBT_PERCHIP)
1092 table_size = this->chipsize >> this->bbt_erase_shift;
1093 else
1094 table_size = mtd->size >> this->bbt_erase_shift;
1095 table_size >>= 3;
1096 table_size *= bits;
1097 if (bd->options & NAND_BBT_NO_OOB)
1098 table_size += pattern_len;
1099 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1100}
1101
1102/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001104 * @mtd: MTD device structure
1105 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001107 * The function checks, if a bad block table(s) is/are already available. If
1108 * not it scans the device for manufacturer marked good / bad blocks and writes
1109 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001111 * The bad block table memory is allocated here. It must be freed by calling
1112 * the nand_free_bbt function.
1113 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001114int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 struct nand_chip *this = mtd->priv;
1117 int len, res = 0;
1118 uint8_t *buf;
1119 struct nand_bbt_descr *td = this->bbt_td;
1120 struct nand_bbt_descr *md = this->bbt_md;
1121
1122 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001123 /*
1124 * Allocate memory (2bit per block) and clear the memory bad block
1125 * table.
1126 */
Burman Yan95b93a02006-11-15 21:10:29 +02001127 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001128 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Brian Norris8b6e50c2011-05-25 14:59:01 -07001131 /*
1132 * If no primary table decriptor is given, scan the device to build a
1133 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001135 if (!td) {
1136 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001137 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
David Woodhousee0c7d762006-05-13 18:07:53 +01001138 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001139 this->bbt = NULL;
1140 }
1141 return res;
1142 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001143 verify_bbt_descr(mtd, td);
1144 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /* Allocate a temporary buffer for one eraseblock incl. oob */
1147 len = (1 << this->bbt_erase_shift);
1148 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001149 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001151 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 this->bbt = NULL;
1153 return -ENOMEM;
1154 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001155
Brian Norris8b6e50c2011-05-25 14:59:01 -07001156 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (td->options & NAND_BBT_ABSPAGE) {
Brian Norris7b5a2d42012-06-22 16:35:41 -07001158 read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001159 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /* Search the bad block table using a pattern in oob */
Brian Norris7b5a2d42012-06-22 16:35:41 -07001161 search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Brian Norris7b5a2d42012-06-22 16:35:41 -07001164 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001167 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001169 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001170
David Woodhousee0c7d762006-05-13 18:07:53 +01001171 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return res;
1173}
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/**
Brian Norrisb32843b2013-07-30 17:52:59 -07001176 * nand_update_bbt - update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001177 * @mtd: MTD device structure
1178 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 * The function updates the bad block table(s).
1181 */
Brian Norrisb32843b2013-07-30 17:52:59 -07001182static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 struct nand_chip *this = mtd->priv;
Brian Norris1196ac52011-09-07 13:13:32 -07001185 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 int chip, chipsel;
1187 uint8_t *buf;
1188 struct nand_bbt_descr *td = this->bbt_td;
1189 struct nand_bbt_descr *md = this->bbt_md;
1190
1191 if (!this->bbt || !td)
1192 return -EINVAL;
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /* Allocate a temporary buffer for one eraseblock incl. oob */
1195 len = (1 << this->bbt_erase_shift);
1196 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001197 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001198 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001200
Brian Norris8b6e50c2011-05-25 14:59:01 -07001201 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001203 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 chipsel = chip;
1205 } else {
1206 chip = 0;
1207 chipsel = -1;
1208 }
1209
1210 td->version[chip]++;
1211 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001212 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Brian Norris8b6e50c2011-05-25 14:59:01 -07001214 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001215 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001216 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (res < 0)
1218 goto out;
1219 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001220 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001221 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001222 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
David Woodhousee0c7d762006-05-13 18:07:53 +01001225 out:
1226 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return res;
1228}
1229
Brian Norris8b6e50c2011-05-25 14:59:01 -07001230/*
1231 * Define some generic bad / good block scan pattern which are used
1232 * while scanning a device for factory marked good / bad blocks.
1233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1235
Brian Norris7854d3f2011-06-23 14:12:08 -07001236/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1238static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1239
1240static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001241 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1243 .offs = 8,
1244 .len = 4,
1245 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001246 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 .pattern = bbt_pattern
1248};
1249
1250static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001251 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1253 .offs = 8,
1254 .len = 4,
1255 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001256 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 .pattern = mirror_pattern
1258};
1259
Brian Norris9fd6b372012-06-22 16:35:40 -07001260static struct nand_bbt_descr bbt_main_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001261 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1262 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1263 | NAND_BBT_NO_OOB,
1264 .len = 4,
1265 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001266 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001267 .pattern = bbt_pattern
1268};
1269
Brian Norris9fd6b372012-06-22 16:35:40 -07001270static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001271 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1272 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1273 | NAND_BBT_NO_OOB,
1274 .len = 4,
1275 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001276 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001277 .pattern = mirror_pattern
1278};
1279
Brian Norris752ed6c2011-09-20 18:36:42 -07001280#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Brian Norris58373ff2010-07-15 12:15:44 -07001281/**
Brian Norris752ed6c2011-09-20 18:36:42 -07001282 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001283 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001284 *
1285 * This function allocates and initializes a nand_bbt_descr for BBM detection
Brian Norris752ed6c2011-09-20 18:36:42 -07001286 * based on the properties of @this. The new descriptor is stored in
Brian Norris58373ff2010-07-15 12:15:44 -07001287 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1288 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001289 */
Brian Norris752ed6c2011-09-20 18:36:42 -07001290static int nand_create_badblock_pattern(struct nand_chip *this)
Brian Norris58373ff2010-07-15 12:15:44 -07001291{
1292 struct nand_bbt_descr *bd;
1293 if (this->badblock_pattern) {
Brian Norris752ed6c2011-09-20 18:36:42 -07001294 pr_warn("Bad block pattern already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001295 return -EINVAL;
1296 }
1297 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001298 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001299 return -ENOMEM;
Brian Norris752ed6c2011-09-20 18:36:42 -07001300 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Brian Norris58373ff2010-07-15 12:15:44 -07001301 bd->offs = this->badblockpos;
1302 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1303 bd->pattern = scan_ff_pattern;
1304 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1305 this->badblock_pattern = bd;
1306 return 0;
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001310 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001311 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001313 * This function selects the default bad block table support for the device and
1314 * calls the nand_scan_bbt function.
1315 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001316int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001319
Brian Norris8b6e50c2011-05-25 14:59:01 -07001320 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001321 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001322 /* Use the default pattern descriptors */
1323 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001324 if (this->bbt_options & NAND_BBT_NO_OOB) {
Brian Norris9fd6b372012-06-22 16:35:40 -07001325 this->bbt_td = &bbt_main_no_oob_descr;
1326 this->bbt_md = &bbt_mirror_no_oob_descr;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001327 } else {
1328 this->bbt_td = &bbt_main_descr;
1329 this->bbt_md = &bbt_mirror_descr;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 } else {
1333 this->bbt_td = NULL;
1334 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001336
1337 if (!this->badblock_pattern)
Brian Norris752ed6c2011-09-20 18:36:42 -07001338 nand_create_badblock_pattern(this);
Brian Norrisa2f812d2011-03-18 21:53:42 -07001339
David Woodhousee0c7d762006-05-13 18:07:53 +01001340 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
1343/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001344 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001345 * @mtd: MTD device structure
1346 * @offs: offset in the device
1347 * @allowbbt: allow access to bad block table region
1348 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001349int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 struct nand_chip *this = mtd->priv;
Brian Norris39dbb022013-07-30 17:52:57 -07001352 int block, res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001353
Brian Norrisb4d20d62013-07-30 17:52:56 -07001354 block = (int)(offs >> this->bbt_erase_shift);
1355 res = bbt_get_entry(this, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Brian Norris289c0522011-07-19 10:06:09 -07001357 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1358 "(block %d) 0x%02x\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -07001359 (unsigned int)offs, block, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Brian Norris39dbb022013-07-30 17:52:57 -07001361 switch (res) {
Brian Norris771c5682013-07-30 17:52:55 -07001362 case BBT_BLOCK_GOOD:
David Woodhousee0c7d762006-05-13 18:07:53 +01001363 return 0;
Brian Norris771c5682013-07-30 17:52:55 -07001364 case BBT_BLOCK_WORN:
David Woodhousee0c7d762006-05-13 18:07:53 +01001365 return 1;
Brian Norris771c5682013-07-30 17:52:55 -07001366 case BBT_BLOCK_RESERVED:
David Woodhousee0c7d762006-05-13 18:07:53 +01001367 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369 return 1;
1370}
1371
Brian Norrisb32843b2013-07-30 17:52:59 -07001372/**
1373 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1374 * @mtd: MTD device structure
1375 * @offs: offset of the bad block
1376 */
1377int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1378{
1379 struct nand_chip *this = mtd->priv;
1380 int block, ret = 0;
1381
1382 block = (int)(offs >> this->bbt_erase_shift);
1383
1384 /* Mark bad block in memory */
1385 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1386
1387 /* Update flash-based bad block table */
1388 if (this->bbt_options & NAND_BBT_USE_FLASH)
1389 ret = nand_update_bbt(mtd, offs);
1390
1391 return ret;
1392}
1393
David Woodhousee0c7d762006-05-13 18:07:53 +01001394EXPORT_SYMBOL(nand_scan_bbt);