blob: ba401662835e6c1018df7e4dfbf84f20d7f23045 [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 Gleixnerc9e053652005-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 Gleixnerc9e053652005-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 Gleixnerc9e053652005-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 Gleixnerc9e053652005-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 Gleixnerc9e053652005-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 Gleixnerc9e053652005-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 *
152 * The length will be 0 if the markeris located in OOB area.
153 */
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
173 * @td: the bbt describtion table
174 * @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{
181 int res, i, j, act = 0;
182 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -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);
David Woodhousee0c7d762006-05-13 18:07:53 +0100192 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) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100195 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) {
207 if (retlen != len) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100208 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return res;
210 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100211 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
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];
217 for (j = 0; j < 8; j += bits, act += 2) {
218 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)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000222 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%012llx\n",
223 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200225 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 continue;
227 }
Brian Norris8b6e50c2011-05-25 14:59:01 -0700228 /*
229 * Leave it for now, if it's matured we can
230 * move this message to MTD_DEBUG_LEVEL0.
231 */
Adrian Hunter69423d92008-12-10 13:37:21 +0000232 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%012llx\n",
233 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700234 /* Factory marked bad or worn out? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (tmp == 0)
236 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
237 else
238 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200239 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 totlen -= len;
243 from += len;
244 }
245 return 0;
246}
247
248/**
249 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Brian Norris8b6e50c2011-05-25 14:59:01 -0700250 * @mtd: MTD device structure
251 * @buf: temporary buffer
252 * @td: descriptor for the bad block table
253 * @chip: read the table for a specific chip, -1 read all chips; aplies only if
254 * NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700256 * Read the bad block table for all chips starting at a given page. We assume
257 * that the bbt bits are in consecutive order.
258 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100259static 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 -0700260{
261 struct nand_chip *this = mtd->priv;
262 int res = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (td->options & NAND_BBT_PERCHIP) {
265 int offs = 0;
266 for (i = 0; i < this->numchips; i++) {
267 if (chip == -1 || chip == i)
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200268 res = read_bbt(mtd, buf, td->pages[i],
269 this->chipsize >> this->bbt_erase_shift,
270 td, offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (res)
272 return res;
273 offs += this->chipsize >> (this->bbt_erase_shift + 2);
274 }
275 } else {
Sebastian Andrzej Siewiordf5b4e32010-09-29 19:43:51 +0200276 res = read_bbt(mtd, buf, td->pages[0],
277 mtd->size >> this->bbt_erase_shift, td, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (res)
279 return res;
280 }
281 return 0;
282}
283
Brian Norris8b6e50c2011-05-25 14:59:01 -0700284/* BBT marker is in the first page, no OOB */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200285static int scan_read_raw_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
286 struct nand_bbt_descr *td)
287{
288 size_t retlen;
289 size_t len;
290
291 len = td->len;
292 if (td->options & NAND_BBT_VERSION)
293 len++;
294
295 return mtd->read(mtd, offs, len, &retlen, buf);
296}
297
Brian Norris8b6e50c2011-05-25 14:59:01 -0700298/* Scan read raw data from flash */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200299static int scan_read_raw_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200300 size_t len)
301{
302 struct mtd_oob_ops ops;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200303 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200304
305 ops.mode = MTD_OOB_RAW;
306 ops.ooboffs = 0;
307 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200308
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200309
310 while (len > 0) {
311 if (len <= mtd->writesize) {
312 ops.oobbuf = buf + len;
313 ops.datbuf = buf;
314 ops.len = len;
315 return mtd->read_oob(mtd, offs, &ops);
316 } else {
317 ops.oobbuf = buf + mtd->writesize;
318 ops.datbuf = buf;
319 ops.len = mtd->writesize;
320 res = mtd->read_oob(mtd, offs, &ops);
321
322 if (res)
323 return res;
324 }
325
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
347 ops.mode = MTD_OOB_PLACE;
348 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)];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200386 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
387 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)];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200395 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
396 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);
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200409 if (ret)
410 return ret;
411
412 for (j = 0; j < len; j++, buf += scanlen) {
413 if (check_pattern(buf, scanlen, mtd->writesize, bd))
414 return 1;
415 }
416 return 0;
417}
418
Brian Norris8b6e50c2011-05-25 14:59:01 -0700419/* Scan a given block partially */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200420static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
421 loff_t offs, uint8_t *buf, int len)
422{
423 struct mtd_oob_ops ops;
424 int j, ret;
425
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200426 ops.ooblen = mtd->oobsize;
427 ops.oobbuf = buf;
428 ops.ooboffs = 0;
429 ops.datbuf = NULL;
430 ops.mode = MTD_OOB_PLACE;
431
432 for (j = 0; j < len; j++) {
433 /*
Brian Norris8b6e50c2011-05-25 14:59:01 -0700434 * Read the full oob until read_oob is fixed to handle single
435 * byte reads for 16 bit buswidth.
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200436 */
437 ret = mtd->read_oob(mtd, offs, &ops);
438 if (ret)
439 return ret;
440
441 if (check_short_pattern(buf, bd))
442 return 1;
443
444 offs += mtd->writesize;
445 }
446 return 0;
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/**
450 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Brian Norris8b6e50c2011-05-25 14:59:01 -0700451 * @mtd: MTD device structure
452 * @buf: temporary buffer
453 * @bd: descriptor for the good/bad block search pattern
454 * @chip: create the table for a specific chip, -1 read all chips; applies only
455 * if NAND_BBT_PERCHIP option is set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700457 * Create a bad block table by scanning the device for the given good/bad block
458 * identify pattern.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200460static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
461 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct nand_chip *this = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200464 int i, numblocks, len, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 int startblock;
466 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200467 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
David Woodhousee0c7d762006-05-13 18:07:53 +0100469 printk(KERN_INFO "Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 if (bd->options & NAND_BBT_SCANALLPAGES)
472 len = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700473 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
474 len = 2;
475 else
476 len = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000477
478 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
479 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200480 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000481 readlen = bd->len;
482 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000483 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200484 scanlen = mtd->writesize + mtd->oobsize;
485 readlen = len * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (chip == -1) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700489 /*
490 * Note that numblocks is 2 * (real numblocks) here, see i+=2
491 * below as it makes shifting and masking less painful
492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
494 startblock = 0;
495 from = 0;
496 } else {
497 if (chip >= this->numchips) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100498 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
499 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000500 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
503 startblock = chip * numblocks;
504 numblocks += startblock;
Adrian Hunter69423d92008-12-10 13:37:21 +0000505 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000507
Brian Norris5fb15492011-05-31 16:31:21 -0700508 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700509 from += mtd->erasesize - (mtd->writesize * len);
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000512 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000513
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200514 BUG_ON(bd->options & NAND_BBT_NO_OOB);
515
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200516 if (bd->options & NAND_BBT_SCANALLPAGES)
517 ret = scan_block_full(mtd, bd, from, buf, readlen,
518 scanlen, len);
519 else
520 ret = scan_block_fast(mtd, bd, from, buf, len);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000521
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200522 if (ret < 0)
523 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000524
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200525 if (ret) {
526 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Adrian Hunter69423d92008-12-10 13:37:21 +0000527 printk(KERN_WARNING "Bad eraseblock %d at 0x%012llx\n",
528 i >> 1, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200529 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 i += 2;
533 from += (1 << this->bbt_erase_shift);
534 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538/**
539 * search_bbt - [GENERIC] scan the device for a specific bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700540 * @mtd: MTD device structure
541 * @buf: temporary buffer
542 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700544 * Read the bad block table by searching for a given ident pattern. Search is
545 * preformed either from the beginning up or from the end of the device
546 * downwards. The search starts always at the start of a block. If the option
547 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
548 * the bad block information of this chip. This is necessary to provide support
549 * for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700551 * The bbt ident pattern resides in the oob area of the first page in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100553static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 struct nand_chip *this = mtd->priv;
556 int i, chips;
557 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200558 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200560 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Brian Norris8b6e50c2011-05-25 14:59:01 -0700562 /* Search direction top -> down? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100564 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dir = -1;
566 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000567 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000569 }
570
Brian Norris8b6e50c2011-05-25 14:59:01 -0700571 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (td->options & NAND_BBT_PERCHIP) {
573 chips = this->numchips;
574 bbtblocks = this->chipsize >> this->bbt_erase_shift;
575 startblock &= bbtblocks - 1;
576 } else {
577 chips = 1;
578 bbtblocks = mtd->size >> this->bbt_erase_shift;
579 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* Number of bits for each erase block in the bbt */
582 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 for (i = 0; i < chips; i++) {
585 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000586 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 td->pages[i] = -1;
588 /* Scan the maximum number of blocks */
589 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000592 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Read first page */
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200595 scan_read_raw(mtd, buf, offs, mtd->writesize, td);
Joern Engel28318772006-05-22 23:18:05 +0200596 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200597 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (td->options & NAND_BBT_VERSION) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +0200599 offs = bbt_get_ver_offs(mtd, td);
600 td->version[i] = buf[offs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 break;
603 }
604 }
605 startblock += this->chipsize >> this->bbt_erase_shift;
606 }
607 /* Check, if we found a bbt for each requested chip */
608 for (i = 0; i < chips; i++) {
609 if (td->pages[i] == -1)
David Woodhousee0c7d762006-05-13 18:07:53 +0100610 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100612 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
613 td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618/**
619 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -0700620 * @mtd: MTD device structure
621 * @buf: temporary buffer
622 * @td: descriptor for the bad block table
623 * @md: descriptor for the bad block table mirror
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700625 * Search and read the bad block table(s).
626 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100627static 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 -0700628{
629 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100630 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* Search the mirror table */
633 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100634 search_bbt(mtd, buf, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000636 /* Force result check */
637 return 1;
638}
639
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000640/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * write_bbt - [GENERIC] (Re)write the bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700642 * @mtd: MTD device structure
643 * @buf: temporary buffer
644 * @td: descriptor for the bad block table
645 * @md: descriptor for the bad block table mirror
646 * @chipsel: selector for a specific chip, -1 for all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700648 * (Re)write the bad block table.
649 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100650static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200651 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
652 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct erase_info einfo;
656 int i, j, res, chip = 0;
657 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200658 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 uint8_t msk[4];
660 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200661 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200663 struct mtd_oob_ops ops;
664
665 ops.ooblen = mtd->oobsize;
666 ops.ooboffs = 0;
667 ops.datbuf = NULL;
668 ops.mode = MTD_OOB_PLACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 if (!rcode)
671 rcode = 0xff;
Brian Norris8b6e50c2011-05-25 14:59:01 -0700672 /* Write bad block table per chip rather than per device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100674 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700675 /* Full device write or specific chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (chipsel == -1) {
677 nrchips = this->numchips;
678 } else {
679 nrchips = chipsel + 1;
680 chip = chipsel;
681 }
682 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100683 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000685 }
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /* Loop through the chips */
688 for (; chip < nrchips; chip++) {
Brian Norris8b6e50c2011-05-25 14:59:01 -0700689 /*
690 * There was already a version of the table, reuse the page
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000691 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * page nr. in td->pages.
693 */
694 if (td->pages[chip] != -1) {
695 page = td->pages[chip];
696 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Brian Norris8b6e50c2011-05-25 14:59:01 -0700699 /*
700 * Automatic placement of the bad block table. Search direction
701 * top -> down?
702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (td->options & NAND_BBT_LASTBLOCK) {
704 startblock = numblocks * (chip + 1) - 1;
705 dir = -1;
706 } else {
707 startblock = chip * numblocks;
708 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 for (i = 0; i < td->maxblocks; i++) {
712 int block = startblock + dir * i;
713 /* Check, if the block is bad */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200714 switch ((this->bbt[block >> 2] >>
715 (2 * (block & 0x03))) & 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 case 0x01:
717 case 0x03:
718 continue;
719 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200720 page = block <<
721 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* Check, if the block is used by the mirror table */
723 if (!md || md->pages[chip] != page)
724 goto write;
725 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100726 printk(KERN_ERR "No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100728 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* Set up shift count and masks for the flash table */
731 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200732 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200734 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
735 msk[3] = 0x01;
736 break;
737 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
738 msk[3] = 0x03;
739 break;
740 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
741 msk[3] = 0x0f;
742 break;
743 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
744 msk[3] = 0xff;
745 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 default: return -EINVAL;
747 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 to = ((loff_t) page) << this->page_shift;
752
Brian Norris8b6e50c2011-05-25 14:59:01 -0700753 /* Must we save the block contents? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (td->options & NAND_BBT_SAVECONTENT) {
755 /* Make it block aligned */
756 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
757 len = 1 << this->bbt_erase_shift;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200758 res = mtd->read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (res < 0) {
760 if (retlen != len) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200761 printk(KERN_INFO "nand_bbt: Error "
762 "reading block for writing "
763 "the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return res;
765 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200766 printk(KERN_WARNING "nand_bbt: ECC error "
767 "while reading block for writing "
768 "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 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100781 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 */
791 len = (size_t) (numblocks >> sft);
792 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 */
801 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
Adrian Hunter69423d92008-12-10 13:37:21 +0000843 printk(KERN_DEBUG "Bad block table written to 0x%012llx, version "
844 "0x%02X\n", (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:
852 printk(KERN_WARNING
853 "nand_bbt: Error while writing bad block table %d\n", res);
854 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857/**
858 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Brian Norris8b6e50c2011-05-25 14:59:01 -0700859 * @mtd: MTD device structure
860 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700862 * The function creates a memory based bbt by scanning the device for
863 * manufacturer / software marked good / bad blocks.
864 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100865static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct nand_chip *this = mtd->priv;
868
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000869 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100870 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100874 * check_create - [GENERIC] create and write bbt(s) if necessary
Brian Norris8b6e50c2011-05-25 14:59:01 -0700875 * @mtd: MTD device structure
876 * @buf: temporary buffer
877 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700879 * The function checks the results of the previous call to read_bbt and creates
880 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
881 * for the chip/device. Update is necessary if one of the tables is missing or
882 * the version nr. of one table is less than the other.
883 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100884static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 int i, chips, writeops, chipsel, res;
887 struct nand_chip *this = mtd->priv;
888 struct nand_bbt_descr *td = this->bbt_td;
889 struct nand_bbt_descr *md = this->bbt_md;
890 struct nand_bbt_descr *rd, *rd2;
891
Brian Norris8b6e50c2011-05-25 14:59:01 -0700892 /* Do we have a bbt per chip? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000893 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000895 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 for (i = 0; i < chips; i++) {
899 writeops = 0;
900 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) {
907 writeops = 0x03;
908 goto create;
909 }
910
911 if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000912 rd = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 td->version[i] = md->version[i];
914 writeops = 1;
915 goto writecheck;
916 }
917
918 if (md->pages[i] == -1) {
919 rd = td;
920 md->version[i] = td->version[i];
921 writeops = 2;
922 goto writecheck;
923 }
924
925 if (td->version[i] == md->version[i]) {
926 rd = td;
927 if (!(td->options & NAND_BBT_VERSION))
928 rd2 = md;
929 goto writecheck;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
933 rd = td;
934 md->version[i] = td->version[i];
935 writeops = 2;
936 } else {
937 rd = md;
938 td->version[i] = md->version[i];
939 writeops = 1;
940 }
941
942 goto writecheck;
943
944 } else {
945 if (td->pages[i] == -1) {
946 writeops = 0x01;
947 goto create;
948 }
949 rd = td;
950 goto writecheck;
951 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100952 create:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700953 /* Create the bad block table by scanning the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (!(td->options & NAND_BBT_CREATE))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000955 continue;
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /* Create the table in memory by scanning the chip(s) */
Brian Norris53d5d882011-05-31 16:31:25 -0700958 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
Sebastian Andrzej Siewior453281a2010-10-01 21:37:37 +0200959 create_bbt(mtd, buf, bd, chipsel);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 td->version[i] = 1;
962 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000963 md->version[i] = 1;
David Woodhousee0c7d762006-05-13 18:07:53 +0100964 writecheck:
Brian Norris8b6e50c2011-05-25 14:59:01 -0700965 /* Read back first? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (rd)
David Woodhousee0c7d762006-05-13 18:07:53 +0100967 read_abs_bbt(mtd, buf, rd, chipsel);
Brian Norris8b6e50c2011-05-25 14:59:01 -0700968 /* If they weren't versioned, read both */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (rd2)
David Woodhousee0c7d762006-05-13 18:07:53 +0100970 read_abs_bbt(mtd, buf, rd2, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Brian Norris8b6e50c2011-05-25 14:59:01 -0700972 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100974 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (res < 0)
976 return res;
977 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000978
Brian Norris8b6e50c2011-05-25 14:59:01 -0700979 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100981 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (res < 0)
983 return res;
984 }
985 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000986 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000990 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Brian Norris8b6e50c2011-05-25 14:59:01 -0700991 * @mtd: MTD device structure
992 * @td: bad block table descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 *
Brian Norris8b6e50c2011-05-25 14:59:01 -0700994 * The bad block table regions are marked as "bad" to prevent accidental
995 * erasures / writes. The regions are identified by the mark 0x02.
996 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100997static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 struct nand_chip *this = mtd->priv;
1000 int i, j, chips, block, nrblocks, update;
1001 uint8_t oldval, newval;
1002
Brian Norris8b6e50c2011-05-25 14:59:01 -07001003 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (td->options & NAND_BBT_PERCHIP) {
1005 chips = this->numchips;
1006 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1007 } else {
1008 chips = 1;
1009 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001010 }
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 for (i = 0; i < chips; i++) {
1013 if ((td->options & NAND_BBT_ABSPAGE) ||
1014 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001015 if (td->pages[i] == -1)
1016 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001018 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 oldval = this->bbt[(block >> 3)];
1020 newval = oldval | (0x2 << (block & 0x06));
1021 this->bbt[(block >> 3)] = newval;
1022 if ((oldval != newval) && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001023 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 continue;
1025 }
1026 update = 0;
1027 if (td->options & NAND_BBT_LASTBLOCK)
1028 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001029 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001031 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 for (j = 0; j < td->maxblocks; j++) {
1033 oldval = this->bbt[(block >> 3)];
1034 newval = oldval | (0x2 << (block & 0x06));
1035 this->bbt[(block >> 3)] = newval;
David Woodhousee0c7d762006-05-13 18:07:53 +01001036 if (oldval != newval)
1037 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001039 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001040 /*
1041 * If we want reserved blocks to be recorded to flash, and some
1042 * new ones have been marked, then we need to update the stored
1043 * bbts. This should only happen once.
1044 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (update && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +00001046 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048}
1049
1050/**
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001051 * verify_bbt_descr - verify the bad block description
Brian Norris8b6e50c2011-05-25 14:59:01 -07001052 * @mtd: MTD device structure
1053 * @bd: the table to verify
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001054 *
1055 * This functions performs a few sanity checks on the bad block description
1056 * table.
1057 */
1058static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1059{
1060 struct nand_chip *this = mtd->priv;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001061 u32 pattern_len;
1062 u32 bits;
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001063 u32 table_size;
1064
1065 if (!bd)
1066 return;
Stanislav Fomichev7912a5e2011-02-07 23:48:25 +03001067
1068 pattern_len = bd->len;
1069 bits = bd->options & NAND_BBT_NRBITS_MSK;
1070
Brian Norrisa40f7342011-05-31 16:31:22 -07001071 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001072 !(this->bbt_options & NAND_BBT_USE_FLASH));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001073 BUG_ON(!bits);
1074
1075 if (bd->options & NAND_BBT_VERSION)
1076 pattern_len++;
1077
1078 if (bd->options & NAND_BBT_NO_OOB) {
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001079 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
Brian Norrisa40f7342011-05-31 16:31:22 -07001080 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001081 BUG_ON(bd->offs);
1082 if (bd->options & NAND_BBT_VERSION)
1083 BUG_ON(bd->veroffs != bd->len);
1084 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1085 }
1086
1087 if (bd->options & NAND_BBT_PERCHIP)
1088 table_size = this->chipsize >> this->bbt_erase_shift;
1089 else
1090 table_size = mtd->size >> this->bbt_erase_shift;
1091 table_size >>= 3;
1092 table_size *= bits;
1093 if (bd->options & NAND_BBT_NO_OOB)
1094 table_size += pattern_len;
1095 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1096}
1097
1098/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001100 * @mtd: MTD device structure
1101 * @bd: descriptor for the good/bad block search pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001103 * The function checks, if a bad block table(s) is/are already available. If
1104 * not it scans the device for manufacturer marked good / bad blocks and writes
1105 * the bad block table(s) to the selected place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001107 * The bad block table memory is allocated here. It must be freed by calling
1108 * the nand_free_bbt function.
1109 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001110int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 struct nand_chip *this = mtd->priv;
1113 int len, res = 0;
1114 uint8_t *buf;
1115 struct nand_bbt_descr *td = this->bbt_td;
1116 struct nand_bbt_descr *md = this->bbt_md;
1117
1118 len = mtd->size >> (this->bbt_erase_shift + 2);
Brian Norris8b6e50c2011-05-25 14:59:01 -07001119 /*
1120 * Allocate memory (2bit per block) and clear the memory bad block
1121 * table.
1122 */
Burman Yan95b93a02006-11-15 21:10:29 +02001123 this->bbt = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (!this->bbt) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001125 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -ENOMEM;
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Brian Norris8b6e50c2011-05-25 14:59:01 -07001129 /*
1130 * If no primary table decriptor is given, scan the device to build a
1131 * memory based bad block table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001133 if (!td) {
1134 if ((res = nand_memory_bbt(mtd, bd))) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001135 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
1136 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001137 this->bbt = NULL;
1138 }
1139 return res;
1140 }
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001141 verify_bbt_descr(mtd, td);
1142 verify_bbt_descr(mtd, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /* Allocate a temporary buffer for one eraseblock incl. oob */
1145 len = (1 << this->bbt_erase_shift);
1146 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001147 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001149 printk(KERN_ERR "nand_bbt: Out of memory\n");
1150 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 this->bbt = NULL;
1152 return -ENOMEM;
1153 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001154
Brian Norris8b6e50c2011-05-25 14:59:01 -07001155 /* Is the bbt at a given page? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (td->options & NAND_BBT_ABSPAGE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001157 res = read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001158 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /* Search the bad block table using a pattern in oob */
David Woodhousee0c7d762006-05-13 18:07:53 +01001160 res = search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001163 if (res)
David Woodhousee0c7d762006-05-13 18:07:53 +01001164 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001167 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001169 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001170
David Woodhousee0c7d762006-05-13 18:07:53 +01001171 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return res;
1173}
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001176 * nand_update_bbt - [NAND Interface] update bad block table(s)
Brian Norris8b6e50c2011-05-25 14:59:01 -07001177 * @mtd: MTD device structure
1178 * @offs: the offset of the newly marked block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001180 * The function updates the bad block table(s).
1181 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001182int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 struct nand_chip *this = mtd->priv;
1185 int len, res = 0, writeops = 0;
1186 int chip, chipsel;
1187 uint8_t *buf;
1188 struct nand_bbt_descr *td = this->bbt_td;
1189 struct nand_bbt_descr *md = this->bbt_md;
1190
1191 if (!this->bbt || !td)
1192 return -EINVAL;
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /* Allocate a temporary buffer for one eraseblock incl. oob */
1195 len = (1 << this->bbt_erase_shift);
1196 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001197 buf = kmalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001199 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return -ENOMEM;
1201 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 writeops = md != NULL ? 0x03 : 0x01;
1204
Brian Norris8b6e50c2011-05-25 14:59:01 -07001205 /* Do we have a bbt per chip? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001207 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 chipsel = chip;
1209 } else {
1210 chip = 0;
1211 chipsel = -1;
1212 }
1213
1214 td->version[chip]++;
1215 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001216 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Brian Norris8b6e50c2011-05-25 14:59:01 -07001218 /* Write the bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001220 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (res < 0)
1222 goto out;
1223 }
Brian Norris8b6e50c2011-05-25 14:59:01 -07001224 /* Write the mirror bad block table to the device? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001226 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
David Woodhousee0c7d762006-05-13 18:07:53 +01001229 out:
1230 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return res;
1232}
1233
Brian Norris8b6e50c2011-05-25 14:59:01 -07001234/*
1235 * Define some generic bad / good block scan pattern which are used
1236 * while scanning a device for factory marked good / bad blocks.
1237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1241
1242static struct nand_bbt_descr agand_flashbased = {
1243 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1244 .offs = 0x20,
1245 .len = 6,
1246 .pattern = scan_agand_pattern
1247};
1248
Brian Norris8b6e50c2011-05-25 14:59:01 -07001249/* Generic flash bbt decriptors */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1251static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1252
1253static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001254 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1256 .offs = 8,
1257 .len = 4,
1258 .veroffs = 12,
1259 .maxblocks = 4,
1260 .pattern = bbt_pattern
1261};
1262
1263static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001264 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1266 .offs = 8,
1267 .len = 4,
1268 .veroffs = 12,
1269 .maxblocks = 4,
1270 .pattern = mirror_pattern
1271};
1272
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001273static struct nand_bbt_descr bbt_main_no_bbt_descr = {
1274 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1275 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1276 | NAND_BBT_NO_OOB,
1277 .len = 4,
1278 .veroffs = 4,
1279 .maxblocks = 4,
1280 .pattern = bbt_pattern
1281};
1282
1283static struct nand_bbt_descr bbt_mirror_no_bbt_descr = {
1284 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1285 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1286 | NAND_BBT_NO_OOB,
1287 .len = 4,
1288 .veroffs = 4,
1289 .maxblocks = 4,
1290 .pattern = mirror_pattern
1291};
1292
Brian Norris58373ff2010-07-15 12:15:44 -07001293/**
1294 * nand_create_default_bbt_descr - [Internal] Creates a BBT descriptor structure
Brian Norris8b6e50c2011-05-25 14:59:01 -07001295 * @this: NAND chip to create descriptor for
Brian Norris58373ff2010-07-15 12:15:44 -07001296 *
1297 * This function allocates and initializes a nand_bbt_descr for BBM detection
1298 * based on the properties of "this". The new descriptor is stored in
1299 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1300 * passed to this function.
Brian Norris58373ff2010-07-15 12:15:44 -07001301 */
1302static int nand_create_default_bbt_descr(struct nand_chip *this)
1303{
1304 struct nand_bbt_descr *bd;
1305 if (this->badblock_pattern) {
1306 printk(KERN_WARNING "BBT descr already allocated; not replacing.\n");
1307 return -EINVAL;
1308 }
1309 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
1310 if (!bd) {
1311 printk(KERN_ERR "nand_create_default_bbt_descr: Out of memory\n");
1312 return -ENOMEM;
1313 }
Brian Norris5fb15492011-05-31 16:31:21 -07001314 bd->options = this->bbt_options;
Brian Norris58373ff2010-07-15 12:15:44 -07001315 bd->offs = this->badblockpos;
1316 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1317 bd->pattern = scan_ff_pattern;
1318 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1319 this->badblock_pattern = bd;
1320 return 0;
1321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001324 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Brian Norris8b6e50c2011-05-25 14:59:01 -07001325 * @mtd: MTD device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 *
Brian Norris8b6e50c2011-05-25 14:59:01 -07001327 * This function selects the default bad block table support for the device and
1328 * calls the nand_scan_bbt function.
1329 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001330int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001333
Brian Norris8b6e50c2011-05-25 14:59:01 -07001334 /*
1335 * Default for AG-AND. We must use a flash based bad block table as the
1336 * devices have factory marked _good_ blocks. Erasing those blocks
1337 * leads to loss of the good / bad information, so we _must_ store this
1338 * information in a good / bad table during startup.
David Woodhousee0c7d762006-05-13 18:07:53 +01001339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (this->options & NAND_IS_AND) {
1341 /* Use the default pattern descriptors */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001342 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 this->bbt_td = &bbt_main_descr;
1344 this->bbt_md = &bbt_mirror_descr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001345 }
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001346 this->bbt_options |= NAND_BBT_USE_FLASH;
David Woodhousee0c7d762006-05-13 18:07:53 +01001347 return nand_scan_bbt(mtd, &agand_flashbased);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001349
Brian Norris8b6e50c2011-05-25 14:59:01 -07001350 /* Is a flash based bad block table requested? */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001351 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001352 /* Use the default pattern descriptors */
1353 if (!this->bbt_td) {
Brian Norrisa40f7342011-05-31 16:31:22 -07001354 if (this->bbt_options & NAND_BBT_NO_OOB) {
Sebastian Andrzej Siewior7cba7b12010-09-30 21:28:01 +02001355 this->bbt_td = &bbt_main_no_bbt_descr;
1356 this->bbt_md = &bbt_mirror_no_bbt_descr;
1357 } else {
1358 this->bbt_td = &bbt_main_descr;
1359 this->bbt_md = &bbt_mirror_descr;
1360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 } else {
1363 this->bbt_td = NULL;
1364 this->bbt_md = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Brian Norrisa2f812d2011-03-18 21:53:42 -07001366
1367 if (!this->badblock_pattern)
1368 nand_create_default_bbt_descr(this);
1369
David Woodhousee0c7d762006-05-13 18:07:53 +01001370 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
1373/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001374 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Brian Norris8b6e50c2011-05-25 14:59:01 -07001375 * @mtd: MTD device structure
1376 * @offs: offset in the device
1377 * @allowbbt: allow access to bad block table region
1378 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001379int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 struct nand_chip *this = mtd->priv;
1382 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001383 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001386 block = (int)(offs >> (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1388
David Woodhousee0c7d762006-05-13 18:07:53 +01001389 DEBUG(MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1390 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 switch ((int)res) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001393 case 0x00:
1394 return 0;
1395 case 0x01:
1396 return 1;
1397 case 0x02:
1398 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400 return 1;
1401}
1402
David Woodhousee0c7d762006-05-13 18:07:53 +01001403EXPORT_SYMBOL(nand_scan_bbt);
1404EXPORT_SYMBOL(nand_default_bbt);