blob: 7f0c3b4c2a4fdc045f42ca8b5bc54f97815b3484 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006 *
Fabio Estevamd159c4e2012-07-28 19:29:25 -03007 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Description:
14 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000015 * When nand_scan_bbt is called, then it tries to find the bad block table
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020016 * depending on the options in the BBT descriptor(s). If no flash based BBT
Brian Norrisbb9ebd42011-05-31 16:31:23 -070017 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020018 * marked good / bad blocks. This information is used to create a memory BBT.
19 * Once a new bad block is discovered then the "factory" information is updated
20 * on the device.
21 * If a flash based BBT is specified then the function first tries to find the
22 * BBT on flash. If a BBT is found then the contents are read and the memory
23 * based BBT is created. If a mirrored BBT is selected then the mirror is
24 * searched too and the versions are compared. If the mirror has a greater
Huang Shijie44ed0ff2012-07-03 16:44:15 +080025 * version number, then the mirror BBT is used to build the memory based BBT.
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * If the tables are not versioned, then we "or" the bad block information.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020027 * If one of the BBTs is out of date or does not exist it is (re)created.
28 * If no BBT exists at all then the device is scanned for factory marked
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000029 * good / bad blocks and the bad block tables are created.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020031 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020034 * The auto generated bad block table is located in the last good blocks
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000035 * of the device. The table is mirrored, so it can be updated eventually.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020036 * The table is marked in the OOB area with an ident pattern and a version
37 * number which indicates which of both tables is more up to date. If the NAND
38 * controller needs the complete OOB area for the ECC information then the
Brian Norrisbb9ebd42011-05-31 16:31:23 -070039 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
Brian Norrisa40f7342011-05-31 16:31:22 -070040 * course): it moves the ident pattern and the version byte into the data area
41 * and the OOB area will remain untouched.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
43 * The table uses 2 bits per block
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020044 * 11b: block is good
45 * 00b: block is factory marked bad
46 * 01b, 10b: block is marked bad due to wear
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
48 * The memory bad block table uses the following scheme:
49 * 00b: block is good
50 * 01b: block is marked bad due to wear
51 * 10b: block is reserved (to protect the bbt area)
52 * 11b: block is factory marked bad
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000053 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * Multichip devices like DOC store the bad block info per floor.
55 *
56 * Following assumptions are made:
57 * - bbts start at a page boundary, if autolocated on a block boundary
David Woodhousee0c7d762006-05-13 18:07:53 +010058 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000059 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
61
62#include <linux/slab.h>
63#include <linux/types.h>
64#include <linux/mtd/mtd.h>
Richard Genoud61de9da2012-09-11 15:50:54 +020065#include <linux/mtd/bbm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/mtd/nand.h>
67#include <linux/mtd/nand_ecc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/bitops.h>
69#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010070#include <linux/vmalloc.h>
Paul Gortmakerf3bcc012011-07-10 12:43:28 -040071#include <linux/export.h>
Brian Norris491ed062012-06-22 16:35:44 -070072#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Brian Norris771c5682013-07-30 17:52:55 -070074#define BBT_BLOCK_GOOD 0x00
75#define BBT_BLOCK_WORN 0x01
76#define BBT_BLOCK_RESERVED 0x02
77#define BBT_BLOCK_FACTORY_BAD 0x03
78
79#define BBT_ENTRY_MASK 0x03
80#define BBT_ENTRY_SHIFT 2
81
Brian Norrisb32843b2013-07-30 17:52:59 -070082static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
83
Brian Norris771c5682013-07-30 17:52:55 -070084static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
85{
86 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
87 entry >>= (block & BBT_ENTRY_MASK) * 2;
88 return entry & BBT_ENTRY_MASK;
89}
90
91static inline void bbt_mark_entry(struct nand_chip *chip, int block,
92 uint8_t mark)
93{
94 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
95 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
96}
97
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020098static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
99{
Brian Norris718894a2012-06-22 16:35:43 -0700100 if (memcmp(buf, td->pattern, td->len))
101 return -1;
102 return 0;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200103}
104
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000105/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * check_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700107 * @buf: the buffer to search
108 * @len: the length of buffer to search
109 * @paglen: the pagelength
110 * @td: search pattern descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700112 * Check for a pattern at the given place. Used to search bad block tables and
Brian Norrisdad22562013-07-30 17:53:00 -0700113 * good / bad block identifiers.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700114 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100115static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200117 if (td->options & NAND_BBT_NO_OOB)
118 return check_pattern_no_oob(buf, td);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* Compare the pattern */
Brian Norrisdad22562013-07-30 17:53:00 -0700121 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Brian Norris75b66d82011-09-07 13:13:41 -0700122 return -1;
Brian Norris58373ff2010-07-15 12:15:44 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return 0;
125}
126
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000127/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100128 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700129 * @buf: the buffer to search
130 * @td: search pattern descriptor
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100131 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700132 * Check for a pattern at the given place. Used to search bad block tables and
133 * good / bad block identifiers. Same as check_pattern, but no optional empty
134 * check.
135 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100136static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100137{
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100138 /* Compare the pattern */
Brian Norris491ed062012-06-22 16:35:44 -0700139 if (memcmp(buf + td->offs, td->pattern, td->len))
140 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100141 return 0;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200145 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700146 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200147 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700148 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200149 */
150static u32 add_marker_len(struct nand_bbt_descr *td)
151{
152 u32 len;
153
154 if (!(td->options & NAND_BBT_NO_OOB))
155 return 0;
156
157 len = td->len;
158 if (td->options & NAND_BBT_VERSION)
159 len++;
160 return len;
161}
162
163/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700165 * @mtd: MTD device structure
166 * @buf: temporary buffer
167 * @page: the starting page
168 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700169 * @td: the bbt describtion table
Brian Norrisb4d20d62013-07-30 17:52:56 -0700170 * @offs: block number offset in the table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100174static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200175 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Brian Norris167a8d52011-09-20 18:35:08 -0700177 int res, ret = 0, i, j, act = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct nand_chip *this = mtd->priv;
179 size_t retlen, len, totlen;
180 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200181 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700182 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200183 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200184 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200187 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700188 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700191 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200192 if (marker_len) {
193 /*
194 * In case the BBT marker is not in the OOB area it
195 * will be just in the first page.
196 */
197 len -= marker_len;
198 from += marker_len;
199 marker_len = 0;
200 }
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200201 res = mtd_read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700203 if (mtd_is_eccerr(res)) {
204 pr_info("nand_bbt: ECC error in BBT at "
205 "0x%012llx\n", from & ~mtd->writesize);
206 return res;
207 } else if (mtd_is_bitflip(res)) {
208 pr_info("nand_bbt: corrected error in BBT at "
209 "0x%012llx\n", from & ~mtd->writesize);
210 ret = res;
211 } else {
212 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return res;
214 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Analyse data */
218 for (i = 0; i < len; i++) {
219 uint8_t dat = buf[i];
Brian Norrisb4d20d62013-07-30 17:52:56 -0700220 for (j = 0; j < 8; j += bits, act++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 uint8_t tmp = (dat >> j) & msk;
222 if (tmp == msk)
223 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100224 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700225 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700226 (loff_t)(offs + act) <<
227 this->bbt_erase_shift);
228 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700229 BBT_BLOCK_RESERVED);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200230 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 continue;
232 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700233 /*
234 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700235 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700236 */
Brian Norrisd0370212011-07-19 10:06:08 -0700237 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700238 (loff_t)(offs + act) <<
239 this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700240 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (tmp == 0)
Brian Norrisb4d20d62013-07-30 17:52:56 -0700242 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700243 BBT_BLOCK_FACTORY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 else
Brian Norrisb4d20d62013-07-30 17:52:56 -0700245 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700246 BBT_BLOCK_WORN);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200247 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 totlen -= len;
251 from += len;
252 }
Brian Norris167a8d52011-09-20 18:35:08 -0700253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/**
257 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700258 * @mtd: MTD device structure
259 * @buf: temporary buffer
260 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700261 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700262 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700264 * Read the bad block table for all chips starting at a given page. We assume
265 * that the bbt bits are in consecutive order.
266 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100267static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct nand_chip *this = mtd->priv;
270 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (td->options & NAND_BBT_PERCHIP) {
273 int offs = 0;
274 for (i = 0; i < this->numchips; i++) {
275 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200276 res = read_bbt(mtd, buf, td->pages[i],
277 this->chipsize >> this->bbt_erase_shift,
278 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (res)
280 return res;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700281 offs += this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200284 res = read_bbt(mtd, buf, td->pages[0],
285 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (res)
287 return res;
288 }
289 return 0;
290}
291
Brian Norris8b6e50c2011-05-25 14:59:01 -0700292/* BBT marker is in the first page, no OOB */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700293static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200294 struct nand_bbt_descr *td)
295{
296 size_t retlen;
297 size_t len;
298
299 len = td->len;
300 if (td->options & NAND_BBT_VERSION)
301 len++;
302
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200303 return mtd_read(mtd, offs, len, &retlen, buf);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200304}
305
Brian Norrisa7e68832012-06-22 16:35:45 -0700306/**
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700307 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
Brian Norrisa7e68832012-06-22 16:35:45 -0700308 * @mtd: MTD device structure
309 * @buf: temporary buffer
310 * @offs: offset at which to scan
311 * @len: length of data region to read
312 *
313 * Scan read data from data+OOB. May traverse multiple pages, interleaving
314 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
315 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
316 */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700317static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200318 size_t len)
319{
320 struct mtd_oob_ops ops;
Brian Norrisa7e68832012-06-22 16:35:45 -0700321 int res, ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200322
Brian Norrisa7e68832012-06-22 16:35:45 -0700323 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200324 ops.ooboffs = 0;
325 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200326
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200327 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700328 ops.datbuf = buf;
329 ops.len = min(len, (size_t)mtd->writesize);
330 ops.oobbuf = buf + ops.len;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200331
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200332 res = mtd_read_oob(mtd, offs, &ops);
Brian Norrisa7e68832012-06-22 16:35:45 -0700333 if (res) {
334 if (!mtd_is_bitflip_or_eccerr(res))
335 return res;
336 else if (mtd_is_eccerr(res) || !ret)
337 ret = res;
338 }
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200339
340 buf += mtd->oobsize + mtd->writesize;
341 len -= mtd->writesize;
Dmitry Maluka34a57042012-05-11 20:51:51 +0300342 offs += mtd->writesize;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200343 }
Brian Norrisa7e68832012-06-22 16:35:45 -0700344 return ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200345}
346
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700347static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200348 size_t len, struct nand_bbt_descr *td)
349{
350 if (td->options & NAND_BBT_NO_OOB)
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700351 return scan_read_data(mtd, buf, offs, td);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200352 else
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700353 return scan_read_oob(mtd, buf, offs, len);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200354}
355
Brian Norris8b6e50c2011-05-25 14:59:01 -0700356/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200357static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
358 uint8_t *buf, uint8_t *oob)
359{
360 struct mtd_oob_ops ops;
361
Brian Norris0612b9d2011-08-30 18:45:40 -0700362 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200363 ops.ooboffs = 0;
364 ops.ooblen = mtd->oobsize;
365 ops.datbuf = buf;
366 ops.oobbuf = oob;
367 ops.len = len;
368
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200369 return mtd_write_oob(mtd, offs, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200370}
371
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200372static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
373{
374 u32 ver_offs = td->veroffs;
375
376 if (!(td->options & NAND_BBT_NO_OOB))
377 ver_offs += mtd->writesize;
378 return ver_offs;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/**
382 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700383 * @mtd: MTD device structure
384 * @buf: temporary buffer
385 * @td: descriptor for the bad block table
386 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700388 * Read the bad block table(s) for all chips starting at a given page. We
389 * assume that the bbt bits are in consecutive order.
390 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700391static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
392 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct nand_chip *this = mtd->priv;
395
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000396 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (td->options & NAND_BBT_VERSION) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700398 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200399 mtd->writesize, td);
400 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700401 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700402 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000405 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (md && (md->options & NAND_BBT_VERSION)) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700407 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Shmulik Ladkani7bb9c752012-06-10 13:58:12 +0300408 mtd->writesize, md);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200409 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700410 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700411 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Brian Norris8b6e50c2011-05-25 14:59:01 -0700415/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200416static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300417 loff_t offs, uint8_t *buf, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200418{
419 struct mtd_oob_ops ops;
420 int j, ret;
421
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200422 ops.ooblen = mtd->oobsize;
423 ops.oobbuf = buf;
424 ops.ooboffs = 0;
425 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700426 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200427
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300428 for (j = 0; j < numpages; j++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200429 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700430 * Read the full oob until read_oob is fixed to handle single
431 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200432 */
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200433 ret = mtd_read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700434 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700435 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200436 return ret;
437
438 if (check_short_pattern(buf, bd))
439 return 1;
440
441 offs += mtd->writesize;
442 }
443 return 0;
444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/**
447 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700448 * @mtd: MTD device structure
449 * @buf: temporary buffer
450 * @bd: descriptor for the good/bad block search pattern
451 * @chip: create the table for a specific chip, -1 read all chips; applies only
452 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700454 * Create a bad block table by scanning the device for the given good/bad block
455 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200457static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
458 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 struct nand_chip *this = mtd->priv;
Brian Norris5961ad22013-10-30 00:41:30 -0400461 int i, numblocks, numpages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int startblock;
463 loff_t from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Brian Norris9a4d4d62011-07-19 10:06:07 -0700465 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Brian Norris5961ad22013-10-30 00:41:30 -0400467 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300468 numpages = 2;
Brian Norris58373ff2010-07-15 12:15:44 -0700469 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300470 numpages = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (chip == -1) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700473 numblocks = mtd->size >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 startblock = 0;
475 from = 0;
476 } else {
477 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700478 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100479 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000480 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Brian Norrisb4d20d62013-07-30 17:52:56 -0700482 numblocks = this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 startblock = chip * numblocks;
484 numblocks += startblock;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700485 from = (loff_t)startblock << this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000487
Brian Norris5fb15492011-05-31 16:31:21 -0700488 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300489 from += mtd->erasesize - (mtd->writesize * numpages);
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700490
Brian Norrisb4d20d62013-07-30 17:52:56 -0700491 for (i = startblock; i < numblocks; i++) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000492 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000493
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200494 BUG_ON(bd->options & NAND_BBT_NO_OOB);
495
Brian Norris5961ad22013-10-30 00:41:30 -0400496 ret = scan_block_fast(mtd, bd, from, buf, numpages);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200497 if (ret < 0)
498 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000499
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200500 if (ret) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700501 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700502 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700503 i, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200504 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 from += (1 << this->bbt_erase_shift);
508 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512/**
513 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700514 * @mtd: MTD device structure
515 * @buf: temporary buffer
516 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700518 * Read the bad block table by searching for a given ident pattern. Search is
519 * preformed either from the beginning up or from the end of the device
520 * downwards. The search starts always at the start of a block. If the option
521 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
522 * the bad block information of this chip. This is necessary to provide support
523 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700525 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100527static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 struct nand_chip *this = mtd->priv;
530 int i, chips;
Brian Norris930de532014-01-02 17:14:10 -0800531 int startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200532 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200534 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Brian Norris8b6e50c2011-05-25 14:59:01 -0700536 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100538 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 dir = -1;
540 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000541 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000543 }
544
Brian Norris8b6e50c2011-05-25 14:59:01 -0700545 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (td->options & NAND_BBT_PERCHIP) {
547 chips = this->numchips;
548 bbtblocks = this->chipsize >> this->bbt_erase_shift;
549 startblock &= bbtblocks - 1;
550 } else {
551 chips = 1;
552 bbtblocks = mtd->size >> this->bbt_erase_shift;
553 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 for (i = 0; i < chips; i++) {
556 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000557 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 td->pages[i] = -1;
559 /* Scan the maximum number of blocks */
560 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000563 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* Read first page */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700566 scan_read(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200567 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200568 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200570 offs = bbt_get_ver_offs(mtd, td);
571 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573 break;
574 }
575 }
576 startblock += this->chipsize >> this->bbt_erase_shift;
577 }
578 /* Check, if we found a bbt for each requested chip */
579 for (i = 0; i < chips; i++) {
580 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700581 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 else
Brian Norrisd0370212011-07-19 10:06:08 -0700583 pr_info("Bad block table found at page %d, version "
584 "0x%02X\n", td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589/**
590 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700591 * @mtd: MTD device structure
592 * @buf: temporary buffer
593 * @td: descriptor for the bad block table
594 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700596 * Search and read the bad block table(s).
597 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700598static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
599 struct nand_bbt_descr *td,
600 struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100603 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* Search the mirror table */
606 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100607 search_bbt(mtd, buf, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000608}
609
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000610/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700612 * @mtd: MTD device structure
613 * @buf: temporary buffer
614 * @td: descriptor for the bad block table
615 * @md: descriptor for the bad block table mirror
616 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700618 * (Re)write the bad block table.
619 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100620static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200621 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
622 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct erase_info einfo;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700626 int i, res, chip = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700628 int nrchips, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 uint8_t msk[4];
630 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200631 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200633 struct mtd_oob_ops ops;
634
635 ops.ooblen = mtd->oobsize;
636 ops.ooboffs = 0;
637 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700638 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (!rcode)
641 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700642 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100644 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700645 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (chipsel == -1) {
647 nrchips = this->numchips;
648 } else {
649 nrchips = chipsel + 1;
650 chip = chipsel;
651 }
652 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100653 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000655 }
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Loop through the chips */
658 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700659 /*
660 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000661 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 * page nr. in td->pages.
663 */
664 if (td->pages[chip] != -1) {
665 page = td->pages[chip];
666 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Brian Norris8b6e50c2011-05-25 14:59:01 -0700669 /*
670 * Automatic placement of the bad block table. Search direction
671 * top -> down?
672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (td->options & NAND_BBT_LASTBLOCK) {
674 startblock = numblocks * (chip + 1) - 1;
675 dir = -1;
676 } else {
677 startblock = chip * numblocks;
678 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 for (i = 0; i < td->maxblocks; i++) {
682 int block = startblock + dir * i;
683 /* Check, if the block is bad */
Brian Norris771c5682013-07-30 17:52:55 -0700684 switch (bbt_get_entry(this, block)) {
685 case BBT_BLOCK_WORN:
686 case BBT_BLOCK_FACTORY_BAD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 continue;
688 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200689 page = block <<
690 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /* Check, if the block is used by the mirror table */
692 if (!md || md->pages[chip] != page)
693 goto write;
694 }
Brian Norris9a4d4d62011-07-19 10:06:07 -0700695 pr_err("No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100697 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 /* Set up shift count and masks for the flash table */
700 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200701 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200703 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
704 msk[3] = 0x01;
705 break;
706 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
707 msk[3] = 0x03;
708 break;
709 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
710 msk[3] = 0x0f;
711 break;
712 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
713 msk[3] = 0xff;
714 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 default: return -EINVAL;
716 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000717
Brian Norris596d7452011-09-07 13:13:33 -0700718 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Brian Norris8b6e50c2011-05-25 14:59:01 -0700720 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (td->options & NAND_BBT_SAVECONTENT) {
722 /* Make it block aligned */
Brian Norris596d7452011-09-07 13:13:33 -0700723 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 len = 1 << this->bbt_erase_shift;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200725 res = mtd_read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (res < 0) {
727 if (retlen != len) {
Brian Norrisd0370212011-07-19 10:06:08 -0700728 pr_info("nand_bbt: error reading block "
729 "for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return res;
731 }
Brian Norrisd0370212011-07-19 10:06:08 -0700732 pr_warn("nand_bbt: ECC error while reading "
733 "block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200735 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300736 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200737 ops.oobbuf = &buf[len];
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200738 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300739 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200740 goto outerr;
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* Calc the byte offset in the buffer */
743 pageoffs = page - (int)(to >> this->page_shift);
744 offs = pageoffs << this->page_shift;
745 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700746 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200747 ooboffs = len + (pageoffs * mtd->oobsize);
748
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200749 } else if (td->options & NAND_BBT_NO_OOB) {
750 ooboffs = 0;
751 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700752 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200753 if (td->options & NAND_BBT_VERSION)
754 offs++;
755 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700756 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200757 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700758 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200759 len = ALIGN(len, mtd->writesize);
760 /* Preset the buffer with 0xff */
761 memset(buf, 0xff, len);
762 /* Pattern is located at the begin of first page */
763 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 } else {
765 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700766 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700767 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200768 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200770 memset(buf, 0xff, len +
771 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200773 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200775 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000777
Thomas Gleixner9223a452006-05-23 17:21:03 +0200778 if (td->options & NAND_BBT_VERSION)
779 buf[ooboffs + td->veroffs] = td->version[chip];
780
Brian Norris8b6e50c2011-05-25 14:59:01 -0700781 /* Walk through the memory table */
Brian Norrisb4d20d62013-07-30 17:52:56 -0700782 for (i = 0; i < numblocks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 uint8_t dat;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700784 int sftcnt = (i << (3 - sft)) & sftmsk;
785 dat = bbt_get_entry(this, chip * numblocks + i);
786 /* Do not store the reserved bbt blocks! */
787 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000789
David Woodhousee0c7d762006-05-13 18:07:53 +0100790 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000792 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100794 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200795 if (res < 0)
796 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000797
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200798 res = scan_write_bbt(mtd, to, len, buf,
799 td->options & NAND_BBT_NO_OOB ? NULL :
800 &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200801 if (res < 0)
802 goto outerr;
803
Brian Norrisd0370212011-07-19 10:06:08 -0700804 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
805 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* Mark it as used */
808 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200811
812 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700813 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200814 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
817/**
818 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700819 * @mtd: MTD device structure
820 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700822 * The function creates a memory based bbt by scanning the device for
823 * manufacturer / software marked good / bad blocks.
824 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100825static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
827 struct nand_chip *this = mtd->priv;
828
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100829 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100833 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700834 * @mtd: MTD device structure
835 * @buf: temporary buffer
836 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700838 * The function checks the results of the previous call to read_bbt and creates
839 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
840 * for the chip/device. Update is necessary if one of the tables is missing or
841 * the version nr. of one table is less than the other.
842 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100843static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Brian Norris623978d2011-09-20 18:35:34 -0700845 int i, chips, writeops, create, chipsel, res, res2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct nand_chip *this = mtd->priv;
847 struct nand_bbt_descr *td = this->bbt_td;
848 struct nand_bbt_descr *md = this->bbt_md;
849 struct nand_bbt_descr *rd, *rd2;
850
Brian Norris8b6e50c2011-05-25 14:59:01 -0700851 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000852 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000854 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 for (i = 0; i < chips; i++) {
858 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700859 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 rd = NULL;
861 rd2 = NULL;
Brian Norris623978d2011-09-20 18:35:34 -0700862 res = res2 = 0;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700863 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700865 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (md) {
867 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700868 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700870 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000871 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700872 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700873 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700875 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700876 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 rd = td;
878 if (!(td->options & NAND_BBT_VERSION))
879 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700880 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700882 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 } else {
884 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700885 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 } else {
888 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700889 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700891 } else {
892 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000895
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700896 if (create) {
897 /* Create the bad block table by scanning the device? */
898 if (!(td->options & NAND_BBT_CREATE))
899 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000900
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700901 /* Create the table in memory by scanning the chip(s) */
902 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
903 create_bbt(mtd, buf, bd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700905 td->version[i] = 1;
906 if (md)
907 md->version[i] = 1;
908 }
909
Brian Norris8b6e50c2011-05-25 14:59:01 -0700910 /* Read back first? */
Brian Norris623978d2011-09-20 18:35:34 -0700911 if (rd) {
912 res = read_abs_bbt(mtd, buf, rd, chipsel);
913 if (mtd_is_eccerr(res)) {
914 /* Mark table as invalid */
915 rd->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700916 rd->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700917 i--;
918 continue;
919 }
920 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700921 /* If they weren't versioned, read both */
Brian Norris623978d2011-09-20 18:35:34 -0700922 if (rd2) {
923 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
924 if (mtd_is_eccerr(res2)) {
925 /* Mark table as invalid */
926 rd2->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700927 rd2->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700928 i--;
929 continue;
930 }
931 }
932
933 /* Scrub the flash table(s)? */
934 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
935 writeops = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Brian Norrisdadc17a2011-09-20 18:35:57 -0700937 /* Update version numbers before writing */
938 if (md) {
939 td->version[i] = max(td->version[i], md->version[i]);
940 md->version[i] = td->version[i];
941 }
942
Brian Norris8b6e50c2011-05-25 14:59:01 -0700943 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100945 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (res < 0)
947 return res;
948 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000949
Brian Norris8b6e50c2011-05-25 14:59:01 -0700950 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100952 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (res < 0)
954 return res;
955 }
956 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000961 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -0700962 * @mtd: MTD device structure
963 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700965 * The bad block table regions are marked as "bad" to prevent accidental
966 * erasures / writes. The regions are identified by the mark 0x02.
967 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100968static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct nand_chip *this = mtd->priv;
971 int i, j, chips, block, nrblocks, update;
Brian Norris771c5682013-07-30 17:52:55 -0700972 uint8_t oldval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Brian Norris8b6e50c2011-05-25 14:59:01 -0700974 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (td->options & NAND_BBT_PERCHIP) {
976 chips = this->numchips;
977 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
978 } else {
979 chips = 1;
980 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000981 }
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 for (i = 0; i < chips; i++) {
984 if ((td->options & NAND_BBT_ABSPAGE) ||
985 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100986 if (td->pages[i] == -1)
987 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Brian Norrisb4d20d62013-07-30 17:52:56 -0700989 oldval = bbt_get_entry(this, block);
990 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -0700991 if ((oldval != BBT_BLOCK_RESERVED) &&
992 td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -0700993 nand_update_bbt(mtd, (loff_t)block <<
994 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 continue;
996 }
997 update = 0;
998 if (td->options & NAND_BBT_LASTBLOCK)
999 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001000 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 block = i * nrblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 for (j = 0; j < td->maxblocks; j++) {
Brian Norrisb4d20d62013-07-30 17:52:56 -07001003 oldval = bbt_get_entry(this, block);
1004 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001005 if (oldval != BBT_BLOCK_RESERVED)
David Woodhousee0c7d762006-05-13 18:07:53 +01001006 update = 1;
Brian Norrisb4d20d62013-07-30 17:52:56 -07001007 block++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001008 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001009 /*
1010 * If we want reserved blocks to be recorded to flash, and some
1011 * new ones have been marked, then we need to update the stored
1012 * bbts. This should only happen once.
1013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (update && td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001015 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1016 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018}
1019
1020/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001021 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001022 * @mtd: MTD device structure
1023 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001024 *
1025 * This functions performs a few sanity checks on the bad block description
1026 * table.
1027 */
1028static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1029{
1030 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001031 u32 pattern_len;
1032 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001033 u32 table_size;
1034
1035 if (!bd)
1036 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001037
1038 pattern_len = bd->len;
1039 bits = bd->options & NAND_BBT_NRBITS_MSK;
1040
Brian Norrisa40f7342011-05-31 16:31:22 -07001041 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001042 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001043 BUG_ON(!bits);
1044
1045 if (bd->options & NAND_BBT_VERSION)
1046 pattern_len++;
1047
1048 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001049 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001050 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001051 BUG_ON(bd->offs);
1052 if (bd->options & NAND_BBT_VERSION)
1053 BUG_ON(bd->veroffs != bd->len);
1054 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1055 }
1056
1057 if (bd->options & NAND_BBT_PERCHIP)
1058 table_size = this->chipsize >> this->bbt_erase_shift;
1059 else
1060 table_size = mtd->size >> this->bbt_erase_shift;
1061 table_size >>= 3;
1062 table_size *= bits;
1063 if (bd->options & NAND_BBT_NO_OOB)
1064 table_size += pattern_len;
1065 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1066}
1067
1068/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001070 * @mtd: MTD device structure
1071 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001073 * The function checks, if a bad block table(s) is/are already available. If
1074 * not it scans the device for manufacturer marked good / bad blocks and writes
1075 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001077 * The bad block table memory is allocated here. It must be freed by calling
1078 * the nand_free_bbt function.
1079 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001080int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 struct nand_chip *this = mtd->priv;
1083 int len, res = 0;
1084 uint8_t *buf;
1085 struct nand_bbt_descr *td = this->bbt_td;
1086 struct nand_bbt_descr *md = this->bbt_md;
1087
1088 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001089 /*
1090 * Allocate memory (2bit per block) and clear the memory bad block
1091 * table.
1092 */
Burman Yan95b93a02006-11-15 21:10:29 +02001093 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001094 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Brian Norris8b6e50c2011-05-25 14:59:01 -07001097 /*
1098 * If no primary table decriptor is given, scan the device to build a
1099 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001101 if (!td) {
1102 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001103 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
David Woodhousee0c7d762006-05-13 18:07:53 +01001104 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001105 this->bbt = NULL;
1106 }
1107 return res;
1108 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001109 verify_bbt_descr(mtd, td);
1110 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 /* Allocate a temporary buffer for one eraseblock incl. oob */
1113 len = (1 << this->bbt_erase_shift);
1114 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001115 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001117 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 this->bbt = NULL;
1119 return -ENOMEM;
1120 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001121
Brian Norris8b6e50c2011-05-25 14:59:01 -07001122 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (td->options & NAND_BBT_ABSPAGE) {
Brian Norris7b5a2d42012-06-22 16:35:41 -07001124 read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001125 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /* Search the bad block table using a pattern in oob */
Brian Norris7b5a2d42012-06-22 16:35:41 -07001127 search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Brian Norris7b5a2d42012-06-22 16:35:41 -07001130 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001133 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001135 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001136
David Woodhousee0c7d762006-05-13 18:07:53 +01001137 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return res;
1139}
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141/**
Brian Norrisb32843b2013-07-30 17:52:59 -07001142 * nand_update_bbt - update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001143 * @mtd: MTD device structure
1144 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001146 * The function updates the bad block table(s).
1147 */
Brian Norrisb32843b2013-07-30 17:52:59 -07001148static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 struct nand_chip *this = mtd->priv;
Brian Norris1196ac52011-09-07 13:13:32 -07001151 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 int chip, chipsel;
1153 uint8_t *buf;
1154 struct nand_bbt_descr *td = this->bbt_td;
1155 struct nand_bbt_descr *md = this->bbt_md;
1156
1157 if (!this->bbt || !td)
1158 return -EINVAL;
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /* Allocate a temporary buffer for one eraseblock incl. oob */
1161 len = (1 << this->bbt_erase_shift);
1162 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001163 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001164 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001166
Brian Norris8b6e50c2011-05-25 14:59:01 -07001167 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001169 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 chipsel = chip;
1171 } else {
1172 chip = 0;
1173 chipsel = -1;
1174 }
1175
1176 td->version[chip]++;
1177 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001178 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001181 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001182 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (res < 0)
1184 goto out;
1185 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001186 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001187 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001188 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
David Woodhousee0c7d762006-05-13 18:07:53 +01001191 out:
1192 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return res;
1194}
1195
Brian Norris8b6e50c2011-05-25 14:59:01 -07001196/*
1197 * Define some generic bad / good block scan pattern which are used
1198 * while scanning a device for factory marked good / bad blocks.
1199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1201
Brian Norris7854d3f2011-06-23 14:12:08 -07001202/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1204static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1205
1206static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001207 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1209 .offs = 8,
1210 .len = 4,
1211 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001212 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 .pattern = bbt_pattern
1214};
1215
1216static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001217 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1219 .offs = 8,
1220 .len = 4,
1221 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001222 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 .pattern = mirror_pattern
1224};
1225
Brian Norris9fd6b372012-06-22 16:35:40 -07001226static struct nand_bbt_descr bbt_main_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001227 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1228 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1229 | NAND_BBT_NO_OOB,
1230 .len = 4,
1231 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001232 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001233 .pattern = bbt_pattern
1234};
1235
Brian Norris9fd6b372012-06-22 16:35:40 -07001236static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001237 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1238 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1239 | NAND_BBT_NO_OOB,
1240 .len = 4,
1241 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001242 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001243 .pattern = mirror_pattern
1244};
1245
Brian Norris752ed6c2011-09-20 18:36:42 -07001246#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Brian Norris58373ff2010-07-15 12:15:44 -07001247/**
Brian Norris752ed6c2011-09-20 18:36:42 -07001248 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001249 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001250 *
1251 * This function allocates and initializes a nand_bbt_descr for BBM detection
Brian Norris752ed6c2011-09-20 18:36:42 -07001252 * based on the properties of @this. The new descriptor is stored in
Brian Norris58373ff2010-07-15 12:15:44 -07001253 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1254 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001255 */
Brian Norris752ed6c2011-09-20 18:36:42 -07001256static int nand_create_badblock_pattern(struct nand_chip *this)
Brian Norris58373ff2010-07-15 12:15:44 -07001257{
1258 struct nand_bbt_descr *bd;
1259 if (this->badblock_pattern) {
Brian Norris752ed6c2011-09-20 18:36:42 -07001260 pr_warn("Bad block pattern already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001261 return -EINVAL;
1262 }
1263 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001264 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001265 return -ENOMEM;
Brian Norris752ed6c2011-09-20 18:36:42 -07001266 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Brian Norris58373ff2010-07-15 12:15:44 -07001267 bd->offs = this->badblockpos;
1268 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1269 bd->pattern = scan_ff_pattern;
1270 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1271 this->badblock_pattern = bd;
1272 return 0;
1273}
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001276 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001277 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001279 * This function selects the default bad block table support for the device and
1280 * calls the nand_scan_bbt function.
1281 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001282int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 struct nand_chip *this = mtd->priv;
Brian Norrisabb9cf72014-05-20 22:34:40 -07001285 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001286
Brian Norris8b6e50c2011-05-25 14:59:01 -07001287 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001288 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001289 /* Use the default pattern descriptors */
1290 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001291 if (this->bbt_options & NAND_BBT_NO_OOB) {
Brian Norris9fd6b372012-06-22 16:35:40 -07001292 this->bbt_td = &bbt_main_no_oob_descr;
1293 this->bbt_md = &bbt_mirror_no_oob_descr;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001294 } else {
1295 this->bbt_td = &bbt_main_descr;
1296 this->bbt_md = &bbt_mirror_descr;
1297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 } else {
1300 this->bbt_td = NULL;
1301 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001303
Brian Norrisabb9cf72014-05-20 22:34:40 -07001304 if (!this->badblock_pattern) {
1305 ret = nand_create_badblock_pattern(this);
1306 if (ret)
1307 return ret;
1308 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001309
David Woodhousee0c7d762006-05-13 18:07:53 +01001310 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001314 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001315 * @mtd: MTD device structure
1316 * @offs: offset in the device
1317 * @allowbbt: allow access to bad block table region
1318 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001319int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct nand_chip *this = mtd->priv;
Brian Norris39dbb022013-07-30 17:52:57 -07001322 int block, res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001323
Brian Norrisb4d20d62013-07-30 17:52:56 -07001324 block = (int)(offs >> this->bbt_erase_shift);
1325 res = bbt_get_entry(this, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Brian Norris289c0522011-07-19 10:06:09 -07001327 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1328 "(block %d) 0x%02x\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -07001329 (unsigned int)offs, block, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Brian Norris39dbb022013-07-30 17:52:57 -07001331 switch (res) {
Brian Norris771c5682013-07-30 17:52:55 -07001332 case BBT_BLOCK_GOOD:
David Woodhousee0c7d762006-05-13 18:07:53 +01001333 return 0;
Brian Norris771c5682013-07-30 17:52:55 -07001334 case BBT_BLOCK_WORN:
David Woodhousee0c7d762006-05-13 18:07:53 +01001335 return 1;
Brian Norris771c5682013-07-30 17:52:55 -07001336 case BBT_BLOCK_RESERVED:
David Woodhousee0c7d762006-05-13 18:07:53 +01001337 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339 return 1;
1340}
1341
Brian Norrisb32843b2013-07-30 17:52:59 -07001342/**
1343 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1344 * @mtd: MTD device structure
1345 * @offs: offset of the bad block
1346 */
1347int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1348{
1349 struct nand_chip *this = mtd->priv;
1350 int block, ret = 0;
1351
1352 block = (int)(offs >> this->bbt_erase_shift);
1353
1354 /* Mark bad block in memory */
1355 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1356
1357 /* Update flash-based bad block table */
1358 if (this->bbt_options & NAND_BBT_USE_FLASH)
1359 ret = nand_update_bbt(mtd, offs);
1360
1361 return ret;
1362}
1363
David Woodhousee0c7d762006-05-13 18:07:53 +01001364EXPORT_SYMBOL(nand_scan_bbt);