blob: 4c57a9bc684625806840894e1583cc2abbe43bc6 [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
82static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
83{
84 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
85 entry >>= (block & BBT_ENTRY_MASK) * 2;
86 return entry & BBT_ENTRY_MASK;
87}
88
89static inline void bbt_mark_entry(struct nand_chip *chip, int block,
90 uint8_t mark)
91{
92 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
93 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
94}
95
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020096static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
97{
Brian Norris718894a2012-06-22 16:35:43 -070098 if (memcmp(buf, td->pattern, td->len))
99 return -1;
100 return 0;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200101}
102
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000103/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * check_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700105 * @buf: the buffer to search
106 * @len: the length of buffer to search
107 * @paglen: the pagelength
108 * @td: search pattern descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700110 * Check for a pattern at the given place. Used to search bad block tables and
111 * good / bad block identifiers. If the SCAN_EMPTY option is set then check, if
112 * all bytes except the pattern area contain 0xff.
113 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100114static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Brian Norris491ed062012-06-22 16:35:44 -0700116 int end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 uint8_t *p = buf;
118
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200119 if (td->options & NAND_BBT_NO_OOB)
120 return check_pattern_no_oob(buf, td);
121
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100122 end = paglen + td->offs;
Brian Norris491ed062012-06-22 16:35:44 -0700123 if (td->options & NAND_BBT_SCANEMPTY)
124 if (memchr_inv(p, 0xff, end))
125 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100126 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* Compare the pattern */
Brian Norris75b66d82011-09-07 13:13:41 -0700129 if (memcmp(p, td->pattern, td->len))
130 return -1;
Brian Norris58373ff2010-07-15 12:15:44 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000133 p += td->len;
134 end += td->len;
Brian Norris491ed062012-06-22 16:35:44 -0700135 if (memchr_inv(p, 0xff, len - end))
136 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138 return 0;
139}
140
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000141/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100142 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700143 * @buf: the buffer to search
144 * @td: search pattern descriptor
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100145 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700146 * Check for a pattern at the given place. Used to search bad block tables and
147 * good / bad block identifiers. Same as check_pattern, but no optional empty
148 * check.
149 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100150static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100151{
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100152 /* Compare the pattern */
Brian Norris491ed062012-06-22 16:35:44 -0700153 if (memcmp(buf + td->offs, td->pattern, td->len))
154 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100155 return 0;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200159 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700160 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200161 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700162 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200163 */
164static u32 add_marker_len(struct nand_bbt_descr *td)
165{
166 u32 len;
167
168 if (!(td->options & NAND_BBT_NO_OOB))
169 return 0;
170
171 len = td->len;
172 if (td->options & NAND_BBT_VERSION)
173 len++;
174 return len;
175}
176
177/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700179 * @mtd: MTD device structure
180 * @buf: temporary buffer
181 * @page: the starting page
182 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700183 * @td: the bbt describtion table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700184 * @offs: offset in the memory table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 *
186 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100188static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200189 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Brian Norris167a8d52011-09-20 18:35:08 -0700191 int res, ret = 0, i, j, act = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct nand_chip *this = mtd->priv;
193 size_t retlen, len, totlen;
194 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200195 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700196 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200197 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200198 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200201 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700202 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700205 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200206 if (marker_len) {
207 /*
208 * In case the BBT marker is not in the OOB area it
209 * will be just in the first page.
210 */
211 len -= marker_len;
212 from += marker_len;
213 marker_len = 0;
214 }
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200215 res = mtd_read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700217 if (mtd_is_eccerr(res)) {
218 pr_info("nand_bbt: ECC error in BBT at "
219 "0x%012llx\n", from & ~mtd->writesize);
220 return res;
221 } else if (mtd_is_bitflip(res)) {
222 pr_info("nand_bbt: corrected error in BBT at "
223 "0x%012llx\n", from & ~mtd->writesize);
224 ret = res;
225 } else {
226 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return res;
228 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* Analyse data */
232 for (i = 0; i < len; i++) {
233 uint8_t dat = buf[i];
234 for (j = 0; j < 8; j += bits, act += 2) {
235 uint8_t tmp = (dat >> j) & msk;
236 if (tmp == msk)
237 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100238 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700239 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
240 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Brian Norris771c5682013-07-30 17:52:55 -0700241 bbt_mark_entry(this, (offs << 2) +
242 (act >> 1),
243 BBT_BLOCK_RESERVED);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200244 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 continue;
246 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700247 /*
248 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700249 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700250 */
Brian Norrisd0370212011-07-19 10:06:08 -0700251 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
252 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700253 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (tmp == 0)
Brian Norris771c5682013-07-30 17:52:55 -0700255 bbt_mark_entry(this, (offs << 2) +
256 (act >> 1),
257 BBT_BLOCK_FACTORY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 else
Brian Norris771c5682013-07-30 17:52:55 -0700259 bbt_mark_entry(this, (offs << 2) +
260 (act >> 1),
261 BBT_BLOCK_WORN);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200262 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 totlen -= len;
266 from += len;
267 }
Brian Norris167a8d52011-09-20 18:35:08 -0700268 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/**
272 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700273 * @mtd: MTD device structure
274 * @buf: temporary buffer
275 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700276 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700277 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700279 * Read the bad block table for all chips starting at a given page. We assume
280 * that the bbt bits are in consecutive order.
281 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100282static 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 -0700283{
284 struct nand_chip *this = mtd->priv;
285 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (td->options & NAND_BBT_PERCHIP) {
288 int offs = 0;
289 for (i = 0; i < this->numchips; i++) {
290 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200291 res = read_bbt(mtd, buf, td->pages[i],
292 this->chipsize >> this->bbt_erase_shift,
293 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (res)
295 return res;
296 offs += this->chipsize >> (this->bbt_erase_shift + 2);
297 }
298 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200299 res = read_bbt(mtd, buf, td->pages[0],
300 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (res)
302 return res;
303 }
304 return 0;
305}
306
Brian Norris8b6e50c2011-05-25 14:59:01 -0700307/* BBT marker is in the first page, no OOB */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700308static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200309 struct nand_bbt_descr *td)
310{
311 size_t retlen;
312 size_t len;
313
314 len = td->len;
315 if (td->options & NAND_BBT_VERSION)
316 len++;
317
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200318 return mtd_read(mtd, offs, len, &retlen, buf);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200319}
320
Brian Norrisa7e68832012-06-22 16:35:45 -0700321/**
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700322 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
Brian Norrisa7e68832012-06-22 16:35:45 -0700323 * @mtd: MTD device structure
324 * @buf: temporary buffer
325 * @offs: offset at which to scan
326 * @len: length of data region to read
327 *
328 * Scan read data from data+OOB. May traverse multiple pages, interleaving
329 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
330 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
331 */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700332static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200333 size_t len)
334{
335 struct mtd_oob_ops ops;
Brian Norrisa7e68832012-06-22 16:35:45 -0700336 int res, ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200337
Brian Norrisa7e68832012-06-22 16:35:45 -0700338 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200339 ops.ooboffs = 0;
340 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200341
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200342 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700343 ops.datbuf = buf;
344 ops.len = min(len, (size_t)mtd->writesize);
345 ops.oobbuf = buf + ops.len;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200346
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200347 res = mtd_read_oob(mtd, offs, &ops);
Brian Norrisa7e68832012-06-22 16:35:45 -0700348 if (res) {
349 if (!mtd_is_bitflip_or_eccerr(res))
350 return res;
351 else if (mtd_is_eccerr(res) || !ret)
352 ret = res;
353 }
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200354
355 buf += mtd->oobsize + mtd->writesize;
356 len -= mtd->writesize;
Dmitry Maluka34a57042012-05-11 20:51:51 +0300357 offs += mtd->writesize;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200358 }
Brian Norrisa7e68832012-06-22 16:35:45 -0700359 return ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200360}
361
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700362static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200363 size_t len, struct nand_bbt_descr *td)
364{
365 if (td->options & NAND_BBT_NO_OOB)
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700366 return scan_read_data(mtd, buf, offs, td);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200367 else
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700368 return scan_read_oob(mtd, buf, offs, len);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200369}
370
Brian Norris8b6e50c2011-05-25 14:59:01 -0700371/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200372static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
373 uint8_t *buf, uint8_t *oob)
374{
375 struct mtd_oob_ops ops;
376
Brian Norris0612b9d2011-08-30 18:45:40 -0700377 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200378 ops.ooboffs = 0;
379 ops.ooblen = mtd->oobsize;
380 ops.datbuf = buf;
381 ops.oobbuf = oob;
382 ops.len = len;
383
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200384 return mtd_write_oob(mtd, offs, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200385}
386
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200387static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
388{
389 u32 ver_offs = td->veroffs;
390
391 if (!(td->options & NAND_BBT_NO_OOB))
392 ver_offs += mtd->writesize;
393 return ver_offs;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/**
397 * 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 -0700398 * @mtd: MTD device structure
399 * @buf: temporary buffer
400 * @td: descriptor for the bad block table
401 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700403 * Read the bad block table(s) for all chips starting at a given page. We
404 * assume that the bbt bits are in consecutive order.
405 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700406static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
407 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct nand_chip *this = mtd->priv;
410
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000411 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (td->options & NAND_BBT_VERSION) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700413 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200414 mtd->writesize, td);
415 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700416 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700417 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000420 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (md && (md->options & NAND_BBT_VERSION)) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700422 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Shmulik Ladkani7bb9c752012-06-10 13:58:12 +0300423 mtd->writesize, md);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200424 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700425 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700426 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Brian Norris8b6e50c2011-05-25 14:59:01 -0700430/* Scan a given block full */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200431static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
432 loff_t offs, uint8_t *buf, size_t readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300433 int scanlen, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200434{
435 int ret, j;
436
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700437 ret = scan_read_oob(mtd, buf, offs, readlen);
Brian Norrisafa17de2011-09-07 13:13:29 -0700438 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700439 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200440 return ret;
441
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300442 for (j = 0; j < numpages; j++, buf += scanlen) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200443 if (check_pattern(buf, scanlen, mtd->writesize, bd))
444 return 1;
445 }
446 return 0;
447}
448
Brian Norris8b6e50c2011-05-25 14:59:01 -0700449/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200450static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300451 loff_t offs, uint8_t *buf, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200452{
453 struct mtd_oob_ops ops;
454 int j, ret;
455
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200456 ops.ooblen = mtd->oobsize;
457 ops.oobbuf = buf;
458 ops.ooboffs = 0;
459 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700460 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200461
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300462 for (j = 0; j < numpages; j++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200463 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700464 * Read the full oob until read_oob is fixed to handle single
465 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200466 */
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200467 ret = mtd_read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700468 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700469 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200470 return ret;
471
472 if (check_short_pattern(buf, bd))
473 return 1;
474
475 offs += mtd->writesize;
476 }
477 return 0;
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/**
481 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700482 * @mtd: MTD device structure
483 * @buf: temporary buffer
484 * @bd: descriptor for the good/bad block search pattern
485 * @chip: create the table for a specific chip, -1 read all chips; applies only
486 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700488 * Create a bad block table by scanning the device for the given good/bad block
489 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200491static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
492 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 struct nand_chip *this = mtd->priv;
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300495 int i, numblocks, numpages, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int startblock;
497 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200498 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Brian Norris9a4d4d62011-07-19 10:06:07 -0700500 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if (bd->options & NAND_BBT_SCANALLPAGES)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300503 numpages = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700504 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300505 numpages = 2;
Brian Norris58373ff2010-07-15 12:15:44 -0700506 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300507 numpages = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000508
509 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
510 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200511 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000512 readlen = bd->len;
513 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000514 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200515 scanlen = mtd->writesize + mtd->oobsize;
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300516 readlen = numpages * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 if (chip == -1) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700520 /*
521 * Note that numblocks is 2 * (real numblocks) here, see i+=2
522 * below as it makes shifting and masking less painful
523 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
525 startblock = 0;
526 from = 0;
527 } else {
528 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700529 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100530 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000531 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
534 startblock = chip * numblocks;
535 numblocks += startblock;
Adrian Hunter69423d92008-12-10 13:37:21 +0000536 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000538
Brian Norris5fb15492011-05-31 16:31:21 -0700539 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300540 from += mtd->erasesize - (mtd->writesize * numpages);
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000543 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000544
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200545 BUG_ON(bd->options & NAND_BBT_NO_OOB);
546
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200547 if (bd->options & NAND_BBT_SCANALLPAGES)
548 ret = scan_block_full(mtd, bd, from, buf, readlen,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300549 scanlen, numpages);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200550 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300551 ret = scan_block_fast(mtd, bd, from, buf, numpages);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000552
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200553 if (ret < 0)
554 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000555
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200556 if (ret) {
Brian Norris771c5682013-07-30 17:52:55 -0700557 bbt_mark_entry(this, i >> 1, BBT_BLOCK_FACTORY_BAD);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700558 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700559 i >> 1, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200560 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 i += 2;
564 from += (1 << this->bbt_erase_shift);
565 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569/**
570 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700571 * @mtd: MTD device structure
572 * @buf: temporary buffer
573 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700575 * Read the bad block table by searching for a given ident pattern. Search is
576 * preformed either from the beginning up or from the end of the device
577 * downwards. The search starts always at the start of a block. If the option
578 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
579 * the bad block information of this chip. This is necessary to provide support
580 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700582 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100584static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 struct nand_chip *this = mtd->priv;
587 int i, chips;
588 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200589 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200591 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Brian Norris8b6e50c2011-05-25 14:59:01 -0700593 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100595 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dir = -1;
597 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000598 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000600 }
601
Brian Norris8b6e50c2011-05-25 14:59:01 -0700602 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (td->options & NAND_BBT_PERCHIP) {
604 chips = this->numchips;
605 bbtblocks = this->chipsize >> this->bbt_erase_shift;
606 startblock &= bbtblocks - 1;
607 } else {
608 chips = 1;
609 bbtblocks = mtd->size >> this->bbt_erase_shift;
610 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Number of bits for each erase block in the bbt */
613 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 for (i = 0; i < chips; i++) {
616 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000617 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 td->pages[i] = -1;
619 /* Scan the maximum number of blocks */
620 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000623 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Read first page */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700626 scan_read(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200627 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200628 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200630 offs = bbt_get_ver_offs(mtd, td);
631 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633 break;
634 }
635 }
636 startblock += this->chipsize >> this->bbt_erase_shift;
637 }
638 /* Check, if we found a bbt for each requested chip */
639 for (i = 0; i < chips; i++) {
640 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700641 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 else
Brian Norrisd0370212011-07-19 10:06:08 -0700643 pr_info("Bad block table found at page %d, version "
644 "0x%02X\n", td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/**
650 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700651 * @mtd: MTD device structure
652 * @buf: temporary buffer
653 * @td: descriptor for the bad block table
654 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700656 * Search and read the bad block table(s).
657 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700658static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
659 struct nand_bbt_descr *td,
660 struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100663 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* Search the mirror table */
666 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100667 search_bbt(mtd, buf, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000668}
669
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000670/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700672 * @mtd: MTD device structure
673 * @buf: temporary buffer
674 * @td: descriptor for the bad block table
675 * @md: descriptor for the bad block table mirror
676 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700678 * (Re)write the bad block table.
679 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100680static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200681 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
682 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct erase_info einfo;
686 int i, j, res, chip = 0;
687 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200688 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 uint8_t msk[4];
690 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200691 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200693 struct mtd_oob_ops ops;
694
695 ops.ooblen = mtd->oobsize;
696 ops.ooboffs = 0;
697 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700698 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (!rcode)
701 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700702 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100704 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700705 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (chipsel == -1) {
707 nrchips = this->numchips;
708 } else {
709 nrchips = chipsel + 1;
710 chip = chipsel;
711 }
712 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100713 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000715 }
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* Loop through the chips */
718 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700719 /*
720 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000721 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * page nr. in td->pages.
723 */
724 if (td->pages[chip] != -1) {
725 page = td->pages[chip];
726 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Brian Norris8b6e50c2011-05-25 14:59:01 -0700729 /*
730 * Automatic placement of the bad block table. Search direction
731 * top -> down?
732 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (td->options & NAND_BBT_LASTBLOCK) {
734 startblock = numblocks * (chip + 1) - 1;
735 dir = -1;
736 } else {
737 startblock = chip * numblocks;
738 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 for (i = 0; i < td->maxblocks; i++) {
742 int block = startblock + dir * i;
743 /* Check, if the block is bad */
Brian Norris771c5682013-07-30 17:52:55 -0700744 switch (bbt_get_entry(this, block)) {
745 case BBT_BLOCK_WORN:
746 case BBT_BLOCK_FACTORY_BAD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 continue;
748 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200749 page = block <<
750 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* Check, if the block is used by the mirror table */
752 if (!md || md->pages[chip] != page)
753 goto write;
754 }
Brian Norris9a4d4d62011-07-19 10:06:07 -0700755 pr_err("No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100757 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /* Set up shift count and masks for the flash table */
760 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200761 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200763 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
764 msk[3] = 0x01;
765 break;
766 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
767 msk[3] = 0x03;
768 break;
769 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
770 msk[3] = 0x0f;
771 break;
772 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
773 msk[3] = 0xff;
774 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 default: return -EINVAL;
776 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000779
Brian Norris596d7452011-09-07 13:13:33 -0700780 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Brian Norris8b6e50c2011-05-25 14:59:01 -0700782 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (td->options & NAND_BBT_SAVECONTENT) {
784 /* Make it block aligned */
Brian Norris596d7452011-09-07 13:13:33 -0700785 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 len = 1 << this->bbt_erase_shift;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200787 res = mtd_read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (res < 0) {
789 if (retlen != len) {
Brian Norrisd0370212011-07-19 10:06:08 -0700790 pr_info("nand_bbt: error reading block "
791 "for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return res;
793 }
Brian Norrisd0370212011-07-19 10:06:08 -0700794 pr_warn("nand_bbt: ECC error while reading "
795 "block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200797 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300798 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200799 ops.oobbuf = &buf[len];
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200800 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300801 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200802 goto outerr;
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* Calc the byte offset in the buffer */
805 pageoffs = page - (int)(to >> this->page_shift);
806 offs = pageoffs << this->page_shift;
807 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700808 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200809 ooboffs = len + (pageoffs * mtd->oobsize);
810
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200811 } else if (td->options & NAND_BBT_NO_OOB) {
812 ooboffs = 0;
813 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700814 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200815 if (td->options & NAND_BBT_VERSION)
816 offs++;
817 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700818 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200819 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700820 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200821 len = ALIGN(len, mtd->writesize);
822 /* Preset the buffer with 0xff */
823 memset(buf, 0xff, len);
824 /* Pattern is located at the begin of first page */
825 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 } else {
827 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700828 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700829 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200830 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200832 memset(buf, 0xff, len +
833 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200835 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200837 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000839
Thomas Gleixner9223a452006-05-23 17:21:03 +0200840 if (td->options & NAND_BBT_VERSION)
841 buf[ooboffs + td->veroffs] = td->version[chip];
842
Brian Norris8b6e50c2011-05-25 14:59:01 -0700843 /* Walk through the memory table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100844 for (i = 0; i < numblocks;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 uint8_t dat;
Brian Norris771c5682013-07-30 17:52:55 -0700846 dat = bbt_get_entry(this, (bbtoffs << 2) + i);
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 for (j = 0; j < 4; j++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 int sftcnt = (i << (3 - sft)) & sftmsk;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700849 /* Do not store the reserved bbt blocks! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200850 buf[offs + (i >> sft)] &=
851 ~(msk[dat & 0x03] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 dat >>= 2;
853 }
854 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000855
David Woodhousee0c7d762006-05-13 18:07:53 +0100856 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000858 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100860 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200861 if (res < 0)
862 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000863
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200864 res = scan_write_bbt(mtd, to, len, buf,
865 td->options & NAND_BBT_NO_OOB ? NULL :
866 &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200867 if (res < 0)
868 goto outerr;
869
Brian Norrisd0370212011-07-19 10:06:08 -0700870 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
871 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /* Mark it as used */
874 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200877
878 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700879 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200880 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/**
884 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700885 * @mtd: MTD device structure
886 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700888 * The function creates a memory based bbt by scanning the device for
889 * manufacturer / software marked good / bad blocks.
890 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100891static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 struct nand_chip *this = mtd->priv;
894
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000895 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100896 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100900 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700901 * @mtd: MTD device structure
902 * @buf: temporary buffer
903 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700905 * The function checks the results of the previous call to read_bbt and creates
906 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
907 * for the chip/device. Update is necessary if one of the tables is missing or
908 * the version nr. of one table is less than the other.
909 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100910static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Brian Norris623978d2011-09-20 18:35:34 -0700912 int i, chips, writeops, create, chipsel, res, res2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 struct nand_chip *this = mtd->priv;
914 struct nand_bbt_descr *td = this->bbt_td;
915 struct nand_bbt_descr *md = this->bbt_md;
916 struct nand_bbt_descr *rd, *rd2;
917
Brian Norris8b6e50c2011-05-25 14:59:01 -0700918 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000919 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000921 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 for (i = 0; i < chips; i++) {
925 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700926 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 rd = NULL;
928 rd2 = NULL;
Brian Norris623978d2011-09-20 18:35:34 -0700929 res = res2 = 0;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700930 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700932 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (md) {
934 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700935 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700937 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000938 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700939 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700940 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700942 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700943 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 rd = td;
945 if (!(td->options & NAND_BBT_VERSION))
946 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700947 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700949 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 } else {
951 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700952 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 } else {
955 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700956 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700958 } else {
959 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000962
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700963 if (create) {
964 /* Create the bad block table by scanning the device? */
965 if (!(td->options & NAND_BBT_CREATE))
966 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000967
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700968 /* Create the table in memory by scanning the chip(s) */
969 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
970 create_bbt(mtd, buf, bd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700972 td->version[i] = 1;
973 if (md)
974 md->version[i] = 1;
975 }
976
Brian Norris8b6e50c2011-05-25 14:59:01 -0700977 /* Read back first? */
Brian Norris623978d2011-09-20 18:35:34 -0700978 if (rd) {
979 res = read_abs_bbt(mtd, buf, rd, chipsel);
980 if (mtd_is_eccerr(res)) {
981 /* Mark table as invalid */
982 rd->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700983 rd->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700984 i--;
985 continue;
986 }
987 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700988 /* If they weren't versioned, read both */
Brian Norris623978d2011-09-20 18:35:34 -0700989 if (rd2) {
990 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
991 if (mtd_is_eccerr(res2)) {
992 /* Mark table as invalid */
993 rd2->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700994 rd2->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700995 i--;
996 continue;
997 }
998 }
999
1000 /* Scrub the flash table(s)? */
1001 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
1002 writeops = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Brian Norrisdadc17a2011-09-20 18:35:57 -07001004 /* Update version numbers before writing */
1005 if (md) {
1006 td->version[i] = max(td->version[i], md->version[i]);
1007 md->version[i] = td->version[i];
1008 }
1009
Brian Norris8b6e50c2011-05-25 14:59:01 -07001010 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001012 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (res < 0)
1014 return res;
1015 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001016
Brian Norris8b6e50c2011-05-25 14:59:01 -07001017 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001019 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (res < 0)
1021 return res;
1022 }
1023 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001028 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -07001029 * @mtd: MTD device structure
1030 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001032 * The bad block table regions are marked as "bad" to prevent accidental
1033 * erasures / writes. The regions are identified by the mark 0x02.
1034 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001035static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
1037 struct nand_chip *this = mtd->priv;
1038 int i, j, chips, block, nrblocks, update;
Brian Norris771c5682013-07-30 17:52:55 -07001039 uint8_t oldval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Brian Norris8b6e50c2011-05-25 14:59:01 -07001041 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (td->options & NAND_BBT_PERCHIP) {
1043 chips = this->numchips;
1044 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1045 } else {
1046 chips = 1;
1047 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001048 }
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 for (i = 0; i < chips; i++) {
1051 if ((td->options & NAND_BBT_ABSPAGE) ||
1052 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001053 if (td->pages[i] == -1)
1054 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001056 block <<= 1;
Brian Norris771c5682013-07-30 17:52:55 -07001057 oldval = bbt_get_entry(this, block >> 1);
1058 bbt_mark_entry(this, block >> 1, BBT_BLOCK_RESERVED);
1059 if ((oldval != BBT_BLOCK_RESERVED) &&
1060 td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001061 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 continue;
1063 }
1064 update = 0;
1065 if (td->options & NAND_BBT_LASTBLOCK)
1066 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001067 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001069 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 for (j = 0; j < td->maxblocks; j++) {
Brian Norris771c5682013-07-30 17:52:55 -07001071 oldval = bbt_get_entry(this, block >> 1);
1072 bbt_mark_entry(this, block >> 1, BBT_BLOCK_RESERVED);
1073 if (oldval != BBT_BLOCK_RESERVED)
David Woodhousee0c7d762006-05-13 18:07:53 +01001074 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001076 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001077 /*
1078 * If we want reserved blocks to be recorded to flash, and some
1079 * new ones have been marked, then we need to update the stored
1080 * bbts. This should only happen once.
1081 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (update && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001083 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085}
1086
1087/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001088 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001089 * @mtd: MTD device structure
1090 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001091 *
1092 * This functions performs a few sanity checks on the bad block description
1093 * table.
1094 */
1095static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1096{
1097 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001098 u32 pattern_len;
1099 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001100 u32 table_size;
1101
1102 if (!bd)
1103 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001104
1105 pattern_len = bd->len;
1106 bits = bd->options & NAND_BBT_NRBITS_MSK;
1107
Brian Norrisa40f7342011-05-31 16:31:22 -07001108 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001109 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001110 BUG_ON(!bits);
1111
1112 if (bd->options & NAND_BBT_VERSION)
1113 pattern_len++;
1114
1115 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001116 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001117 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001118 BUG_ON(bd->offs);
1119 if (bd->options & NAND_BBT_VERSION)
1120 BUG_ON(bd->veroffs != bd->len);
1121 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1122 }
1123
1124 if (bd->options & NAND_BBT_PERCHIP)
1125 table_size = this->chipsize >> this->bbt_erase_shift;
1126 else
1127 table_size = mtd->size >> this->bbt_erase_shift;
1128 table_size >>= 3;
1129 table_size *= bits;
1130 if (bd->options & NAND_BBT_NO_OOB)
1131 table_size += pattern_len;
1132 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1133}
1134
1135/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001137 * @mtd: MTD device structure
1138 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001140 * The function checks, if a bad block table(s) is/are already available. If
1141 * not it scans the device for manufacturer marked good / bad blocks and writes
1142 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001144 * The bad block table memory is allocated here. It must be freed by calling
1145 * the nand_free_bbt function.
1146 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001147int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct nand_chip *this = mtd->priv;
1150 int len, res = 0;
1151 uint8_t *buf;
1152 struct nand_bbt_descr *td = this->bbt_td;
1153 struct nand_bbt_descr *md = this->bbt_md;
1154
1155 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001156 /*
1157 * Allocate memory (2bit per block) and clear the memory bad block
1158 * table.
1159 */
Burman Yan95b93a02006-11-15 21:10:29 +02001160 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001161 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Brian Norris8b6e50c2011-05-25 14:59:01 -07001164 /*
1165 * If no primary table decriptor is given, scan the device to build a
1166 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001168 if (!td) {
1169 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001170 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
David Woodhousee0c7d762006-05-13 18:07:53 +01001171 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001172 this->bbt = NULL;
1173 }
1174 return res;
1175 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001176 verify_bbt_descr(mtd, td);
1177 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 /* Allocate a temporary buffer for one eraseblock incl. oob */
1180 len = (1 << this->bbt_erase_shift);
1181 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001182 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001184 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 this->bbt = NULL;
1186 return -ENOMEM;
1187 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001188
Brian Norris8b6e50c2011-05-25 14:59:01 -07001189 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (td->options & NAND_BBT_ABSPAGE) {
Brian Norris7b5a2d42012-06-22 16:35:41 -07001191 read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001192 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /* Search the bad block table using a pattern in oob */
Brian Norris7b5a2d42012-06-22 16:35:41 -07001194 search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Brian Norris7b5a2d42012-06-22 16:35:41 -07001197 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001200 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001202 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001203
David Woodhousee0c7d762006-05-13 18:07:53 +01001204 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return res;
1206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001209 * nand_update_bbt - [NAND Interface] update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001210 * @mtd: MTD device structure
1211 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001213 * The function updates the bad block table(s).
1214 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001215int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 struct nand_chip *this = mtd->priv;
Brian Norris1196ac52011-09-07 13:13:32 -07001218 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int chip, chipsel;
1220 uint8_t *buf;
1221 struct nand_bbt_descr *td = this->bbt_td;
1222 struct nand_bbt_descr *md = this->bbt_md;
1223
1224 if (!this->bbt || !td)
1225 return -EINVAL;
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* Allocate a temporary buffer for one eraseblock incl. oob */
1228 len = (1 << this->bbt_erase_shift);
1229 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001230 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001231 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001233
Brian Norris8b6e50c2011-05-25 14:59:01 -07001234 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001236 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 chipsel = chip;
1238 } else {
1239 chip = 0;
1240 chipsel = -1;
1241 }
1242
1243 td->version[chip]++;
1244 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001245 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Brian Norris8b6e50c2011-05-25 14:59:01 -07001247 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001248 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001249 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (res < 0)
1251 goto out;
1252 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001253 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001254 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001255 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257
David Woodhousee0c7d762006-05-13 18:07:53 +01001258 out:
1259 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return res;
1261}
1262
Brian Norris8b6e50c2011-05-25 14:59:01 -07001263/*
1264 * Define some generic bad / good block scan pattern which are used
1265 * while scanning a device for factory marked good / bad blocks.
1266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1268
Brian Norris7854d3f2011-06-23 14:12:08 -07001269/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1271static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1272
1273static struct nand_bbt_descr bbt_main_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 = bbt_pattern
1281};
1282
1283static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001284 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1286 .offs = 8,
1287 .len = 4,
1288 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001289 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 .pattern = mirror_pattern
1291};
1292
Brian Norris9fd6b372012-06-22 16:35:40 -07001293static struct nand_bbt_descr bbt_main_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 = bbt_pattern
1301};
1302
Brian Norris9fd6b372012-06-22 16:35:40 -07001303static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001304 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1305 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1306 | NAND_BBT_NO_OOB,
1307 .len = 4,
1308 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001309 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001310 .pattern = mirror_pattern
1311};
1312
Brian Norris752ed6c2011-09-20 18:36:42 -07001313#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Brian Norris58373ff2010-07-15 12:15:44 -07001314/**
Brian Norris752ed6c2011-09-20 18:36:42 -07001315 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001316 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001317 *
1318 * This function allocates and initializes a nand_bbt_descr for BBM detection
Brian Norris752ed6c2011-09-20 18:36:42 -07001319 * based on the properties of @this. The new descriptor is stored in
Brian Norris58373ff2010-07-15 12:15:44 -07001320 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1321 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001322 */
Brian Norris752ed6c2011-09-20 18:36:42 -07001323static int nand_create_badblock_pattern(struct nand_chip *this)
Brian Norris58373ff2010-07-15 12:15:44 -07001324{
1325 struct nand_bbt_descr *bd;
1326 if (this->badblock_pattern) {
Brian Norris752ed6c2011-09-20 18:36:42 -07001327 pr_warn("Bad block pattern already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001328 return -EINVAL;
1329 }
1330 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001331 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001332 return -ENOMEM;
Brian Norris752ed6c2011-09-20 18:36:42 -07001333 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Brian Norris58373ff2010-07-15 12:15:44 -07001334 bd->offs = this->badblockpos;
1335 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1336 bd->pattern = scan_ff_pattern;
1337 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1338 this->badblock_pattern = bd;
1339 return 0;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001343 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001344 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001346 * This function selects the default bad block table support for the device and
1347 * calls the nand_scan_bbt function.
1348 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001349int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001352
Brian Norris8b6e50c2011-05-25 14:59:01 -07001353 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001354 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001355 /* Use the default pattern descriptors */
1356 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001357 if (this->bbt_options & NAND_BBT_NO_OOB) {
Brian Norris9fd6b372012-06-22 16:35:40 -07001358 this->bbt_td = &bbt_main_no_oob_descr;
1359 this->bbt_md = &bbt_mirror_no_oob_descr;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001360 } else {
1361 this->bbt_td = &bbt_main_descr;
1362 this->bbt_md = &bbt_mirror_descr;
1363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 } else {
1366 this->bbt_td = NULL;
1367 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001369
1370 if (!this->badblock_pattern)
Brian Norris752ed6c2011-09-20 18:36:42 -07001371 nand_create_badblock_pattern(this);
Brian Norrisa2f812d2011-03-18 21:53:42 -07001372
David Woodhousee0c7d762006-05-13 18:07:53 +01001373 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001377 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001378 * @mtd: MTD device structure
1379 * @offs: offset in the device
1380 * @allowbbt: allow access to bad block table region
1381 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001382int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 struct nand_chip *this = mtd->priv;
1385 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001386 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001389 block = (int)(offs >> (this->bbt_erase_shift - 1));
Brian Norris771c5682013-07-30 17:52:55 -07001390 res = bbt_get_entry(this, block >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Brian Norris289c0522011-07-19 10:06:09 -07001392 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1393 "(block %d) 0x%02x\n",
1394 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 switch ((int)res) {
Brian Norris771c5682013-07-30 17:52:55 -07001397 case BBT_BLOCK_GOOD:
David Woodhousee0c7d762006-05-13 18:07:53 +01001398 return 0;
Brian Norris771c5682013-07-30 17:52:55 -07001399 case BBT_BLOCK_WORN:
David Woodhousee0c7d762006-05-13 18:07:53 +01001400 return 1;
Brian Norris771c5682013-07-30 17:52:55 -07001401 case BBT_BLOCK_RESERVED:
David Woodhousee0c7d762006-05-13 18:07:53 +01001402 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404 return 1;
1405}
1406
David Woodhousee0c7d762006-05-13 18:07:53 +01001407EXPORT_SYMBOL(nand_scan_bbt);
1408EXPORT_SYMBOL(nand_default_bbt);
Fabio Estevamd159c4e2012-07-28 19:29:25 -03001409EXPORT_SYMBOL_GPL(nand_update_bbt);