blob: 0ed8591dbd269b612e442bd68f87c8e2852712b3 [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de)
8 *
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
25 * version number than 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>
65#include <linux/mtd/nand.h>
66#include <linux/mtd/nand_ecc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/bitops.h>
68#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010069#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020071static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
72{
73 int ret;
74
75 ret = memcmp(buf, td->pattern, td->len);
76 if (!ret)
77 return ret;
78 return -1;
79}
80
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000081/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * check_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -070083 * @buf: the buffer to search
84 * @len: the length of buffer to search
85 * @paglen: the pagelength
86 * @td: search pattern descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Brian Norris8b6e50c2011-05-25 14:59:01 -070088 * Check for a pattern at the given place. Used to search bad block tables and
89 * good / bad block identifiers. If the SCAN_EMPTY option is set then check, if
90 * all bytes except the pattern area contain 0xff.
91 */
David Woodhousee0c7d762006-05-13 18:07:53 +010092static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000094 int i, end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 uint8_t *p = buf;
96
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +020097 if (td->options & NAND_BBT_NO_OOB)
98 return check_pattern_no_oob(buf, td);
99
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100100 end = paglen + td->offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (td->options & NAND_BBT_SCANEMPTY) {
102 for (i = 0; i < end; i++) {
103 if (p[i] != 0xff)
104 return -1;
105 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000106 }
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100107 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* Compare the pattern */
110 for (i = 0; i < td->len; i++) {
111 if (p[i] != td->pattern[i])
112 return -1;
113 }
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000116 p += td->len;
117 end += td->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 for (i = end; i < len; i++) {
119 if (*p++ != 0xff)
120 return -1;
121 }
122 }
123 return 0;
124}
125
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000126/**
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100127 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Brian Norris8b6e50c2011-05-25 14:59:01 -0700128 * @buf: the buffer to search
129 * @td: search pattern descriptor
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100130 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700131 * Check for a pattern at the given place. Used to search bad block tables and
132 * good / bad block identifiers. Same as check_pattern, but no optional empty
133 * check.
134 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100135static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100136{
137 int i;
138 uint8_t *p = buf;
139
140 /* Compare the pattern */
141 for (i = 0; i < td->len; i++) {
Thomas Gleixner19870da2005-07-15 14:53:51 +0100142 if (p[td->offs + i] != td->pattern[i])
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100143 return -1;
144 }
145 return 0;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200149 * add_marker_len - compute the length of the marker in data area
Brian Norris8b6e50c2011-05-25 14:59:01 -0700150 * @td: BBT descriptor used for computation
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200151 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700152 * The length will be 0 if the marker is located in OOB area.
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200153 */
154static u32 add_marker_len(struct nand_bbt_descr *td)
155{
156 u32 len;
157
158 if (!(td->options & NAND_BBT_NO_OOB))
159 return 0;
160
161 len = td->len;
162 if (td->options & NAND_BBT_VERSION)
163 len++;
164 return len;
165}
166
167/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * read_bbt - [GENERIC] Read the bad block table starting from page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700169 * @mtd: MTD device structure
170 * @buf: temporary buffer
171 * @page: the starting page
172 * @num: the number of bbt descriptors to read
Brian Norris7854d3f2011-06-23 14:12:08 -0700173 * @td: the bbt describtion table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700174 * @offs: offset in the memory table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
176 * Read the bad block table starting from page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100178static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200179 struct nand_bbt_descr *td, int offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Brian Norris167a8d52011-09-20 18:35:08 -0700181 int res, ret = 0, i, j, act = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct nand_chip *this = mtd->priv;
183 size_t retlen, len, totlen;
184 loff_t from;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200185 int bits = td->options & NAND_BBT_NRBITS_MSK;
Brian Norris596d7452011-09-07 13:13:33 -0700186 uint8_t msk = (uint8_t)((1 << bits) - 1);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200187 u32 marker_len;
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200188 int reserved_block_code = td->reserved_block_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 totlen = (num * bits) >> 3;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200191 marker_len = add_marker_len(td);
Brian Norris596d7452011-09-07 13:13:33 -0700192 from = ((loff_t)page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 while (totlen) {
Brian Norris596d7452011-09-07 13:13:33 -0700195 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200196 if (marker_len) {
197 /*
198 * In case the BBT marker is not in the OOB area it
199 * will be just in the first page.
200 */
201 len -= marker_len;
202 from += marker_len;
203 marker_len = 0;
204 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200205 res = mtd->read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (res < 0) {
Brian Norris167a8d52011-09-20 18:35:08 -0700207 if (mtd_is_eccerr(res)) {
208 pr_info("nand_bbt: ECC error in BBT at "
209 "0x%012llx\n", from & ~mtd->writesize);
210 return res;
211 } else if (mtd_is_bitflip(res)) {
212 pr_info("nand_bbt: corrected error in BBT at "
213 "0x%012llx\n", from & ~mtd->writesize);
214 ret = res;
215 } else {
216 pr_info("nand_bbt: error reading BBT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return res;
218 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* Analyse data */
222 for (i = 0; i < len; i++) {
223 uint8_t dat = buf[i];
224 for (j = 0; j < 8; j += bits, act += 2) {
225 uint8_t tmp = (dat >> j) & msk;
226 if (tmp == msk)
227 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100228 if (reserved_block_code && (tmp == reserved_block_code)) {
Brian Norrisd0370212011-07-19 10:06:08 -0700229 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
230 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200232 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 continue;
234 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700235 /*
236 * Leave it for now, if it's matured we can
Brian Norrisa0f50802011-07-19 10:06:06 -0700237 * move this message to pr_debug.
Brian Norris8b6e50c2011-05-25 14:59:01 -0700238 */
Brian Norrisd0370212011-07-19 10:06:08 -0700239 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
240 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700241 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (tmp == 0)
243 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
244 else
245 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200246 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 totlen -= len;
250 from += len;
251 }
Brian Norris167a8d52011-09-20 18:35:08 -0700252 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/**
256 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700257 * @mtd: MTD device structure
258 * @buf: temporary buffer
259 * @td: descriptor for the bad block table
Brian Norris596d7452011-09-07 13:13:33 -0700260 * @chip: read the table for a specific chip, -1 read all chips; applies only if
Brian Norris8b6e50c2011-05-25 14:59:01 -0700261 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700263 * Read the bad block table for all chips starting at a given page. We assume
264 * that the bbt bits are in consecutive order.
265 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100266static 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 -0700267{
268 struct nand_chip *this = mtd->priv;
269 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (td->options & NAND_BBT_PERCHIP) {
272 int offs = 0;
273 for (i = 0; i < this->numchips; i++) {
274 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200275 res = read_bbt(mtd, buf, td->pages[i],
276 this->chipsize >> this->bbt_erase_shift,
277 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (res)
279 return res;
280 offs += this->chipsize >> (this->bbt_erase_shift + 2);
281 }
282 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200283 res = read_bbt(mtd, buf, td->pages[0],
284 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (res)
286 return res;
287 }
288 return 0;
289}
290
Brian Norris8b6e50c2011-05-25 14:59:01 -0700291/* BBT marker is in the first page, no OOB */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200292static int scan_read_raw_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
293 struct nand_bbt_descr *td)
294{
295 size_t retlen;
296 size_t len;
297
298 len = td->len;
299 if (td->options & NAND_BBT_VERSION)
300 len++;
301
302 return mtd->read(mtd, offs, len, &retlen, buf);
303}
304
Brian Norris8b6e50c2011-05-25 14:59:01 -0700305/* Scan read raw data from flash */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200306static int scan_read_raw_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200307 size_t len)
308{
309 struct mtd_oob_ops ops;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200310 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200311
Brian Norris0612b9d2011-08-30 18:45:40 -0700312 ops.mode = MTD_OPS_RAW;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200313 ops.ooboffs = 0;
314 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200315
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200316 while (len > 0) {
Brian Norris105513c2011-09-07 13:13:28 -0700317 ops.datbuf = buf;
318 ops.len = min(len, (size_t)mtd->writesize);
319 ops.oobbuf = buf + ops.len;
Brian Norris903cd062011-06-28 16:28:58 -0700320
Brian Norris105513c2011-09-07 13:13:28 -0700321 res = mtd->read_oob(mtd, offs, &ops);
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200322
Brian Norrisafa17de2011-09-07 13:13:29 -0700323 if (res)
Brian Norris105513c2011-09-07 13:13:28 -0700324 return res;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200325
326 buf += mtd->oobsize + mtd->writesize;
327 len -= mtd->writesize;
328 }
329 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200330}
331
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200332static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
333 size_t len, struct nand_bbt_descr *td)
334{
335 if (td->options & NAND_BBT_NO_OOB)
336 return scan_read_raw_data(mtd, buf, offs, td);
337 else
338 return scan_read_raw_oob(mtd, buf, offs, len);
339}
340
Brian Norris8b6e50c2011-05-25 14:59:01 -0700341/* Scan write data with oob to flash */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200342static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
343 uint8_t *buf, uint8_t *oob)
344{
345 struct mtd_oob_ops ops;
346
Brian Norris0612b9d2011-08-30 18:45:40 -0700347 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200348 ops.ooboffs = 0;
349 ops.ooblen = mtd->oobsize;
350 ops.datbuf = buf;
351 ops.oobbuf = oob;
352 ops.len = len;
353
354 return mtd->write_oob(mtd, offs, &ops);
355}
356
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200357static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
358{
359 u32 ver_offs = td->veroffs;
360
361 if (!(td->options & NAND_BBT_NO_OOB))
362 ver_offs += mtd->writesize;
363 return ver_offs;
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/**
367 * 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 -0700368 * @mtd: MTD device structure
369 * @buf: temporary buffer
370 * @td: descriptor for the bad block table
371 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700373 * Read the bad block table(s) for all chips starting at a given page. We
374 * assume that the bbt bits are in consecutive order.
375 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200376static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
377 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct nand_chip *this = mtd->priv;
380
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000381 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (td->options & NAND_BBT_VERSION) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000383 scan_read_raw(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200384 mtd->writesize, td);
385 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700386 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700387 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000390 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (md && (md->options & NAND_BBT_VERSION)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000392 scan_read_raw(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200393 mtd->writesize, td);
394 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Brian Norris9a4d4d62011-07-19 10:06:07 -0700395 pr_info("Bad block table at page %d, version 0x%02X\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700396 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 1;
399}
400
Brian Norris8b6e50c2011-05-25 14:59:01 -0700401/* Scan a given block full */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200402static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
403 loff_t offs, uint8_t *buf, size_t readlen,
404 int scanlen, int len)
405{
406 int ret, j;
407
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200408 ret = scan_read_raw_oob(mtd, buf, offs, readlen);
Brian Norrisafa17de2011-09-07 13:13:29 -0700409 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700410 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200411 return ret;
412
413 for (j = 0; j < len; j++, buf += scanlen) {
414 if (check_pattern(buf, scanlen, mtd->writesize, bd))
415 return 1;
416 }
417 return 0;
418}
419
Brian Norris8b6e50c2011-05-25 14:59:01 -0700420/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200421static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
422 loff_t offs, uint8_t *buf, int len)
423{
424 struct mtd_oob_ops ops;
425 int j, ret;
426
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200427 ops.ooblen = mtd->oobsize;
428 ops.oobbuf = buf;
429 ops.ooboffs = 0;
430 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700431 ops.mode = MTD_OPS_PLACE_OOB;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200432
433 for (j = 0; j < len; j++) {
434 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700435 * Read the full oob until read_oob is fixed to handle single
436 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200437 */
438 ret = mtd->read_oob(mtd, offs, &ops);
Brian Norris903cd062011-06-28 16:28:58 -0700439 /* Ignore ECC errors when checking for BBM */
Brian Norrisd57f40542011-09-20 18:34:25 -0700440 if (ret && !mtd_is_bitflip_or_eccerr(ret))
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200441 return ret;
442
443 if (check_short_pattern(buf, bd))
444 return 1;
445
446 offs += mtd->writesize;
447 }
448 return 0;
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451/**
452 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700453 * @mtd: MTD device structure
454 * @buf: temporary buffer
455 * @bd: descriptor for the good/bad block search pattern
456 * @chip: create the table for a specific chip, -1 read all chips; applies only
457 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700459 * Create a bad block table by scanning the device for the given good/bad block
460 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200462static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
463 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 struct nand_chip *this = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200466 int i, numblocks, len, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int startblock;
468 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200469 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Brian Norris9a4d4d62011-07-19 10:06:07 -0700471 pr_info("Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 if (bd->options & NAND_BBT_SCANALLPAGES)
474 len = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700475 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
476 len = 2;
477 else
478 len = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000479
480 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
481 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200482 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000483 readlen = bd->len;
484 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000485 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200486 scanlen = mtd->writesize + mtd->oobsize;
487 readlen = len * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (chip == -1) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700491 /*
492 * Note that numblocks is 2 * (real numblocks) here, see i+=2
493 * below as it makes shifting and masking less painful
494 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
496 startblock = 0;
497 from = 0;
498 } else {
499 if (chip >= this->numchips) {
Brian Norris9a4d4d62011-07-19 10:06:07 -0700500 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
David Woodhousee0c7d762006-05-13 18:07:53 +0100501 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000502 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
505 startblock = chip * numblocks;
506 numblocks += startblock;
Adrian Hunter69423d92008-12-10 13:37:21 +0000507 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000509
Brian Norris5fb15492011-05-31 16:31:21 -0700510 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700511 from += mtd->erasesize - (mtd->writesize * len);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000514 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000515
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200516 BUG_ON(bd->options & NAND_BBT_NO_OOB);
517
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200518 if (bd->options & NAND_BBT_SCANALLPAGES)
519 ret = scan_block_full(mtd, bd, from, buf, readlen,
520 scanlen, len);
521 else
522 ret = scan_block_fast(mtd, bd, from, buf, len);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000523
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200524 if (ret < 0)
525 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000526
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200527 if (ret) {
528 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Brian Norris9a4d4d62011-07-19 10:06:07 -0700529 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Brian Norrisd0370212011-07-19 10:06:08 -0700530 i >> 1, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200531 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 i += 2;
535 from += (1 << this->bbt_erase_shift);
536 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/**
541 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700542 * @mtd: MTD device structure
543 * @buf: temporary buffer
544 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700546 * Read the bad block table by searching for a given ident pattern. Search is
547 * preformed either from the beginning up or from the end of the device
548 * downwards. The search starts always at the start of a block. If the option
549 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
550 * the bad block information of this chip. This is necessary to provide support
551 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700553 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100555static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct nand_chip *this = mtd->priv;
558 int i, chips;
559 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200560 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200562 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Brian Norris8b6e50c2011-05-25 14:59:01 -0700564 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100566 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 dir = -1;
568 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000569 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000571 }
572
Brian Norris8b6e50c2011-05-25 14:59:01 -0700573 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (td->options & NAND_BBT_PERCHIP) {
575 chips = this->numchips;
576 bbtblocks = this->chipsize >> this->bbt_erase_shift;
577 startblock &= bbtblocks - 1;
578 } else {
579 chips = 1;
580 bbtblocks = mtd->size >> this->bbt_erase_shift;
581 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* Number of bits for each erase block in the bbt */
584 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 for (i = 0; i < chips; i++) {
587 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000588 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 td->pages[i] = -1;
590 /* Scan the maximum number of blocks */
591 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000594 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* Read first page */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200597 scan_read_raw(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200598 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200599 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200601 offs = bbt_get_ver_offs(mtd, td);
602 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604 break;
605 }
606 }
607 startblock += this->chipsize >> this->bbt_erase_shift;
608 }
609 /* Check, if we found a bbt for each requested chip */
610 for (i = 0; i < chips; i++) {
611 if (td->pages[i] == -1)
Brian Norris9a4d4d62011-07-19 10:06:07 -0700612 pr_warn("Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 else
Brian Norrisd0370212011-07-19 10:06:08 -0700614 pr_info("Bad block table found at page %d, version "
615 "0x%02X\n", td->pages[i], td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/**
621 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700622 * @mtd: MTD device structure
623 * @buf: temporary buffer
624 * @td: descriptor for the bad block table
625 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700627 * Search and read the bad block table(s).
628 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100629static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100632 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Search the mirror table */
635 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100636 search_bbt(mtd, buf, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000638 /* Force result check */
639 return 1;
640}
641
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000642/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700644 * @mtd: MTD device structure
645 * @buf: temporary buffer
646 * @td: descriptor for the bad block table
647 * @md: descriptor for the bad block table mirror
648 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700650 * (Re)write the bad block table.
651 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100652static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200653 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
654 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct erase_info einfo;
658 int i, j, res, chip = 0;
659 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200660 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 uint8_t msk[4];
662 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200663 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200665 struct mtd_oob_ops ops;
666
667 ops.ooblen = mtd->oobsize;
668 ops.ooboffs = 0;
669 ops.datbuf = NULL;
Brian Norris0612b9d2011-08-30 18:45:40 -0700670 ops.mode = MTD_OPS_PLACE_OOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (!rcode)
673 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700674 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100676 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700677 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (chipsel == -1) {
679 nrchips = this->numchips;
680 } else {
681 nrchips = chipsel + 1;
682 chip = chipsel;
683 }
684 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100685 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000687 }
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /* Loop through the chips */
690 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700691 /*
692 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000693 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 * page nr. in td->pages.
695 */
696 if (td->pages[chip] != -1) {
697 page = td->pages[chip];
698 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Brian Norris8b6e50c2011-05-25 14:59:01 -0700701 /*
702 * Automatic placement of the bad block table. Search direction
703 * top -> down?
704 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (td->options & NAND_BBT_LASTBLOCK) {
706 startblock = numblocks * (chip + 1) - 1;
707 dir = -1;
708 } else {
709 startblock = chip * numblocks;
710 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 for (i = 0; i < td->maxblocks; i++) {
714 int block = startblock + dir * i;
715 /* Check, if the block is bad */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200716 switch ((this->bbt[block >> 2] >>
717 (2 * (block & 0x03))) & 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 case 0x01:
719 case 0x03:
720 continue;
721 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200722 page = block <<
723 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /* Check, if the block is used by the mirror table */
725 if (!md || md->pages[chip] != page)
726 goto write;
727 }
Brian Norris9a4d4d62011-07-19 10:06:07 -0700728 pr_err("No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100730 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* Set up shift count and masks for the flash table */
733 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200734 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200736 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
737 msk[3] = 0x01;
738 break;
739 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
740 msk[3] = 0x03;
741 break;
742 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
743 msk[3] = 0x0f;
744 break;
745 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
746 msk[3] = 0xff;
747 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 default: return -EINVAL;
749 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000752
Brian Norris596d7452011-09-07 13:13:33 -0700753 to = ((loff_t)page) << this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Brian Norris8b6e50c2011-05-25 14:59:01 -0700755 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (td->options & NAND_BBT_SAVECONTENT) {
757 /* Make it block aligned */
Brian Norris596d7452011-09-07 13:13:33 -0700758 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 len = 1 << this->bbt_erase_shift;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200760 res = mtd->read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (res < 0) {
762 if (retlen != len) {
Brian Norrisd0370212011-07-19 10:06:08 -0700763 pr_info("nand_bbt: error reading block "
764 "for writing the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return res;
766 }
Brian Norrisd0370212011-07-19 10:06:08 -0700767 pr_warn("nand_bbt: ECC error while reading "
768 "block for writing bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200770 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300771 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200772 ops.oobbuf = &buf[len];
773 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300774 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200775 goto outerr;
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* Calc the byte offset in the buffer */
778 pageoffs = page - (int)(to >> this->page_shift);
779 offs = pageoffs << this->page_shift;
780 /* Preset the bbt area with 0xff */
Brian Norris596d7452011-09-07 13:13:33 -0700781 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200782 ooboffs = len + (pageoffs * mtd->oobsize);
783
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200784 } else if (td->options & NAND_BBT_NO_OOB) {
785 ooboffs = 0;
786 offs = td->len;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700787 /* The version byte */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200788 if (td->options & NAND_BBT_VERSION)
789 offs++;
790 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700791 len = (size_t)(numblocks >> sft);
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200792 len += offs;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700793 /* Make it page aligned! */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200794 len = ALIGN(len, mtd->writesize);
795 /* Preset the buffer with 0xff */
796 memset(buf, 0xff, len);
797 /* Pattern is located at the begin of first page */
798 memcpy(buf, td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else {
800 /* Calc length */
Brian Norris596d7452011-09-07 13:13:33 -0700801 len = (size_t)(numblocks >> sft);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700802 /* Make it page aligned! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200803 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200805 memset(buf, 0xff, len +
806 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200808 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200810 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000812
Thomas Gleixner9223a452006-05-23 17:21:03 +0200813 if (td->options & NAND_BBT_VERSION)
814 buf[ooboffs + td->veroffs] = td->version[chip];
815
Brian Norris8b6e50c2011-05-25 14:59:01 -0700816 /* Walk through the memory table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100817 for (i = 0; i < numblocks;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 uint8_t dat;
819 dat = this->bbt[bbtoffs + (i >> 2)];
David Woodhousee0c7d762006-05-13 18:07:53 +0100820 for (j = 0; j < 4; j++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 int sftcnt = (i << (3 - sft)) & sftmsk;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700822 /* Do not store the reserved bbt blocks! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200823 buf[offs + (i >> sft)] &=
824 ~(msk[dat & 0x03] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 dat >>= 2;
826 }
827 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000828
David Woodhousee0c7d762006-05-13 18:07:53 +0100829 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000831 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100833 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200834 if (res < 0)
835 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000836
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200837 res = scan_write_bbt(mtd, to, len, buf,
838 td->options & NAND_BBT_NO_OOB ? NULL :
839 &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200840 if (res < 0)
841 goto outerr;
842
Brian Norrisd0370212011-07-19 10:06:08 -0700843 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
844 (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Mark it as used */
847 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200850
851 outerr:
Brian Norrisd0370212011-07-19 10:06:08 -0700852 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200853 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
856/**
857 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700858 * @mtd: MTD device structure
859 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700861 * The function creates a memory based bbt by scanning the device for
862 * manufacturer / software marked good / bad blocks.
863 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100864static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 struct nand_chip *this = mtd->priv;
867
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000868 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100869 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100873 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700874 * @mtd: MTD device structure
875 * @buf: temporary buffer
876 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700878 * The function checks the results of the previous call to read_bbt and creates
879 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
880 * for the chip/device. Update is necessary if one of the tables is missing or
881 * the version nr. of one table is less than the other.
882 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100883static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700885 int i, chips, writeops, create, chipsel, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct nand_chip *this = mtd->priv;
887 struct nand_bbt_descr *td = this->bbt_td;
888 struct nand_bbt_descr *md = this->bbt_md;
889 struct nand_bbt_descr *rd, *rd2;
890
Brian Norris8b6e50c2011-05-25 14:59:01 -0700891 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000892 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000894 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 for (i = 0; i < chips; i++) {
898 writeops = 0;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700899 create = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 rd = NULL;
901 rd2 = NULL;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700902 /* Per chip or per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700904 /* Mirrored table available? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (md) {
906 if (td->pages[i] == -1 && md->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700907 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 writeops = 0x03;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700909 } else if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000910 rd = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 td->version[i] = md->version[i];
Brian Norris596d7452011-09-07 13:13:33 -0700912 writeops = 0x01;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700913 } else if (md->pages[i] == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 rd = td;
915 md->version[i] = td->version[i];
Brian Norris596d7452011-09-07 13:13:33 -0700916 writeops = 0x02;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700917 } else if (td->version[i] == md->version[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 rd = td;
919 if (!(td->options & NAND_BBT_VERSION))
920 rd2 = md;
Brian Norrisc5e8ef92011-09-07 13:13:34 -0700921 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 rd = td;
923 md->version[i] = td->version[i];
Brian Norris596d7452011-09-07 13:13:33 -0700924 writeops = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 } else {
926 rd = md;
927 td->version[i] = md->version[i];
Brian Norris596d7452011-09-07 13:13:33 -0700928 writeops = 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 } else {
931 if (td->pages[i] == -1) {
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700932 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 writeops = 0x01;
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700934 } else {
935 rd = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000938
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700939 if (create) {
940 /* Create the bad block table by scanning the device? */
941 if (!(td->options & NAND_BBT_CREATE))
942 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000943
Brian Norrisb61bf5b2011-09-07 13:13:35 -0700944 /* Create the table in memory by scanning the chip(s) */
945 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
946 create_bbt(mtd, buf, bd, chipsel);
947
948 td->version[i] = 1;
949 if (md)
950 md->version[i] = 1;
951 }
952
Brian Norris8b6e50c2011-05-25 14:59:01 -0700953 /* Read back first? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (rd)
David Woodhousee0c7d762006-05-13 18:07:53 +0100955 read_abs_bbt(mtd, buf, rd, chipsel);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700956 /* If they weren't versioned, read both */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (rd2)
David Woodhousee0c7d762006-05-13 18:07:53 +0100958 read_abs_bbt(mtd, buf, rd2, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Brian Norris8b6e50c2011-05-25 14:59:01 -0700960 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100962 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (res < 0)
964 return res;
965 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000966
Brian Norris8b6e50c2011-05-25 14:59:01 -0700967 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100969 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (res < 0)
971 return res;
972 }
973 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000978 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -0700979 * @mtd: MTD device structure
980 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700982 * The bad block table regions are marked as "bad" to prevent accidental
983 * erasures / writes. The regions are identified by the mark 0x02.
984 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100985static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct nand_chip *this = mtd->priv;
988 int i, j, chips, block, nrblocks, update;
989 uint8_t oldval, newval;
990
Brian Norris8b6e50c2011-05-25 14:59:01 -0700991 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (td->options & NAND_BBT_PERCHIP) {
993 chips = this->numchips;
994 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
995 } else {
996 chips = 1;
997 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000998 }
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 for (i = 0; i < chips; i++) {
1001 if ((td->options & NAND_BBT_ABSPAGE) ||
1002 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001003 if (td->pages[i] == -1)
1004 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001006 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 oldval = this->bbt[(block >> 3)];
1008 newval = oldval | (0x2 << (block & 0x06));
1009 this->bbt[(block >> 3)] = newval;
1010 if ((oldval != newval) && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001011 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 continue;
1013 }
1014 update = 0;
1015 if (td->options & NAND_BBT_LASTBLOCK)
1016 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001017 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001019 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 for (j = 0; j < td->maxblocks; j++) {
1021 oldval = this->bbt[(block >> 3)];
1022 newval = oldval | (0x2 << (block & 0x06));
1023 this->bbt[(block >> 3)] = newval;
David Woodhousee0c7d762006-05-13 18:07:53 +01001024 if (oldval != newval)
1025 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001027 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001028 /*
1029 * If we want reserved blocks to be recorded to flash, and some
1030 * new ones have been marked, then we need to update the stored
1031 * bbts. This should only happen once.
1032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (update && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001034 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036}
1037
1038/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001039 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001040 * @mtd: MTD device structure
1041 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001042 *
1043 * This functions performs a few sanity checks on the bad block description
1044 * table.
1045 */
1046static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1047{
1048 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001049 u32 pattern_len;
1050 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001051 u32 table_size;
1052
1053 if (!bd)
1054 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001055
1056 pattern_len = bd->len;
1057 bits = bd->options & NAND_BBT_NRBITS_MSK;
1058
Brian Norrisa40f7342011-05-31 16:31:22 -07001059 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001060 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001061 BUG_ON(!bits);
1062
1063 if (bd->options & NAND_BBT_VERSION)
1064 pattern_len++;
1065
1066 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001067 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001068 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001069 BUG_ON(bd->offs);
1070 if (bd->options & NAND_BBT_VERSION)
1071 BUG_ON(bd->veroffs != bd->len);
1072 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1073 }
1074
1075 if (bd->options & NAND_BBT_PERCHIP)
1076 table_size = this->chipsize >> this->bbt_erase_shift;
1077 else
1078 table_size = mtd->size >> this->bbt_erase_shift;
1079 table_size >>= 3;
1080 table_size *= bits;
1081 if (bd->options & NAND_BBT_NO_OOB)
1082 table_size += pattern_len;
1083 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1084}
1085
1086/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001088 * @mtd: MTD device structure
1089 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001091 * The function checks, if a bad block table(s) is/are already available. If
1092 * not it scans the device for manufacturer marked good / bad blocks and writes
1093 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001095 * The bad block table memory is allocated here. It must be freed by calling
1096 * the nand_free_bbt function.
1097 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001098int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct nand_chip *this = mtd->priv;
1101 int len, res = 0;
1102 uint8_t *buf;
1103 struct nand_bbt_descr *td = this->bbt_td;
1104 struct nand_bbt_descr *md = this->bbt_md;
1105
1106 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001107 /*
1108 * Allocate memory (2bit per block) and clear the memory bad block
1109 * table.
1110 */
Burman Yan95b93a02006-11-15 21:10:29 +02001111 this->bbt = kzalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001112 if (!this->bbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Brian Norris8b6e50c2011-05-25 14:59:01 -07001115 /*
1116 * If no primary table decriptor is given, scan the device to build a
1117 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001119 if (!td) {
1120 if ((res = nand_memory_bbt(mtd, bd))) {
Brian Norrisd0370212011-07-19 10:06:08 -07001121 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
David Woodhousee0c7d762006-05-13 18:07:53 +01001122 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001123 this->bbt = NULL;
1124 }
1125 return res;
1126 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001127 verify_bbt_descr(mtd, td);
1128 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /* Allocate a temporary buffer for one eraseblock incl. oob */
1131 len = (1 << this->bbt_erase_shift);
1132 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001133 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001135 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 this->bbt = NULL;
1137 return -ENOMEM;
1138 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001139
Brian Norris8b6e50c2011-05-25 14:59:01 -07001140 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (td->options & NAND_BBT_ABSPAGE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001142 res = read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001143 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 /* Search the bad block table using a pattern in oob */
David Woodhousee0c7d762006-05-13 18:07:53 +01001145 res = search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001148 if (res)
David Woodhousee0c7d762006-05-13 18:07:53 +01001149 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001152 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001154 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001155
David Woodhousee0c7d762006-05-13 18:07:53 +01001156 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return res;
1158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001161 * nand_update_bbt - [NAND Interface] update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001162 * @mtd: MTD device structure
1163 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001165 * The function updates the bad block table(s).
1166 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001167int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 struct nand_chip *this = mtd->priv;
Brian Norris1196ac52011-09-07 13:13:32 -07001170 int len, res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int chip, chipsel;
1172 uint8_t *buf;
1173 struct nand_bbt_descr *td = this->bbt_td;
1174 struct nand_bbt_descr *md = this->bbt_md;
1175
1176 if (!this->bbt || !td)
1177 return -EINVAL;
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /* Allocate a temporary buffer for one eraseblock incl. oob */
1180 len = (1 << this->bbt_erase_shift);
1181 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001182 buf = kmalloc(len, GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001183 if (!buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001185
Brian Norris8b6e50c2011-05-25 14:59:01 -07001186 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001188 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 chipsel = chip;
1190 } else {
1191 chip = 0;
1192 chipsel = -1;
1193 }
1194
1195 td->version[chip]++;
1196 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001197 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Brian Norris8b6e50c2011-05-25 14:59:01 -07001199 /* Write the bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001200 if (td->options & NAND_BBT_WRITE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001201 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (res < 0)
1203 goto out;
1204 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001205 /* Write the mirror bad block table to the device? */
Brian Norris1196ac52011-09-07 13:13:32 -07001206 if (md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001207 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209
David Woodhousee0c7d762006-05-13 18:07:53 +01001210 out:
1211 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return res;
1213}
1214
Brian Norris8b6e50c2011-05-25 14:59:01 -07001215/*
1216 * Define some generic bad / good block scan pattern which are used
1217 * while scanning a device for factory marked good / bad blocks.
1218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1222
1223static struct nand_bbt_descr agand_flashbased = {
1224 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1225 .offs = 0x20,
1226 .len = 6,
1227 .pattern = scan_agand_pattern
1228};
1229
Brian Norris7854d3f2011-06-23 14:12:08 -07001230/* Generic flash bbt descriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1232static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1233
1234static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001235 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1237 .offs = 8,
1238 .len = 4,
1239 .veroffs = 12,
1240 .maxblocks = 4,
1241 .pattern = bbt_pattern
1242};
1243
1244static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001245 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1247 .offs = 8,
1248 .len = 4,
1249 .veroffs = 12,
1250 .maxblocks = 4,
1251 .pattern = mirror_pattern
1252};
1253
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001254static struct nand_bbt_descr bbt_main_no_bbt_descr = {
1255 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1256 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1257 | NAND_BBT_NO_OOB,
1258 .len = 4,
1259 .veroffs = 4,
1260 .maxblocks = 4,
1261 .pattern = bbt_pattern
1262};
1263
1264static struct nand_bbt_descr bbt_mirror_no_bbt_descr = {
1265 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1266 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1267 | NAND_BBT_NO_OOB,
1268 .len = 4,
1269 .veroffs = 4,
1270 .maxblocks = 4,
1271 .pattern = mirror_pattern
1272};
1273
Brian Norris58373ff2010-07-15 12:15:44 -07001274/**
Brian Norris7854d3f2011-06-23 14:12:08 -07001275 * nand_create_default_bbt_descr - [INTERN] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001276 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001277 *
1278 * This function allocates and initializes a nand_bbt_descr for BBM detection
1279 * based on the properties of "this". The new descriptor is stored in
1280 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1281 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001282 */
1283static int nand_create_default_bbt_descr(struct nand_chip *this)
1284{
1285 struct nand_bbt_descr *bd;
1286 if (this->badblock_pattern) {
Brian Norrisd0370212011-07-19 10:06:08 -07001287 pr_warn("BBT descr already allocated; not replacing\n");
Brian Norris58373ff2010-07-15 12:15:44 -07001288 return -EINVAL;
1289 }
1290 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Brian Norris08700662011-06-07 16:01:54 -07001291 if (!bd)
Brian Norris58373ff2010-07-15 12:15:44 -07001292 return -ENOMEM;
Brian Norris5fb15492011-05-31 16:31:21 -07001293 bd->options = this->bbt_options;
Brian Norris58373ff2010-07-15 12:15:44 -07001294 bd->offs = this->badblockpos;
1295 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1296 bd->pattern = scan_ff_pattern;
1297 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1298 this->badblock_pattern = bd;
1299 return 0;
1300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001303 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001304 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001306 * This function selects the default bad block table support for the device and
1307 * calls the nand_scan_bbt function.
1308 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001309int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001312
Brian Norris8b6e50c2011-05-25 14:59:01 -07001313 /*
1314 * Default for AG-AND. We must use a flash based bad block table as the
1315 * devices have factory marked _good_ blocks. Erasing those blocks
1316 * leads to loss of the good / bad information, so we _must_ store this
1317 * information in a good / bad table during startup.
David Woodhousee0c7d762006-05-13 18:07:53 +01001318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (this->options & NAND_IS_AND) {
1320 /* Use the default pattern descriptors */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001321 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 this->bbt_td = &bbt_main_descr;
1323 this->bbt_md = &bbt_mirror_descr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001324 }
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001325 this->bbt_options |= NAND_BBT_USE_FLASH;
David Woodhousee0c7d762006-05-13 18:07:53 +01001326 return nand_scan_bbt(mtd, &agand_flashbased);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001328
Brian Norris8b6e50c2011-05-25 14:59:01 -07001329 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001330 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001331 /* Use the default pattern descriptors */
1332 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001333 if (this->bbt_options & NAND_BBT_NO_OOB) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001334 this->bbt_td = &bbt_main_no_bbt_descr;
1335 this->bbt_md = &bbt_mirror_no_bbt_descr;
1336 } else {
1337 this->bbt_td = &bbt_main_descr;
1338 this->bbt_md = &bbt_mirror_descr;
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 } else {
1342 this->bbt_td = NULL;
1343 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001345
1346 if (!this->badblock_pattern)
1347 nand_create_default_bbt_descr(this);
1348
David Woodhousee0c7d762006-05-13 18:07:53 +01001349 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001353 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001354 * @mtd: MTD device structure
1355 * @offs: offset in the device
1356 * @allowbbt: allow access to bad block table region
1357 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001358int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 struct nand_chip *this = mtd->priv;
1361 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001362 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001365 block = (int)(offs >> (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1367
Brian Norris289c0522011-07-19 10:06:09 -07001368 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1369 "(block %d) 0x%02x\n",
1370 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 switch ((int)res) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001373 case 0x00:
1374 return 0;
1375 case 0x01:
1376 return 1;
1377 case 0x02:
1378 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380 return 1;
1381}
1382
David Woodhousee0c7d762006-05-13 18:07:53 +01001383EXPORT_SYMBOL(nand_scan_bbt);
1384EXPORT_SYMBOL(nand_default_bbt);