blob: 7695efea65f2c8adbedd03ad27acce772e1a7095 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Overview:
3 * Bad block table support for the NAND driver
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00004 *
Fabio Estevamd159c4e2012-07-28 19:29:25 -03005 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Description:
12 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000013 * When nand_scan_bbt is called, then it tries to find the bad block table
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020014 * depending on the options in the BBT descriptor(s). If no flash based BBT
Brian Norrisbb9ebd42011-05-31 16:31:23 -070015 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020016 * marked good / bad blocks. This information is used to create a memory BBT.
17 * Once a new bad block is discovered then the "factory" information is updated
18 * on the device.
19 * If a flash based BBT is specified then the function first tries to find the
20 * BBT on flash. If a BBT is found then the contents are read and the memory
21 * based BBT is created. If a mirrored BBT is selected then the mirror is
22 * searched too and the versions are compared. If the mirror has a greater
Huang Shijie44ed0ff2012-07-03 16:44:15 +080023 * version number, then the mirror BBT is used to build the memory based BBT.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * If the tables are not versioned, then we "or" the bad block information.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020025 * If one of the BBTs is out of date or does not exist it is (re)created.
26 * If no BBT exists at all then the device is scanned for factory marked
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000027 * good / bad blocks and the bad block tables are created.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020029 * For manufacturer created BBTs like the one found on M-SYS DOC devices
30 * the BBT is searched and read but never created
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020032 * The auto generated bad block table is located in the last good blocks
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000033 * of the device. The table is mirrored, so it can be updated eventually.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020034 * The table is marked in the OOB area with an ident pattern and a version
35 * number which indicates which of both tables is more up to date. If the NAND
36 * controller needs the complete OOB area for the ECC information then the
Brian Norrisbb9ebd42011-05-31 16:31:23 -070037 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
Brian Norrisa40f7342011-05-31 16:31:22 -070038 * course): it moves the ident pattern and the version byte into the data area
39 * and the OOB area will remain untouched.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 * The table uses 2 bits per block
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020042 * 11b: block is good
43 * 00b: block is factory marked bad
44 * 01b, 10b: block is marked bad due to wear
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 *
46 * The memory bad block table uses the following scheme:
47 * 00b: block is good
48 * 01b: block is marked bad due to wear
49 * 10b: block is reserved (to protect the bbt area)
50 * 11b: block is factory marked bad
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000051 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Multichip devices like DOC store the bad block info per floor.
53 *
54 * Following assumptions are made:
55 * - bbts start at a page boundary, if autolocated on a block boundary
David Woodhousee0c7d762006-05-13 18:07:53 +010056 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000057 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
59
60#include <linux/slab.h>
61#include <linux/types.h>
62#include <linux/mtd/mtd.h>
Richard Genoud61de9da2012-09-11 15:50:54 +020063#include <linux/mtd/bbm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/mtd/nand.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/bitops.h>
66#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010067#include <linux/vmalloc.h>
Paul Gortmakerf3bcc012011-07-10 12:43:28 -040068#include <linux/export.h>
Brian Norris491ed062012-06-22 16:35:44 -070069#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Brian Norris771c5682013-07-30 17:52:55 -070071#define BBT_BLOCK_GOOD 0x00
72#define BBT_BLOCK_WORN 0x01
73#define BBT_BLOCK_RESERVED 0x02
74#define BBT_BLOCK_FACTORY_BAD 0x03
75
76#define BBT_ENTRY_MASK 0x03
77#define BBT_ENTRY_SHIFT 2
78
Brian Norrisb32843b2013-07-30 17:52:59 -070079static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
80
Brian Norris771c5682013-07-30 17:52:55 -070081static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
82{
83 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
84 entry >>= (block & BBT_ENTRY_MASK) * 2;
85 return entry & BBT_ENTRY_MASK;
86}
87
88static inline void bbt_mark_entry(struct nand_chip *chip, int block,
89 uint8_t mark)
90{
91 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
92 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
93}
94
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020095static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
96{
Brian Norris718894a2012-06-22 16:35:43 -070097 if (memcmp(buf, td->pattern, td->len))
98 return -1;
99 return 0;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200100}
101
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000102/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * check_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700104 * @buf: the buffer to search
105 * @len: the length of buffer to search
106 * @paglen: the pagelength
107 * @td: search pattern descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700109 * Check for a pattern at the given place. Used to search bad block tables and
Brian Norrisdad22562013-07-30 17:53:00 -0700110 * good / bad block identifiers.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700111 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100112static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200114 if (td->options & NAND_BBT_NO_OOB)
115 return check_pattern_no_oob(buf, td);
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* Compare the pattern */
Brian Norrisdad22562013-07-30 17:53:00 -0700118 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Brian Norris75b66d82011-09-07 13:13:41 -0700119 return -1;
Brian Norris58373ff2010-07-15 12:15:44 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return 0;
122}
123
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000124/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100125 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700126 * @buf: the buffer to search
127 * @td: search pattern descriptor
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100128 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700129 * Check for a pattern at the given place. Used to search bad block tables and
130 * good / bad block identifiers. Same as check_pattern, but no optional empty
131 * check.
132 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100133static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100134{
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100135 /* Compare the pattern */
Brian Norris491ed062012-06-22 16:35:44 -0700136 if (memcmp(buf + td->offs, td->pattern, td->len))
137 return -1;
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100138 return 0;
139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200142 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700143 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200144 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700145 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200146 */
147static u32 add_marker_len(struct nand_bbt_descr *td)
148{
149 u32 len;
150
151 if (!(td->options & NAND_BBT_NO_OOB))
152 return 0;
153
154 len = td->len;
155 if (td->options & NAND_BBT_VERSION)
156 len++;
157 return len;
158}
159
160/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700162 * @mtd: MTD device structure
163 * @buf: temporary buffer
164 * @page: the starting page
165 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700166 * @td: the bbt describtion table
Brian Norrisb4d20d62013-07-30 17:52:56 -0700167 * @offs: block number offset in the table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 *
169 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100171static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200172 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Brian Norris167a8d52011-09-20 18:35:08 -0700174 int res, ret = 0, i, j, act = 0;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100175 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 size_t retlen, len, totlen;
177 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200178 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700179 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200180 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200181 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200184 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700185 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700188 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200189 if (marker_len) {
190 /*
191 * In case the BBT marker is not in the OOB area it
192 * will be just in the first page.
193 */
194 len -= marker_len;
195 from += marker_len;
196 marker_len = 0;
197 }
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200198 res = mtd_read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700200 if (mtd_is_eccerr(res)) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +0200201 pr_info("nand_bbt: ECC error in BBT at 0x%012llx\n",
202 from & ~mtd->writesize);
Brian Norris167a8d52011-09-20 18:35:08 -0700203 return res;
204 } else if (mtd_is_bitflip(res)) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +0200205 pr_info("nand_bbt: corrected error in BBT at 0x%012llx\n",
206 from & ~mtd->writesize);
Brian Norris167a8d52011-09-20 18:35:08 -0700207 ret = res;
208 } else {
209 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return res;
211 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* Analyse data */
215 for (i = 0; i < len; i++) {
216 uint8_t dat = buf[i];
Brian Norrisb4d20d62013-07-30 17:52:56 -0700217 for (j = 0; j < 8; j += bits, act++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 uint8_t tmp = (dat >> j) & msk;
219 if (tmp == msk)
220 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100221 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700222 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700223 (loff_t)(offs + act) <<
224 this->bbt_erase_shift);
225 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700226 BBT_BLOCK_RESERVED);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200227 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 continue;
229 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700230 /*
231 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700232 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700233 */
Brian Norrisd0370212011-07-19 10:06:08 -0700234 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700235 (loff_t)(offs + act) <<
236 this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700237 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (tmp == 0)
Brian Norrisb4d20d62013-07-30 17:52:56 -0700239 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700240 BBT_BLOCK_FACTORY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 else
Brian Norrisb4d20d62013-07-30 17:52:56 -0700242 bbt_mark_entry(this, offs + act,
Brian Norris771c5682013-07-30 17:52:55 -0700243 BBT_BLOCK_WORN);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200244 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247 totlen -= len;
248 from += len;
249 }
Brian Norris167a8d52011-09-20 18:35:08 -0700250 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253/**
254 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700255 * @mtd: MTD device structure
256 * @buf: temporary buffer
257 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700258 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700259 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700261 * Read the bad block table for all chips starting at a given page. We assume
262 * that the bbt bits are in consecutive order.
263 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100264static 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 -0700265{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100266 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (td->options & NAND_BBT_PERCHIP) {
270 int offs = 0;
271 for (i = 0; i < this->numchips; i++) {
272 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200273 res = read_bbt(mtd, buf, td->pages[i],
274 this->chipsize >> this->bbt_erase_shift,
275 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (res)
277 return res;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700278 offs += this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200281 res = read_bbt(mtd, buf, td->pages[0],
282 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (res)
284 return res;
285 }
286 return 0;
287}
288
Brian Norris8b6e50c2011-05-25 14:59:01 -0700289/* BBT marker is in the first page, no OOB */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700290static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200291 struct nand_bbt_descr *td)
292{
293 size_t retlen;
294 size_t len;
295
296 len = td->len;
297 if (td->options & NAND_BBT_VERSION)
298 len++;
299
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200300 return mtd_read(mtd, offs, len, &retlen, buf);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200301}
302
Brian Norrisa7e68832012-06-22 16:35:45 -0700303/**
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700304 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
Brian Norrisa7e68832012-06-22 16:35:45 -0700305 * @mtd: MTD device structure
306 * @buf: temporary buffer
307 * @offs: offset at which to scan
308 * @len: length of data region to read
309 *
310 * Scan read data from data+OOB. May traverse multiple pages, interleaving
311 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
312 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
313 */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700314static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200315 size_t len)
316{
317 struct mtd_oob_ops ops;
Brian Norrisa7e68832012-06-22 16:35:45 -0700318 int res, ret = 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200319
Brian Norrisa7e68832012-06-22 16:35:45 -0700320 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200321 ops.ooboffs = 0;
322 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200323
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200324 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700325 ops.datbuf = buf;
326 ops.len = min(len, (size_t)mtd->writesize);
327 ops.oobbuf = buf + ops.len;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200328
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200329 res = mtd_read_oob(mtd, offs, &ops);
Brian Norrisa7e68832012-06-22 16:35:45 -0700330 if (res) {
331 if (!mtd_is_bitflip_or_eccerr(res))
332 return res;
333 else if (mtd_is_eccerr(res) || !ret)
334 ret = res;
335 }
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200336
337 buf += mtd->oobsize + mtd->writesize;
338 len -= mtd->writesize;
Dmitry Maluka34a57042012-05-11 20:51:51 +0300339 offs += mtd->writesize;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200340 }
Brian Norrisa7e68832012-06-22 16:35:45 -0700341 return ret;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200342}
343
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700344static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200345 size_t len, struct nand_bbt_descr *td)
346{
347 if (td->options & NAND_BBT_NO_OOB)
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700348 return scan_read_data(mtd, buf, offs, td);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200349 else
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700350 return scan_read_oob(mtd, buf, offs, len);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200351}
352
Brian Norris8b6e50c2011-05-25 14:59:01 -0700353/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200354static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
355 uint8_t *buf, uint8_t *oob)
356{
357 struct mtd_oob_ops ops;
358
Brian Norris0612b9d2011-08-30 18:45:40 -0700359 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200360 ops.ooboffs = 0;
361 ops.ooblen = mtd->oobsize;
362 ops.datbuf = buf;
363 ops.oobbuf = oob;
364 ops.len = len;
365
Artem Bityutskiya2cc5ba2011-12-23 18:29:55 +0200366 return mtd_write_oob(mtd, offs, &ops);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200367}
368
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200369static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
370{
371 u32 ver_offs = td->veroffs;
372
373 if (!(td->options & NAND_BBT_NO_OOB))
374 ver_offs += mtd->writesize;
375 return ver_offs;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
379 * 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 -0700380 * @mtd: MTD device structure
381 * @buf: temporary buffer
382 * @td: descriptor for the bad block table
383 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700385 * Read the bad block table(s) for all chips starting at a given page. We
386 * assume that the bbt bits are in consecutive order.
387 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700388static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
389 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100391 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000393 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (td->options & NAND_BBT_VERSION) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700395 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200396 mtd->writesize, td);
397 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700398 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700399 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000402 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (md && (md->options & NAND_BBT_VERSION)) {
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700404 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Shmulik Ladkani7bb9c752012-06-10 13:58:12 +0300405 mtd->writesize, md);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200406 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700407 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700408 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Brian Norris8b6e50c2011-05-25 14:59:01 -0700412/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200413static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300414 loff_t offs, uint8_t *buf, int numpages)
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200415{
416 struct mtd_oob_ops ops;
417 int j, ret;
418
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200419 ops.ooblen = mtd->oobsize;
420 ops.oobbuf = buf;
421 ops.ooboffs = 0;
422 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700423 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200424
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300425 for (j = 0; j < numpages; j++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200426 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700427 * Read the full oob until read_oob is fixed to handle single
428 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200429 */
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200430 ret = mtd_read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700431 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700432 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200433 return ret;
434
435 if (check_short_pattern(buf, bd))
436 return 1;
437
438 offs += mtd->writesize;
439 }
440 return 0;
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/**
444 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700445 * @mtd: MTD device structure
446 * @buf: temporary buffer
447 * @bd: descriptor for the good/bad block search pattern
448 * @chip: create the table for a specific chip, -1 read all chips; applies only
449 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700451 * Create a bad block table by scanning the device for the given good/bad block
452 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200454static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
455 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100457 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norris5961ad22013-10-30 00:41:30 -0400458 int i, numblocks, numpages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int startblock;
460 loff_t from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Brian Norris9a4d4d62011-07-19 10:06:07 -0700462 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Brian Norris5961ad22013-10-30 00:41:30 -0400464 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300465 numpages = 2;
Brian Norris58373ff2010-07-15 12:15:44 -0700466 else
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300467 numpages = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (chip == -1) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700470 numblocks = mtd->size >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 startblock = 0;
472 from = 0;
473 } else {
474 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700475 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100476 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000477 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Brian Norrisb4d20d62013-07-30 17:52:56 -0700479 numblocks = this->chipsize >> this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 startblock = chip * numblocks;
481 numblocks += startblock;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700482 from = (loff_t)startblock << this->bbt_erase_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000484
Brian Norris5fb15492011-05-31 16:31:21 -0700485 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Shmulik Ladkanieceb84b2012-08-20 16:29:15 +0300486 from += mtd->erasesize - (mtd->writesize * numpages);
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700487
Brian Norrisb4d20d62013-07-30 17:52:56 -0700488 for (i = startblock; i < numblocks; i++) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000489 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000490
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200491 BUG_ON(bd->options & NAND_BBT_NO_OOB);
492
Brian Norris5961ad22013-10-30 00:41:30 -0400493 ret = scan_block_fast(mtd, bd, from, buf, numpages);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200494 if (ret < 0)
495 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000496
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200497 if (ret) {
Brian Norrisb4d20d62013-07-30 17:52:56 -0700498 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700499 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisb4d20d62013-07-30 17:52:56 -0700500 i, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200501 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 from += (1 << this->bbt_erase_shift);
505 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000506 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509/**
510 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700511 * @mtd: MTD device structure
512 * @buf: temporary buffer
513 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700515 * Read the bad block table by searching for a given ident pattern. Search is
516 * preformed either from the beginning up or from the end of the device
517 * downwards. The search starts always at the start of a block. If the option
518 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
519 * the bad block information of this chip. This is necessary to provide support
520 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700522 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100524static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100526 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 int i, chips;
Brian Norris930de532014-01-02 17:14:10 -0800528 int startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200529 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200531 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Brian Norris8b6e50c2011-05-25 14:59:01 -0700533 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100535 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 dir = -1;
537 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000538 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000540 }
541
Brian Norris8b6e50c2011-05-25 14:59:01 -0700542 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (td->options & NAND_BBT_PERCHIP) {
544 chips = this->numchips;
545 bbtblocks = this->chipsize >> this->bbt_erase_shift;
546 startblock &= bbtblocks - 1;
547 } else {
548 chips = 1;
549 bbtblocks = mtd->size >> this->bbt_erase_shift;
550 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 for (i = 0; i < chips; i++) {
553 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000554 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 td->pages[i] = -1;
556 /* Scan the maximum number of blocks */
557 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000560 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* Read first page */
Brian Norrisaf69dcd2012-06-22 16:35:42 -0700563 scan_read(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200564 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200565 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200567 offs = bbt_get_ver_offs(mtd, td);
568 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570 break;
571 }
572 }
573 startblock += this->chipsize >> this->bbt_erase_shift;
574 }
575 /* Check, if we found a bbt for each requested chip */
576 for (i = 0; i < chips; i++) {
577 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700578 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 else
Rafał Miłecki2ac63d92014-08-19 13:55:34 +0200580 pr_info("Bad block table found at page %d, version 0x%02X\n",
581 td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/**
587 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700588 * @mtd: MTD device structure
589 * @buf: temporary buffer
590 * @td: descriptor for the bad block table
591 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700593 * Search and read the bad block table(s).
594 */
Brian Norris7b5a2d42012-06-22 16:35:41 -0700595static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
596 struct nand_bbt_descr *td,
597 struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100600 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* Search the mirror table */
603 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100604 search_bbt(mtd, buf, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000605}
606
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000607/**
Boris Brezillonc3baf272016-08-15 18:22:01 -0500608 * get_bbt_block - Get the first valid eraseblock suitable to store a BBT
609 * @this: the NAND device
610 * @td: the BBT description
611 * @md: the mirror BBT descriptor
612 * @chip: the CHIP selector
613 *
614 * This functions returns a positive block number pointing a valid eraseblock
615 * suitable to store a BBT (i.e. in the range reserved for BBT), or -ENOSPC if
616 * all blocks are already used of marked bad. If td->pages[chip] was already
617 * pointing to a valid block we re-use it, otherwise we search for the next
618 * valid one.
619 */
620static int get_bbt_block(struct nand_chip *this, struct nand_bbt_descr *td,
621 struct nand_bbt_descr *md, int chip)
622{
623 int startblock, dir, page, numblocks, i;
624
625 /*
626 * There was already a version of the table, reuse the page. This
627 * applies for absolute placement too, as we have the page number in
628 * td->pages.
629 */
630 if (td->pages[chip] != -1)
631 return td->pages[chip] >>
632 (this->bbt_erase_shift - this->page_shift);
633
634 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
635 if (!(td->options & NAND_BBT_PERCHIP))
636 numblocks *= this->numchips;
637
638 /*
639 * Automatic placement of the bad block table. Search direction
640 * top -> down?
641 */
642 if (td->options & NAND_BBT_LASTBLOCK) {
643 startblock = numblocks * (chip + 1) - 1;
644 dir = -1;
645 } else {
646 startblock = chip * numblocks;
647 dir = 1;
648 }
649
650 for (i = 0; i < td->maxblocks; i++) {
651 int block = startblock + dir * i;
652
653 /* Check, if the block is bad */
654 switch (bbt_get_entry(this, block)) {
655 case BBT_BLOCK_WORN:
656 case BBT_BLOCK_FACTORY_BAD:
657 continue;
658 }
659
660 page = block << (this->bbt_erase_shift - this->page_shift);
661
662 /* Check, if the block is used by the mirror table */
663 if (!md || md->pages[chip] != page)
664 return block;
665 }
666
667 return -ENOSPC;
668}
669
670/**
Kyle Roeschley10ffd572016-08-15 18:22:02 -0500671 * mark_bbt_block_bad - Mark one of the block reserved for BBT bad
672 * @this: the NAND device
673 * @td: the BBT description
674 * @chip: the CHIP selector
675 * @block: the BBT block to mark
676 *
677 * Blocks reserved for BBT can become bad. This functions is an helper to mark
678 * such blocks as bad. It takes care of updating the in-memory BBT, marking the
679 * block as bad using a bad block marker and invalidating the associated
680 * td->pages[] entry.
681 */
682static void mark_bbt_block_bad(struct nand_chip *this,
683 struct nand_bbt_descr *td,
684 int chip, int block)
685{
686 struct mtd_info *mtd = nand_to_mtd(this);
687 loff_t to;
688 int res;
689
690 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
691
692 to = (loff_t)block << this->bbt_erase_shift;
693 res = this->block_markbad(mtd, to);
694 if (res)
695 pr_warn("nand_bbt: error %d while marking block %d bad\n",
696 res, block);
697
698 td->pages[chip] = -1;
699}
700
701/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700703 * @mtd: MTD device structure
704 * @buf: temporary buffer
705 * @td: descriptor for the bad block table
706 * @md: descriptor for the bad block table mirror
707 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700709 * (Re)write the bad block table.
710 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100711static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200712 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
713 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100715 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct erase_info einfo;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700717 int i, res, chip = 0;
Boris Brezillonc3baf272016-08-15 18:22:01 -0500718 int bits, page, offs, numblocks, sft, sftmsk;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700719 int nrchips, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 uint8_t msk[4];
721 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200722 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200724 struct mtd_oob_ops ops;
725
726 ops.ooblen = mtd->oobsize;
727 ops.ooboffs = 0;
728 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700729 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 if (!rcode)
732 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700733 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100735 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700736 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (chipsel == -1) {
738 nrchips = this->numchips;
739 } else {
740 nrchips = chipsel + 1;
741 chip = chipsel;
742 }
743 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100744 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000746 }
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* Loop through the chips */
Kyle Roeschley10ffd572016-08-15 18:22:02 -0500749 while (chip < nrchips) {
Boris Brezillonc3baf272016-08-15 18:22:01 -0500750 int block;
751
752 block = get_bbt_block(this, td, md, chip);
753 if (block < 0) {
754 pr_err("No space left to write bad block table\n");
755 res = block;
756 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Brian Norris8b6e50c2011-05-25 14:59:01 -0700759 /*
Boris Brezillonc3baf272016-08-15 18:22:01 -0500760 * get_bbt_block() returns a block number, shift the value to
761 * get a page number.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700762 */
Boris Brezillonc3baf272016-08-15 18:22:01 -0500763 page = block << (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* Set up shift count and masks for the flash table */
766 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200767 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200769 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
770 msk[3] = 0x01;
771 break;
772 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
773 msk[3] = 0x03;
774 break;
775 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
776 msk[3] = 0x0f;
777 break;
778 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
779 msk[3] = 0xff;
780 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 default: return -EINVAL;
782 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000783
Brian Norris596d7452011-09-07 13:13:33 -0700784 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Brian Norris8b6e50c2011-05-25 14:59:01 -0700786 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (td->options & NAND_BBT_SAVECONTENT) {
788 /* Make it block aligned */
Brian Norrisf5cd2ae2015-02-28 02:13:13 -0800789 to &= ~(((loff_t)1 << this->bbt_erase_shift) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 len = 1 << this->bbt_erase_shift;
Artem Bityutskiy329ad392011-12-23 17:30:16 +0200791 res = mtd_read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (res < 0) {
793 if (retlen != len) {
Rafał Miłecki2ac63d92014-08-19 13:55:34 +0200794 pr_info("nand_bbt: error reading block for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return res;
796 }
Rafał Miłecki2ac63d92014-08-19 13:55:34 +0200797 pr_warn("nand_bbt: ECC error while reading block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200799 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300800 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200801 ops.oobbuf = &buf[len];
Artem Bityutskiyfd2819b2011-12-23 18:27:05 +0200802 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300803 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200804 goto outerr;
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Calc the byte offset in the buffer */
807 pageoffs = page - (int)(to >> this->page_shift);
808 offs = pageoffs << this->page_shift;
809 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700810 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200811 ooboffs = len + (pageoffs * mtd->oobsize);
812
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200813 } else if (td->options & NAND_BBT_NO_OOB) {
814 ooboffs = 0;
815 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700816 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200817 if (td->options & NAND_BBT_VERSION)
818 offs++;
819 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700820 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200821 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700822 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200823 len = ALIGN(len, mtd->writesize);
824 /* Preset the buffer with 0xff */
825 memset(buf, 0xff, len);
826 /* Pattern is located at the begin of first page */
827 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 } else {
829 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700830 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700831 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200832 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200834 memset(buf, 0xff, len +
835 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200837 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200839 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000841
Thomas Gleixner9223a452006-05-23 17:21:03 +0200842 if (td->options & NAND_BBT_VERSION)
843 buf[ooboffs + td->veroffs] = td->version[chip];
844
Brian Norris8b6e50c2011-05-25 14:59:01 -0700845 /* Walk through the memory table */
Brian Norrisb4d20d62013-07-30 17:52:56 -0700846 for (i = 0; i < numblocks; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 uint8_t dat;
Brian Norrisb4d20d62013-07-30 17:52:56 -0700848 int sftcnt = (i << (3 - sft)) & sftmsk;
849 dat = bbt_get_entry(this, chip * numblocks + i);
850 /* Do not store the reserved bbt blocks! */
851 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000853
David Woodhousee0c7d762006-05-13 18:07:53 +0100854 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000856 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100858 res = nand_erase_nand(mtd, &einfo, 1);
Kyle Roeschley10ffd572016-08-15 18:22:02 -0500859 if (res < 0) {
860 pr_warn("nand_bbt: error while erasing BBT block %d\n",
861 res);
862 mark_bbt_block_bad(this, td, chip, block);
863 continue;
864 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000865
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200866 res = scan_write_bbt(mtd, to, len, buf,
867 td->options & NAND_BBT_NO_OOB ? NULL :
868 &buf[len]);
Kyle Roeschley10ffd572016-08-15 18:22:02 -0500869 if (res < 0) {
870 pr_warn("nand_bbt: error while writing BBT block %d\n",
871 res);
872 mark_bbt_block_bad(this, td, chip, block);
873 continue;
874 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200875
Brian Norrisd0370212011-07-19 10:06:08 -0700876 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
877 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* Mark it as used */
Kyle Roeschley10ffd572016-08-15 18:22:02 -0500880 td->pages[chip++] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200883
884 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700885 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200886 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889/**
890 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700891 * @mtd: MTD device structure
892 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700894 * The function creates a memory based bbt by scanning the device for
895 * manufacturer / software marked good / bad blocks.
896 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100897static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100899 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100901 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
904/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100905 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700906 * @mtd: MTD device structure
907 * @buf: temporary buffer
908 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700910 * The function checks the results of the previous call to read_bbt and creates
911 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
912 * for the chip/device. Update is necessary if one of the tables is missing or
913 * the version nr. of one table is less than the other.
914 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100915static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Brian Norris623978d2011-09-20 18:35:34 -0700917 int i, chips, writeops, create, chipsel, res, res2;
Boris BREZILLON862eba52015-12-01 12:03:03 +0100918 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct nand_bbt_descr *td = this->bbt_td;
920 struct nand_bbt_descr *md = this->bbt_md;
921 struct nand_bbt_descr *rd, *rd2;
922
Brian Norris8b6e50c2011-05-25 14:59:01 -0700923 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000924 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000926 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 for (i = 0; i < chips; i++) {
930 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700931 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 rd = NULL;
933 rd2 = NULL;
Brian Norris623978d2011-09-20 18:35:34 -0700934 res = res2 = 0;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700935 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700937 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (md) {
939 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700940 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700942 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000943 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700944 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700945 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700947 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700948 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 rd = td;
950 if (!(td->options & NAND_BBT_VERSION))
951 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700952 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 rd = td;
Brian Norris596d7452011-09-07 13:13:33 -0700954 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 } else {
956 rd = md;
Brian Norris596d7452011-09-07 13:13:33 -0700957 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 } else {
960 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700961 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700963 } else {
964 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000967
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700968 if (create) {
969 /* Create the bad block table by scanning the device? */
970 if (!(td->options & NAND_BBT_CREATE))
971 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000972
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700973 /* Create the table in memory by scanning the chip(s) */
974 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
975 create_bbt(mtd, buf, bd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700977 td->version[i] = 1;
978 if (md)
979 md->version[i] = 1;
980 }
981
Brian Norris8b6e50c2011-05-25 14:59:01 -0700982 /* Read back first? */
Brian Norris623978d2011-09-20 18:35:34 -0700983 if (rd) {
984 res = read_abs_bbt(mtd, buf, rd, chipsel);
985 if (mtd_is_eccerr(res)) {
986 /* Mark table as invalid */
987 rd->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700988 rd->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -0700989 i--;
990 continue;
991 }
992 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700993 /* If they weren't versioned, read both */
Brian Norris623978d2011-09-20 18:35:34 -0700994 if (rd2) {
995 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
996 if (mtd_is_eccerr(res2)) {
997 /* Mark table as invalid */
998 rd2->pages[i] = -1;
Brian Norrisdadc17a2011-09-20 18:35:57 -0700999 rd2->version[i] = 0;
Brian Norris623978d2011-09-20 18:35:34 -07001000 i--;
1001 continue;
1002 }
1003 }
1004
1005 /* Scrub the flash table(s)? */
1006 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
1007 writeops = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Brian Norrisdadc17a2011-09-20 18:35:57 -07001009 /* Update version numbers before writing */
1010 if (md) {
1011 td->version[i] = max(td->version[i], md->version[i]);
1012 md->version[i] = td->version[i];
1013 }
1014
Brian Norris8b6e50c2011-05-25 14:59:01 -07001015 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001017 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (res < 0)
1019 return res;
1020 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001021
Brian Norris8b6e50c2011-05-25 14:59:01 -07001022 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001024 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (res < 0)
1026 return res;
1027 }
1028 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001029 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001033 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -07001034 * @mtd: MTD device structure
1035 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001037 * The bad block table regions are marked as "bad" to prevent accidental
1038 * erasures / writes. The regions are identified by the mark 0x02.
1039 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001040static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001042 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 int i, j, chips, block, nrblocks, update;
Brian Norris771c5682013-07-30 17:52:55 -07001044 uint8_t oldval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Brian Norris8b6e50c2011-05-25 14:59:01 -07001046 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (td->options & NAND_BBT_PERCHIP) {
1048 chips = this->numchips;
1049 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1050 } else {
1051 chips = 1;
1052 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001053 }
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 for (i = 0; i < chips; i++) {
1056 if ((td->options & NAND_BBT_ABSPAGE) ||
1057 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001058 if (td->pages[i] == -1)
1059 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Brian Norrisb4d20d62013-07-30 17:52:56 -07001061 oldval = bbt_get_entry(this, block);
1062 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001063 if ((oldval != BBT_BLOCK_RESERVED) &&
1064 td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001065 nand_update_bbt(mtd, (loff_t)block <<
1066 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 continue;
1068 }
1069 update = 0;
1070 if (td->options & NAND_BBT_LASTBLOCK)
1071 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001072 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 block = i * nrblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 for (j = 0; j < td->maxblocks; j++) {
Brian Norrisb4d20d62013-07-30 17:52:56 -07001075 oldval = bbt_get_entry(this, block);
1076 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
Brian Norris771c5682013-07-30 17:52:55 -07001077 if (oldval != BBT_BLOCK_RESERVED)
David Woodhousee0c7d762006-05-13 18:07:53 +01001078 update = 1;
Brian Norrisb4d20d62013-07-30 17:52:56 -07001079 block++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001080 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001081 /*
1082 * If we want reserved blocks to be recorded to flash, and some
1083 * new ones have been marked, then we need to update the stored
1084 * bbts. This should only happen once.
1085 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (update && td->reserved_block_code)
Brian Norrisb4d20d62013-07-30 17:52:56 -07001087 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1088 this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090}
1091
1092/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001093 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001094 * @mtd: MTD device structure
1095 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001096 *
1097 * This functions performs a few sanity checks on the bad block description
1098 * table.
1099 */
1100static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1101{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001102 struct nand_chip *this = mtd_to_nand(mtd);
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001103 u32 pattern_len;
1104 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001105 u32 table_size;
1106
1107 if (!bd)
1108 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001109
1110 pattern_len = bd->len;
1111 bits = bd->options & NAND_BBT_NRBITS_MSK;
1112
Brian Norrisa40f7342011-05-31 16:31:22 -07001113 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001114 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001115 BUG_ON(!bits);
1116
1117 if (bd->options & NAND_BBT_VERSION)
1118 pattern_len++;
1119
1120 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001121 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001122 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001123 BUG_ON(bd->offs);
1124 if (bd->options & NAND_BBT_VERSION)
1125 BUG_ON(bd->veroffs != bd->len);
1126 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1127 }
1128
1129 if (bd->options & NAND_BBT_PERCHIP)
1130 table_size = this->chipsize >> this->bbt_erase_shift;
1131 else
1132 table_size = mtd->size >> this->bbt_erase_shift;
1133 table_size >>= 3;
1134 table_size *= bits;
1135 if (bd->options & NAND_BBT_NO_OOB)
1136 table_size += pattern_len;
1137 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1138}
1139
1140/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001142 * @mtd: MTD device structure
1143 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001145 * The function checks, if a bad block table(s) is/are already available. If
1146 * not it scans the device for manufacturer marked good / bad blocks and writes
1147 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001149 * The bad block table memory is allocated here. It must be freed by calling
1150 * the nand_free_bbt function.
1151 */
Brian Norris17799352015-02-28 02:13:11 -08001152static int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001154 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norris83c59542015-02-28 02:13:12 -08001155 int len, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 uint8_t *buf;
1157 struct nand_bbt_descr *td = this->bbt_td;
1158 struct nand_bbt_descr *md = this->bbt_md;
1159
Sheng Yong192db1c2015-07-31 01:12:44 +00001160 len = (mtd->size >> (this->bbt_erase_shift + 2)) ? : 1;
Brian Norris8b6e50c2011-05-25 14:59:01 -07001161 /*
1162 * Allocate memory (2bit per block) and clear the memory bad block
1163 * table.
1164 */
Burman Yan95b93a02006-11-15 21:10:29 +02001165 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001166 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Brian Norris8b6e50c2011-05-25 14:59:01 -07001169 /*
1170 * If no primary table decriptor is given, scan the device to build a
1171 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001173 if (!td) {
1174 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001175 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
Brian Norris83c59542015-02-28 02:13:12 -08001176 goto err;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001177 }
Brian Norris83c59542015-02-28 02:13:12 -08001178 return 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001179 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001180 verify_bbt_descr(mtd, td);
1181 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 /* Allocate a temporary buffer for one eraseblock incl. oob */
1184 len = (1 << this->bbt_erase_shift);
1185 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001186 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!buf) {
Brian Norris83c59542015-02-28 02:13:12 -08001188 res = -ENOMEM;
1189 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001191
Brian Norris8b6e50c2011-05-25 14:59:01 -07001192 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (td->options & NAND_BBT_ABSPAGE) {
Brian Norris7b5a2d42012-06-22 16:35:41 -07001194 read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001195 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /* Search the bad block table using a pattern in oob */
Brian Norris7b5a2d42012-06-22 16:35:41 -07001197 search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Brian Norris7b5a2d42012-06-22 16:35:41 -07001200 res = check_create(mtd, buf, bd);
Brian Norris83c59542015-02-28 02:13:12 -08001201 if (res)
1202 goto err;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001205 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001207 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001208
David Woodhousee0c7d762006-05-13 18:07:53 +01001209 vfree(buf);
Brian Norris83c59542015-02-28 02:13:12 -08001210 return 0;
1211
1212err:
1213 kfree(this->bbt);
1214 this->bbt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return res;
1216}
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218/**
Brian Norrisb32843b2013-07-30 17:52:59 -07001219 * nand_update_bbt - update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001220 * @mtd: MTD device structure
1221 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001223 * The function updates the bad block table(s).
1224 */
Brian Norrisb32843b2013-07-30 17:52:59 -07001225static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001227 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norris1196ac52011-09-07 13:13:32 -07001228 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 int chip, chipsel;
1230 uint8_t *buf;
1231 struct nand_bbt_descr *td = this->bbt_td;
1232 struct nand_bbt_descr *md = this->bbt_md;
1233
1234 if (!this->bbt || !td)
1235 return -EINVAL;
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* Allocate a temporary buffer for one eraseblock incl. oob */
1238 len = (1 << this->bbt_erase_shift);
1239 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001240 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001241 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001243
Brian Norris8b6e50c2011-05-25 14:59:01 -07001244 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001246 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 chipsel = chip;
1248 } else {
1249 chip = 0;
1250 chipsel = -1;
1251 }
1252
1253 td->version[chip]++;
1254 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001255 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Brian Norris8b6e50c2011-05-25 14:59:01 -07001257 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001258 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001259 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (res < 0)
1261 goto out;
1262 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001263 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001264 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001265 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267
David Woodhousee0c7d762006-05-13 18:07:53 +01001268 out:
1269 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return res;
1271}
1272
Brian Norris8b6e50c2011-05-25 14:59:01 -07001273/*
1274 * Define some generic bad / good block scan pattern which are used
1275 * while scanning a device for factory marked good / bad blocks.
1276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1278
Brian Norris7854d3f2011-06-23 14:12:08 -07001279/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1281static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1282
1283static struct nand_bbt_descr bbt_main_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 = bbt_pattern
1291};
1292
1293static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001294 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1296 .offs = 8,
1297 .len = 4,
1298 .veroffs = 12,
Richard Genoud61de9da2012-09-11 15:50:54 +02001299 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 .pattern = mirror_pattern
1301};
1302
Brian Norris9fd6b372012-06-22 16:35:40 -07001303static struct nand_bbt_descr bbt_main_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 = bbt_pattern
1311};
1312
Brian Norris9fd6b372012-06-22 16:35:40 -07001313static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001314 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1315 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1316 | NAND_BBT_NO_OOB,
1317 .len = 4,
1318 .veroffs = 4,
Richard Genoud61de9da2012-09-11 15:50:54 +02001319 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001320 .pattern = mirror_pattern
1321};
1322
Brian Norris752ed6c2011-09-20 18:36:42 -07001323#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Brian Norris58373ff2010-07-15 12:15:44 -07001324/**
Brian Norris752ed6c2011-09-20 18:36:42 -07001325 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001326 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001327 *
1328 * This function allocates and initializes a nand_bbt_descr for BBM detection
Brian Norris752ed6c2011-09-20 18:36:42 -07001329 * based on the properties of @this. The new descriptor is stored in
Brian Norris58373ff2010-07-15 12:15:44 -07001330 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1331 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001332 */
Brian Norris752ed6c2011-09-20 18:36:42 -07001333static int nand_create_badblock_pattern(struct nand_chip *this)
Brian Norris58373ff2010-07-15 12:15:44 -07001334{
1335 struct nand_bbt_descr *bd;
1336 if (this->badblock_pattern) {
Brian Norris752ed6c2011-09-20 18:36:42 -07001337 pr_warn("Bad block pattern already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001338 return -EINVAL;
1339 }
1340 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001341 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001342 return -ENOMEM;
Brian Norris752ed6c2011-09-20 18:36:42 -07001343 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Brian Norris58373ff2010-07-15 12:15:44 -07001344 bd->offs = this->badblockpos;
1345 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1346 bd->pattern = scan_ff_pattern;
1347 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1348 this->badblock_pattern = bd;
1349 return 0;
1350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001353 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001354 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001356 * This function selects the default bad block table support for the device and
1357 * calls the nand_scan_bbt function.
1358 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001359int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001361 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norrisabb9cf72014-05-20 22:34:40 -07001362 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001363
Brian Norris8b6e50c2011-05-25 14:59:01 -07001364 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001365 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001366 /* Use the default pattern descriptors */
1367 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001368 if (this->bbt_options & NAND_BBT_NO_OOB) {
Brian Norris9fd6b372012-06-22 16:35:40 -07001369 this->bbt_td = &bbt_main_no_oob_descr;
1370 this->bbt_md = &bbt_mirror_no_oob_descr;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001371 } else {
1372 this->bbt_td = &bbt_main_descr;
1373 this->bbt_md = &bbt_mirror_descr;
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 } else {
1377 this->bbt_td = NULL;
1378 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001380
Brian Norrisabb9cf72014-05-20 22:34:40 -07001381 if (!this->badblock_pattern) {
1382 ret = nand_create_badblock_pattern(this);
1383 if (ret)
1384 return ret;
1385 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001386
David Woodhousee0c7d762006-05-13 18:07:53 +01001387 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
1390/**
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03001391 * nand_isreserved_bbt - [NAND Interface] Check if a block is reserved
1392 * @mtd: MTD device structure
1393 * @offs: offset in the device
1394 */
1395int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs)
1396{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001397 struct nand_chip *this = mtd_to_nand(mtd);
Ezequiel Garcia8471bb72014-05-21 19:06:12 -03001398 int block;
1399
1400 block = (int)(offs >> this->bbt_erase_shift);
1401 return bbt_get_entry(this, block) == BBT_BLOCK_RESERVED;
1402}
1403
1404/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001405 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001406 * @mtd: MTD device structure
1407 * @offs: offset in the device
1408 * @allowbbt: allow access to bad block table region
1409 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001410int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001412 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norris39dbb022013-07-30 17:52:57 -07001413 int block, res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001414
Brian Norrisb4d20d62013-07-30 17:52:56 -07001415 block = (int)(offs >> this->bbt_erase_shift);
1416 res = bbt_get_entry(this, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Rafał Miłecki2ac63d92014-08-19 13:55:34 +02001418 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1419 (unsigned int)offs, block, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Brian Norris39dbb022013-07-30 17:52:57 -07001421 switch (res) {
Brian Norris771c5682013-07-30 17:52:55 -07001422 case BBT_BLOCK_GOOD:
David Woodhousee0c7d762006-05-13 18:07:53 +01001423 return 0;
Brian Norris771c5682013-07-30 17:52:55 -07001424 case BBT_BLOCK_WORN:
David Woodhousee0c7d762006-05-13 18:07:53 +01001425 return 1;
Brian Norris771c5682013-07-30 17:52:55 -07001426 case BBT_BLOCK_RESERVED:
David Woodhousee0c7d762006-05-13 18:07:53 +01001427 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429 return 1;
1430}
1431
Brian Norrisb32843b2013-07-30 17:52:59 -07001432/**
1433 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1434 * @mtd: MTD device structure
1435 * @offs: offset of the bad block
1436 */
1437int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1438{
Boris BREZILLON862eba52015-12-01 12:03:03 +01001439 struct nand_chip *this = mtd_to_nand(mtd);
Brian Norrisb32843b2013-07-30 17:52:59 -07001440 int block, ret = 0;
1441
1442 block = (int)(offs >> this->bbt_erase_shift);
1443
1444 /* Mark bad block in memory */
1445 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1446
1447 /* Update flash-based bad block table */
1448 if (this->bbt_options & NAND_BBT_USE_FLASH)
1449 ret = nand_update_bbt(mtd, offs);
1450
1451 return ret;
1452}