blob: ae3fb58591cf93afa451fb65cf026314c53d3e68 [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
113 * good / bad block identifiers. If the SCAN_EMPTY option is set then check, if
114 * all bytes except the pattern area contain 0xff.
115 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100116static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Brian Norris491ed062012-06-22 16:35:44 -0700118 int end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 uint8_t *p = buf;
120
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200121 if (td->options & NAND_BBT_NO_OOB)
122 return check_pattern_no_oob(buf, td);
123
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100124 end = paglen + td->offs;
Brian Norris491ed062012-06-22 16:35:44 -0700125 if (td->options & NAND_BBT_SCANEMPTY)
126 if (memchr_inv(p, 0xff, end))
127 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100128 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* Compare the pattern */
Brian Norris75b66d82011-09-07 13:13:41 -0700131 if (memcmp(p, td->pattern, td->len))
132 return -1;
Brian Norris58373ff2010-07-15 12:15:44 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000135 p += td->len;
136 end += td->len;
Brian Norris491ed062012-06-22 16:35:44 -0700137 if (memchr_inv(p, 0xff, len - end))
138 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 return 0;
141}
142
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000143/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100144 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700145 * @buf: the buffer to search
146 * @td: search pattern descriptor
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100147 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700148 * Check for a pattern at the given place. Used to search bad block tables and
149 * good / bad block identifiers. Same as check_pattern, but no optional empty
150 * check.
151 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100152static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100153{
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100154 /* Compare the pattern */
Brian Norris491ed062012-06-22 16:35:44 -0700155 if (memcmp(buf + td->offs, td->pattern, td->len))
156 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100157 return 0;
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200161 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700162 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200163 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700164 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200165 */
166static u32 add_marker_len(struct nand_bbt_descr *td)
167{
168 u32 len;
169
170 if (!(td->options & NAND_BBT_NO_OOB))
171 return 0;
172
173 len = td->len;
174 if (td->options & NAND_BBT_VERSION)
175 len++;
176 return len;
177}
178
179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700181 * @mtd: MTD device structure
182 * @buf: temporary buffer
183 * @page: the starting page
184 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700185 * @td: the bbt describtion table
Brian Norrisb4d20d62013-07-30 17:52:56 -0700186 * @offs: block number offset in the table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
188 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100190static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200191 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Brian Norris167a8d52011-09-20 18:35:08 -0700193 int res, ret = 0, i, j, act = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct nand_chip *this = mtd->priv;
195 size_t retlen, len, totlen;
196 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200197 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700198 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200199 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200200 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200203 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700204 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700207 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200208 if (marker_len) {
209 /*
210 * In case the BBT marker is not in the OOB area it
211 * will be just in the first page.
212 */
213 len -= marker_len;
214 from += marker_len;
215 marker_len = 0;
216 }
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200217 res = mtd_read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700219 if (mtd_is_eccerr(res)) {
220 pr_info("nand_bbt: ECC error in BBT at "
221 "0x%012llx\n", from & ~mtd->writesize);
222 return res;
223 } else if (mtd_is_bitflip(res)) {
224 pr_info("nand_bbt: corrected error in BBT at "
225 "0x%012llx\n", from & ~mtd->writesize);
226 ret = res;
227 } else {
228 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return res;
230 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* Analyse data */
234 for (i = 0; i < len; i++) {
235 uint8_t dat = buf[i];
Brian Norrisb4d20d62013-07-30 17:52:56 -0700236 for (j = 0; j < 8; j += bits, act++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 uint8_t tmp = (dat >> j) & msk;
238 if (tmp == msk)
239 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100240 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700241 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700242 (loff_t)(offs + act) <<
243 this->bbt_erase_shift);
244 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700245 BBT_BLOCK_RESERVED);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200246 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 continue;
248 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700249 /*
250 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700251 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700252 */
Brian Norrisd0370212011-07-19 10:06:08 -0700253 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700254 (loff_t)(offs + act) <<
255 this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700256 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (tmp == 0)
Brian Norrisb4d20d62013-07-30 17:52:56 -0700258 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700259 BBT_BLOCK_FACTORY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 else
Brian Norrisb4d20d62013-07-30 17:52:56 -0700261 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700262 BBT_BLOCK_WORN);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200263 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 totlen -= len;
267 from += len;
268 }
Brian Norris167a8d52011-09-20 18:35:08 -0700269 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272/**
273 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700274 * @mtd: MTD device structure
275 * @buf: temporary buffer
276 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700277 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700278 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700280 * Read the bad block table for all chips starting at a given page. We assume
281 * that the bbt bits are in consecutive order.
282 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100283static 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 -0700284{
285 struct nand_chip *this = mtd->priv;
286 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (td->options & NAND_BBT_PERCHIP) {
289 int offs = 0;
290 for (i = 0; i < this->numchips; i++) {
291 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200292 res = read_bbt(mtd, buf, td->pages[i],
293 this->chipsize >> this->bbt_erase_shift,
294 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (res)
296 return res;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700297 offs += this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200300 res = read_bbt(mtd, buf, td->pages[0],
301 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (res)
303 return res;
304 }
305 return 0;
306}
307
Brian Norris8b6e50c2011-05-25 14:59:01 -0700308/* BBT marker is in the first page, no OOB */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700309static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200310 struct nand_bbt_descr *td)
311{
312 size_t retlen;
313 size_t len;
314
315 len = td->len;
316 if (td->options & NAND_BBT_VERSION)
317 len++;
318
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200319 return mtd_read(mtd, offs, len, &retlen, buf);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200320}
321
Brian Norrisa7e68832012-06-22 16:35:45 -0700322/**
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700323 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
Brian Norrisa7e68832012-06-22 16:35:45 -0700324 * @mtd: MTD device structure
325 * @buf: temporary buffer
326 * @offs: offset at which to scan
327 * @len: length of data region to read
328 *
329 * Scan read data from data+OOB. May traverse multiple pages, interleaving
330 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
331 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
332 */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700333static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200334 size_t len)
335{
336 struct mtd_oob_ops ops;
Brian Norrisa7e68832012-06-22 16:35:45 -0700337 int res, ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200338
Brian Norrisa7e68832012-06-22 16:35:45 -0700339 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200340 ops.ooboffs = 0;
341 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200342
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200343 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700344 ops.datbuf = buf;
345 ops.len = min(len, (size_t)mtd->writesize);
346 ops.oobbuf = buf + ops.len;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200347
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200348 res = mtd_read_oob(mtd, offs, &ops);
Brian Norrisa7e68832012-06-22 16:35:45 -0700349 if (res) {
350 if (!mtd_is_bitflip_or_eccerr(res))
351 return res;
352 else if (mtd_is_eccerr(res) || !ret)
353 ret = res;
354 }
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200355
356 buf += mtd->oobsize + mtd->writesize;
357 len -= mtd->writesize;
Dmitry Maluka34a57042012-05-11 20:51:51 +0300358 offs += mtd->writesize;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200359 }
Brian Norrisa7e68832012-06-22 16:35:45 -0700360 return ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200361}
362
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700363static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200364 size_t len, struct nand_bbt_descr *td)
365{
366 if (td->options & NAND_BBT_NO_OOB)
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700367 return scan_read_data(mtd, buf, offs, td);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200368 else
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700369 return scan_read_oob(mtd, buf, offs, len);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200370}
371
Brian Norris8b6e50c2011-05-25 14:59:01 -0700372/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200373static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
374 uint8_t *buf, uint8_t *oob)
375{
376 struct mtd_oob_ops ops;
377
Brian Norris0612b9d2011-08-30 18:45:40 -0700378 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200379 ops.ooboffs = 0;
380 ops.ooblen = mtd->oobsize;
381 ops.datbuf = buf;
382 ops.oobbuf = oob;
383 ops.len = len;
384
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200385 return mtd_write_oob(mtd, offs, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200386}
387
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200388static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
389{
390 u32 ver_offs = td->veroffs;
391
392 if (!(td->options & NAND_BBT_NO_OOB))
393 ver_offs += mtd->writesize;
394 return ver_offs;
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
398 * 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 -0700399 * @mtd: MTD device structure
400 * @buf: temporary buffer
401 * @td: descriptor for the bad block table
402 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700404 * Read the bad block table(s) for all chips starting at a given page. We
405 * assume that the bbt bits are in consecutive order.
406 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700407static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
408 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 struct nand_chip *this = mtd->priv;
411
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000412 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (td->options & NAND_BBT_VERSION) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700414 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200415 mtd->writesize, td);
416 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700417 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700418 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000421 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (md && (md->options & NAND_BBT_VERSION)) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700423 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Shmulik Ladkani7bb9c752012-06-10 13:58:12 +0300424 mtd->writesize, md);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200425 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700426 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700427 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Brian Norris8b6e50c2011-05-25 14:59:01 -0700431/* Scan a given block full */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200432static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
433 loff_t offs, uint8_t *buf, size_t readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300434 int scanlen, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200435{
436 int ret, j;
437
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700438 ret = scan_read_oob(mtd, buf, offs, readlen);
Brian Norrisafa17de2011-09-07 13:13:29 -0700439 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700440 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200441 return ret;
442
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300443 for (j = 0; j < numpages; j++, buf += scanlen) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200444 if (check_pattern(buf, scanlen, mtd->writesize, bd))
445 return 1;
446 }
447 return 0;
448}
449
Brian Norris8b6e50c2011-05-25 14:59:01 -0700450/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200451static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300452 loff_t offs, uint8_t *buf, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200453{
454 struct mtd_oob_ops ops;
455 int j, ret;
456
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200457 ops.ooblen = mtd->oobsize;
458 ops.oobbuf = buf;
459 ops.ooboffs = 0;
460 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700461 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200462
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300463 for (j = 0; j < numpages; j++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200464 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700465 * Read the full oob until read_oob is fixed to handle single
466 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200467 */
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200468 ret = mtd_read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700469 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700470 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200471 return ret;
472
473 if (check_short_pattern(buf, bd))
474 return 1;
475
476 offs += mtd->writesize;
477 }
478 return 0;
479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481/**
482 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700483 * @mtd: MTD device structure
484 * @buf: temporary buffer
485 * @bd: descriptor for the good/bad block search pattern
486 * @chip: create the table for a specific chip, -1 read all chips; applies only
487 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700489 * Create a bad block table by scanning the device for the given good/bad block
490 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200492static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
493 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct nand_chip *this = mtd->priv;
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300496 int i, numblocks, numpages, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 int startblock;
498 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200499 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Brian Norris9a4d4d62011-07-19 10:06:07 -0700501 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (bd->options & NAND_BBT_SCANALLPAGES)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300504 numpages = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700505 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300506 numpages = 2;
Brian Norris58373ff2010-07-15 12:15:44 -0700507 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300508 numpages = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000509
510 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
511 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200512 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000513 readlen = bd->len;
514 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000515 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200516 scanlen = mtd->writesize + mtd->oobsize;
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300517 readlen = numpages * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (chip == -1) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700521 numblocks = mtd->size >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 startblock = 0;
523 from = 0;
524 } else {
525 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700526 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100527 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000528 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Brian Norrisb4d20d62013-07-30 17:52:56 -0700530 numblocks = this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 startblock = chip * numblocks;
532 numblocks += startblock;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700533 from = (loff_t)startblock << this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000535
Brian Norris5fb15492011-05-31 16:31:21 -0700536 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300537 from += mtd->erasesize - (mtd->writesize * numpages);
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700538
Brian Norrisb4d20d62013-07-30 17:52:56 -0700539 for (i = startblock; i < numblocks; i++) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000540 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000541
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200542 BUG_ON(bd->options & NAND_BBT_NO_OOB);
543
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200544 if (bd->options & NAND_BBT_SCANALLPAGES)
545 ret = scan_block_full(mtd, bd, from, buf, readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300546 scanlen, numpages);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200547 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300548 ret = scan_block_fast(mtd, bd, from, buf, numpages);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000549
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200550 if (ret < 0)
551 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000552
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200553 if (ret) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700554 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700555 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700556 i, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200557 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 from += (1 << this->bbt_erase_shift);
561 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565/**
566 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700567 * @mtd: MTD device structure
568 * @buf: temporary buffer
569 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700571 * Read the bad block table by searching for a given ident pattern. Search is
572 * preformed either from the beginning up or from the end of the device
573 * downwards. The search starts always at the start of a block. If the option
574 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
575 * the bad block information of this chip. This is necessary to provide support
576 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700578 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100580static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 struct nand_chip *this = mtd->priv;
583 int i, chips;
584 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200585 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200587 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Brian Norris8b6e50c2011-05-25 14:59:01 -0700589 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100591 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 dir = -1;
593 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000594 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000596 }
597
Brian Norris8b6e50c2011-05-25 14:59:01 -0700598 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (td->options & NAND_BBT_PERCHIP) {
600 chips = this->numchips;
601 bbtblocks = this->chipsize >> this->bbt_erase_shift;
602 startblock &= bbtblocks - 1;
603 } else {
604 chips = 1;
605 bbtblocks = mtd->size >> this->bbt_erase_shift;
606 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /* Number of bits for each erase block in the bbt */
609 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 for (i = 0; i < chips; i++) {
612 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000613 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 td->pages[i] = -1;
615 /* Scan the maximum number of blocks */
616 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000619 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Read first page */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700622 scan_read(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200623 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200624 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200626 offs = bbt_get_ver_offs(mtd, td);
627 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629 break;
630 }
631 }
632 startblock += this->chipsize >> this->bbt_erase_shift;
633 }
634 /* Check, if we found a bbt for each requested chip */
635 for (i = 0; i < chips; i++) {
636 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700637 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 else
Brian Norrisd0370212011-07-19 10:06:08 -0700639 pr_info("Bad block table found at page %d, version "
640 "0x%02X\n", td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645/**
646 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700647 * @mtd: MTD device structure
648 * @buf: temporary buffer
649 * @td: descriptor for the bad block table
650 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700652 * Search and read the bad block table(s).
653 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700654static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
655 struct nand_bbt_descr *td,
656 struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100659 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* Search the mirror table */
662 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100663 search_bbt(mtd, buf, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000664}
665
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000666/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700668 * @mtd: MTD device structure
669 * @buf: temporary buffer
670 * @td: descriptor for the bad block table
671 * @md: descriptor for the bad block table mirror
672 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700674 * (Re)write the bad block table.
675 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100676static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200677 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
678 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct erase_info einfo;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700682 int i, res, chip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700684 int nrchips, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 uint8_t msk[4];
686 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200687 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200689 struct mtd_oob_ops ops;
690
691 ops.ooblen = mtd->oobsize;
692 ops.ooboffs = 0;
693 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700694 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (!rcode)
697 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700698 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100700 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700701 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (chipsel == -1) {
703 nrchips = this->numchips;
704 } else {
705 nrchips = chipsel + 1;
706 chip = chipsel;
707 }
708 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100709 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000711 }
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Loop through the chips */
714 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700715 /*
716 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000717 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * page nr. in td->pages.
719 */
720 if (td->pages[chip] != -1) {
721 page = td->pages[chip];
722 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Brian Norris8b6e50c2011-05-25 14:59:01 -0700725 /*
726 * Automatic placement of the bad block table. Search direction
727 * top -> down?
728 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (td->options & NAND_BBT_LASTBLOCK) {
730 startblock = numblocks * (chip + 1) - 1;
731 dir = -1;
732 } else {
733 startblock = chip * numblocks;
734 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 for (i = 0; i < td->maxblocks; i++) {
738 int block = startblock + dir * i;
739 /* Check, if the block is bad */
Brian Norris771c5682013-07-30 17:52:55 -0700740 switch (bbt_get_entry(this, block)) {
741 case BBT_BLOCK_WORN:
742 case BBT_BLOCK_FACTORY_BAD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 continue;
744 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200745 page = block <<
746 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /* Check, if the block is used by the mirror table */
748 if (!md || md->pages[chip] != page)
749 goto write;
750 }
Brian Norris9a4d4d62011-07-19 10:06:07 -0700751 pr_err("No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100753 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /* Set up shift count and masks for the flash table */
756 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200757 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200759 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
760 msk[3] = 0x01;
761 break;
762 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
763 msk[3] = 0x03;
764 break;
765 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
766 msk[3] = 0x0f;
767 break;
768 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
769 msk[3] = 0xff;
770 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 default: return -EINVAL;
772 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000773
Brian Norris596d7452011-09-07 13:13:33 -0700774 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Brian Norris8b6e50c2011-05-25 14:59:01 -0700776 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (td->options & NAND_BBT_SAVECONTENT) {
778 /* Make it block aligned */
Brian Norris596d7452011-09-07 13:13:33 -0700779 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 len = 1 << this->bbt_erase_shift;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200781 res = mtd_read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (res < 0) {
783 if (retlen != len) {
Brian Norrisd0370212011-07-19 10:06:08 -0700784 pr_info("nand_bbt: error reading block "
785 "for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return res;
787 }
Brian Norrisd0370212011-07-19 10:06:08 -0700788 pr_warn("nand_bbt: ECC error while reading "
789 "block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200791 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300792 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200793 ops.oobbuf = &buf[len];
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200794 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300795 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200796 goto outerr;
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* Calc the byte offset in the buffer */
799 pageoffs = page - (int)(to >> this->page_shift);
800 offs = pageoffs << this->page_shift;
801 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700802 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200803 ooboffs = len + (pageoffs * mtd->oobsize);
804
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200805 } else if (td->options & NAND_BBT_NO_OOB) {
806 ooboffs = 0;
807 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700808 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200809 if (td->options & NAND_BBT_VERSION)
810 offs++;
811 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700812 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200813 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700814 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200815 len = ALIGN(len, mtd->writesize);
816 /* Preset the buffer with 0xff */
817 memset(buf, 0xff, len);
818 /* Pattern is located at the begin of first page */
819 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 } else {
821 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700822 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700823 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200824 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200826 memset(buf, 0xff, len +
827 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200829 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200831 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000833
Thomas Gleixner9223a452006-05-23 17:21:03 +0200834 if (td->options & NAND_BBT_VERSION)
835 buf[ooboffs + td->veroffs] = td->version[chip];
836
Brian Norris8b6e50c2011-05-25 14:59:01 -0700837 /* Walk through the memory table */
Brian Norrisb4d20d62013-07-30 17:52:56 -0700838 for (i = 0; i < numblocks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 uint8_t dat;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700840 int sftcnt = (i << (3 - sft)) & sftmsk;
841 dat = bbt_get_entry(this, chip * numblocks + i);
842 /* Do not store the reserved bbt blocks! */
843 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000845
David Woodhousee0c7d762006-05-13 18:07:53 +0100846 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000848 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100850 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200851 if (res < 0)
852 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000853
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200854 res = scan_write_bbt(mtd, to, len, buf,
855 td->options & NAND_BBT_NO_OOB ? NULL :
856 &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200857 if (res < 0)
858 goto outerr;
859
Brian Norrisd0370212011-07-19 10:06:08 -0700860 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
861 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* Mark it as used */
864 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200867
868 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700869 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200870 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
874 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700875 * @mtd: MTD device structure
876 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700878 * The function creates a memory based bbt by scanning the device for
879 * manufacturer / software marked good / bad blocks.
880 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100881static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 struct nand_chip *this = mtd->priv;
884
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000885 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100886 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100890 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700891 * @mtd: MTD device structure
892 * @buf: temporary buffer
893 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700895 * The function checks the results of the previous call to read_bbt and creates
896 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
897 * for the chip/device. Update is necessary if one of the tables is missing or
898 * the version nr. of one table is less than the other.
899 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100900static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Brian Norris623978d2011-09-20 18:35:34 -0700902 int i, chips, writeops, create, chipsel, res, res2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 struct nand_chip *this = mtd->priv;
904 struct nand_bbt_descr *td = this->bbt_td;
905 struct nand_bbt_descr *md = this->bbt_md;
906 struct nand_bbt_descr *rd, *rd2;
907
Brian Norris8b6e50c2011-05-25 14:59:01 -0700908 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000909 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000911 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 for (i = 0; i < chips; i++) {
915 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700916 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 rd = NULL;
918 rd2 = NULL;
Brian Norris623978d2011-09-20 18:35:34 -0700919 res = res2 = 0;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700920 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700922 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (md) {
924 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700925 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700927 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000928 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700929 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700930 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700932 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700933 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 rd = td;
935 if (!(td->options & NAND_BBT_VERSION))
936 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700937 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700939 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 } else {
941 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700942 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 } else {
945 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700946 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700948 } else {
949 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000952
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700953 if (create) {
954 /* Create the bad block table by scanning the device? */
955 if (!(td->options & NAND_BBT_CREATE))
956 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000957
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700958 /* Create the table in memory by scanning the chip(s) */
959 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
960 create_bbt(mtd, buf, bd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700962 td->version[i] = 1;
963 if (md)
964 md->version[i] = 1;
965 }
966
Brian Norris8b6e50c2011-05-25 14:59:01 -0700967 /* Read back first? */
Brian Norris623978d2011-09-20 18:35:34 -0700968 if (rd) {
969 res = read_abs_bbt(mtd, buf, rd, chipsel);
970 if (mtd_is_eccerr(res)) {
971 /* Mark table as invalid */
972 rd->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700973 rd->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700974 i--;
975 continue;
976 }
977 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700978 /* If they weren't versioned, read both */
Brian Norris623978d2011-09-20 18:35:34 -0700979 if (rd2) {
980 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
981 if (mtd_is_eccerr(res2)) {
982 /* Mark table as invalid */
983 rd2->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700984 rd2->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700985 i--;
986 continue;
987 }
988 }
989
990 /* Scrub the flash table(s)? */
991 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
992 writeops = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Brian Norrisdadc17a2011-09-20 18:35:57 -0700994 /* Update version numbers before writing */
995 if (md) {
996 td->version[i] = max(td->version[i], md->version[i]);
997 md->version[i] = td->version[i];
998 }
999
Brian Norris8b6e50c2011-05-25 14:59:01 -07001000 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001002 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (res < 0)
1004 return res;
1005 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001006
Brian Norris8b6e50c2011-05-25 14:59:01 -07001007 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001009 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (res < 0)
1011 return res;
1012 }
1013 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001014 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001018 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -07001019 * @mtd: MTD device structure
1020 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001022 * The bad block table regions are marked as "bad" to prevent accidental
1023 * erasures / writes. The regions are identified by the mark 0x02.
1024 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001025static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct nand_chip *this = mtd->priv;
1028 int i, j, chips, block, nrblocks, update;
Brian Norris771c5682013-07-30 17:52:55 -07001029 uint8_t oldval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Brian Norris8b6e50c2011-05-25 14:59:01 -07001031 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (td->options & NAND_BBT_PERCHIP) {
1033 chips = this->numchips;
1034 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1035 } else {
1036 chips = 1;
1037 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001038 }
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 for (i = 0; i < chips; i++) {
1041 if ((td->options & NAND_BBT_ABSPAGE) ||
1042 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001043 if (td->pages[i] == -1)
1044 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Brian Norrisb4d20d62013-07-30 17:52:56 -07001046 oldval = bbt_get_entry(this, block);
1047 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001048 if ((oldval != BBT_BLOCK_RESERVED) &&
1049 td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001050 nand_update_bbt(mtd, (loff_t)block <<
1051 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 continue;
1053 }
1054 update = 0;
1055 if (td->options & NAND_BBT_LASTBLOCK)
1056 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001057 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 block = i * nrblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 for (j = 0; j < td->maxblocks; j++) {
Brian Norrisb4d20d62013-07-30 17:52:56 -07001060 oldval = bbt_get_entry(this, block);
1061 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001062 if (oldval != BBT_BLOCK_RESERVED)
David Woodhousee0c7d762006-05-13 18:07:53 +01001063 update = 1;
Brian Norrisb4d20d62013-07-30 17:52:56 -07001064 block++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001065 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001066 /*
1067 * If we want reserved blocks to be recorded to flash, and some
1068 * new ones have been marked, then we need to update the stored
1069 * bbts. This should only happen once.
1070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (update && td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001072 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1073 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075}
1076
1077/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001078 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001079 * @mtd: MTD device structure
1080 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001081 *
1082 * This functions performs a few sanity checks on the bad block description
1083 * table.
1084 */
1085static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1086{
1087 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001088 u32 pattern_len;
1089 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001090 u32 table_size;
1091
1092 if (!bd)
1093 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001094
1095 pattern_len = bd->len;
1096 bits = bd->options & NAND_BBT_NRBITS_MSK;
1097
Brian Norrisa40f7342011-05-31 16:31:22 -07001098 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001099 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001100 BUG_ON(!bits);
1101
1102 if (bd->options & NAND_BBT_VERSION)
1103 pattern_len++;
1104
1105 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001106 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001107 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001108 BUG_ON(bd->offs);
1109 if (bd->options & NAND_BBT_VERSION)
1110 BUG_ON(bd->veroffs != bd->len);
1111 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1112 }
1113
1114 if (bd->options & NAND_BBT_PERCHIP)
1115 table_size = this->chipsize >> this->bbt_erase_shift;
1116 else
1117 table_size = mtd->size >> this->bbt_erase_shift;
1118 table_size >>= 3;
1119 table_size *= bits;
1120 if (bd->options & NAND_BBT_NO_OOB)
1121 table_size += pattern_len;
1122 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1123}
1124
1125/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001127 * @mtd: MTD device structure
1128 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001130 * The function checks, if a bad block table(s) is/are already available. If
1131 * not it scans the device for manufacturer marked good / bad blocks and writes
1132 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001134 * The bad block table memory is allocated here. It must be freed by calling
1135 * the nand_free_bbt function.
1136 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001137int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 struct nand_chip *this = mtd->priv;
1140 int len, res = 0;
1141 uint8_t *buf;
1142 struct nand_bbt_descr *td = this->bbt_td;
1143 struct nand_bbt_descr *md = this->bbt_md;
1144
1145 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001146 /*
1147 * Allocate memory (2bit per block) and clear the memory bad block
1148 * table.
1149 */
Burman Yan95b93a02006-11-15 21:10:29 +02001150 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001151 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Brian Norris8b6e50c2011-05-25 14:59:01 -07001154 /*
1155 * If no primary table decriptor is given, scan the device to build a
1156 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001158 if (!td) {
1159 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001160 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
David Woodhousee0c7d762006-05-13 18:07:53 +01001161 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001162 this->bbt = NULL;
1163 }
1164 return res;
1165 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001166 verify_bbt_descr(mtd, td);
1167 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 /* Allocate a temporary buffer for one eraseblock incl. oob */
1170 len = (1 << this->bbt_erase_shift);
1171 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001172 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001174 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 this->bbt = NULL;
1176 return -ENOMEM;
1177 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001178
Brian Norris8b6e50c2011-05-25 14:59:01 -07001179 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (td->options & NAND_BBT_ABSPAGE) {
Brian Norris7b5a2d42012-06-22 16:35:41 -07001181 read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001182 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Search the bad block table using a pattern in oob */
Brian Norris7b5a2d42012-06-22 16:35:41 -07001184 search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Brian Norris7b5a2d42012-06-22 16:35:41 -07001187 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001190 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001192 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001193
David Woodhousee0c7d762006-05-13 18:07:53 +01001194 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return res;
1196}
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/**
Brian Norrisb32843b2013-07-30 17:52:59 -07001199 * nand_update_bbt - update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001200 * @mtd: MTD device structure
1201 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001203 * The function updates the bad block table(s).
1204 */
Brian Norrisb32843b2013-07-30 17:52:59 -07001205static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 struct nand_chip *this = mtd->priv;
Brian Norris1196ac52011-09-07 13:13:32 -07001208 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int chip, chipsel;
1210 uint8_t *buf;
1211 struct nand_bbt_descr *td = this->bbt_td;
1212 struct nand_bbt_descr *md = this->bbt_md;
1213
1214 if (!this->bbt || !td)
1215 return -EINVAL;
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* Allocate a temporary buffer for one eraseblock incl. oob */
1218 len = (1 << this->bbt_erase_shift);
1219 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001220 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001221 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001223
Brian Norris8b6e50c2011-05-25 14:59:01 -07001224 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001226 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 chipsel = chip;
1228 } else {
1229 chip = 0;
1230 chipsel = -1;
1231 }
1232
1233 td->version[chip]++;
1234 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001235 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Brian Norris8b6e50c2011-05-25 14:59:01 -07001237 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001238 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001239 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (res < 0)
1241 goto out;
1242 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001243 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001244 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001245 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247
David Woodhousee0c7d762006-05-13 18:07:53 +01001248 out:
1249 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return res;
1251}
1252
Brian Norris8b6e50c2011-05-25 14:59:01 -07001253/*
1254 * Define some generic bad / good block scan pattern which are used
1255 * while scanning a device for factory marked good / bad blocks.
1256 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1258
Brian Norris7854d3f2011-06-23 14:12:08 -07001259/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1261static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1262
1263static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001264 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1266 .offs = 8,
1267 .len = 4,
1268 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001269 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .pattern = bbt_pattern
1271};
1272
1273static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001274 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1276 .offs = 8,
1277 .len = 4,
1278 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001279 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .pattern = mirror_pattern
1281};
1282
Brian Norris9fd6b372012-06-22 16:35:40 -07001283static struct nand_bbt_descr bbt_main_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001284 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1285 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1286 | NAND_BBT_NO_OOB,
1287 .len = 4,
1288 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001289 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001290 .pattern = bbt_pattern
1291};
1292
Brian Norris9fd6b372012-06-22 16:35:40 -07001293static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001294 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1295 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1296 | NAND_BBT_NO_OOB,
1297 .len = 4,
1298 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001299 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001300 .pattern = mirror_pattern
1301};
1302
Brian Norris752ed6c2011-09-20 18:36:42 -07001303#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Brian Norris58373ff2010-07-15 12:15:44 -07001304/**
Brian Norris752ed6c2011-09-20 18:36:42 -07001305 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001306 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001307 *
1308 * This function allocates and initializes a nand_bbt_descr for BBM detection
Brian Norris752ed6c2011-09-20 18:36:42 -07001309 * based on the properties of @this. The new descriptor is stored in
Brian Norris58373ff2010-07-15 12:15:44 -07001310 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1311 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001312 */
Brian Norris752ed6c2011-09-20 18:36:42 -07001313static int nand_create_badblock_pattern(struct nand_chip *this)
Brian Norris58373ff2010-07-15 12:15:44 -07001314{
1315 struct nand_bbt_descr *bd;
1316 if (this->badblock_pattern) {
Brian Norris752ed6c2011-09-20 18:36:42 -07001317 pr_warn("Bad block pattern already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001318 return -EINVAL;
1319 }
1320 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001321 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001322 return -ENOMEM;
Brian Norris752ed6c2011-09-20 18:36:42 -07001323 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Brian Norris58373ff2010-07-15 12:15:44 -07001324 bd->offs = this->badblockpos;
1325 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1326 bd->pattern = scan_ff_pattern;
1327 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1328 this->badblock_pattern = bd;
1329 return 0;
1330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001333 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001334 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001336 * This function selects the default bad block table support for the device and
1337 * calls the nand_scan_bbt function.
1338 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001339int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001342
Brian Norris8b6e50c2011-05-25 14:59:01 -07001343 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001344 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001345 /* Use the default pattern descriptors */
1346 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001347 if (this->bbt_options & NAND_BBT_NO_OOB) {
Brian Norris9fd6b372012-06-22 16:35:40 -07001348 this->bbt_td = &bbt_main_no_oob_descr;
1349 this->bbt_md = &bbt_mirror_no_oob_descr;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001350 } else {
1351 this->bbt_td = &bbt_main_descr;
1352 this->bbt_md = &bbt_mirror_descr;
1353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 } else {
1356 this->bbt_td = NULL;
1357 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001359
1360 if (!this->badblock_pattern)
Brian Norris752ed6c2011-09-20 18:36:42 -07001361 nand_create_badblock_pattern(this);
Brian Norrisa2f812d2011-03-18 21:53:42 -07001362
David Woodhousee0c7d762006-05-13 18:07:53 +01001363 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001367 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001368 * @mtd: MTD device structure
1369 * @offs: offset in the device
1370 * @allowbbt: allow access to bad block table region
1371 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001372int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct nand_chip *this = mtd->priv;
Brian Norris39dbb022013-07-30 17:52:57 -07001375 int block, res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001376
Brian Norrisb4d20d62013-07-30 17:52:56 -07001377 block = (int)(offs >> this->bbt_erase_shift);
1378 res = bbt_get_entry(this, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Brian Norris289c0522011-07-19 10:06:09 -07001380 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1381 "(block %d) 0x%02x\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -07001382 (unsigned int)offs, block, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Brian Norris39dbb022013-07-30 17:52:57 -07001384 switch (res) {
Brian Norris771c5682013-07-30 17:52:55 -07001385 case BBT_BLOCK_GOOD:
David Woodhousee0c7d762006-05-13 18:07:53 +01001386 return 0;
Brian Norris771c5682013-07-30 17:52:55 -07001387 case BBT_BLOCK_WORN:
David Woodhousee0c7d762006-05-13 18:07:53 +01001388 return 1;
Brian Norris771c5682013-07-30 17:52:55 -07001389 case BBT_BLOCK_RESERVED:
David Woodhousee0c7d762006-05-13 18:07:53 +01001390 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392 return 1;
1393}
1394
Brian Norrisb32843b2013-07-30 17:52:59 -07001395/**
1396 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1397 * @mtd: MTD device structure
1398 * @offs: offset of the bad block
1399 */
1400int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1401{
1402 struct nand_chip *this = mtd->priv;
1403 int block, ret = 0;
1404
1405 block = (int)(offs >> this->bbt_erase_shift);
1406
1407 /* Mark bad block in memory */
1408 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1409
1410 /* Update flash-based bad block table */
1411 if (this->bbt_options & NAND_BBT_USE_FLASH)
1412 ret = nand_update_bbt(mtd, offs);
1413
1414 return ret;
1415}
1416
David Woodhousee0c7d762006-05-13 18:07:53 +01001417EXPORT_SYMBOL(nand_scan_bbt);
1418EXPORT_SYMBOL(nand_default_bbt);