blob: 9402653eb09b4982ac7d924beda88cb203442741 [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 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00009 * $Id: nand_bbt.c,v 1.36 2005/11/07 11:14:30 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 * Description:
16 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000017 * When nand_scan_bbt is called, then it tries to find the bad block table
18 * depending on the options in the bbt descriptor(s). If a bbt is found
19 * then the contents are read and the memory based bbt is created. If a
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * mirrored bbt is selected then the mirror is searched too and the
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000021 * versions are compared. If the mirror has a greater version number
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * than the mirror bbt is used to build the memory based bbt.
23 * If the tables are not versioned, then we "or" the bad block information.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000024 * If one of the bbt's is out of date or does not exist it is (re)created.
25 * If no bbt exists at all then the device is scanned for factory marked
26 * good / bad blocks and the bad block tables are created.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000028 * For manufacturer created bbts like the one found on M-SYS DOC devices
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * the bbt is searched and read but never created
30 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000031 * The autogenerated bad block table is located in the last good blocks
32 * of the device. The table is mirrored, so it can be updated eventually.
33 * The table is marked in the oob area with an ident pattern and a version
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * number which indicates which of both tables is more up to date.
35 *
36 * The table uses 2 bits per block
37 * 11b: block is good
38 * 00b: block is factory marked bad
39 * 01b, 10b: block is marked bad due to wear
40 *
41 * The memory bad block table uses the following scheme:
42 * 00b: block is good
43 * 01b: block is marked bad due to wear
44 * 10b: block is reserved (to protect the bbt area)
45 * 11b: block is factory marked bad
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000046 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * Multichip devices like DOC store the bad block info per floor.
48 *
49 * Following assumptions are made:
50 * - bbts start at a page boundary, if autolocated on a block boundary
David Woodhousee0c7d762006-05-13 18:07:53 +010051 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000052 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
54
55#include <linux/slab.h>
56#include <linux/types.h>
57#include <linux/mtd/mtd.h>
58#include <linux/mtd/nand.h>
59#include <linux/mtd/nand_ecc.h>
60#include <linux/mtd/compatmac.h>
61#include <linux/bitops.h>
62#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010063#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000065/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * check_pattern - [GENERIC] check if a pattern is in the buffer
67 * @buf: the buffer to search
68 * @len: the length of buffer to search
69 * @paglen: the pagelength
70 * @td: search pattern descriptor
71 *
72 * Check for a pattern at the given place. Used to search bad block
73 * tables and good / bad block identifiers.
74 * If the SCAN_EMPTY option is set then check, if all bytes except the
75 * pattern area contain 0xff
76 *
77*/
David Woodhousee0c7d762006-05-13 18:07:53 +010078static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000080 int i, end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 uint8_t *p = buf;
82
Thomas Gleixnerc9e053652005-06-14 16:39:57 +010083 end = paglen + td->offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (td->options & NAND_BBT_SCANEMPTY) {
85 for (i = 0; i < end; i++) {
86 if (p[i] != 0xff)
87 return -1;
88 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000089 }
Thomas Gleixnerc9e053652005-06-14 16:39:57 +010090 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* Compare the pattern */
93 for (i = 0; i < td->len; i++) {
94 if (p[i] != td->pattern[i])
95 return -1;
96 }
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000099 p += td->len;
100 end += td->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 for (i = end; i < len; i++) {
102 if (*p++ != 0xff)
103 return -1;
104 }
105 }
106 return 0;
107}
108
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000109/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100110 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
111 * @buf: the buffer to search
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100112 * @td: search pattern descriptor
113 *
114 * Check for a pattern at the given place. Used to search bad block
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000115 * tables and good / bad block identifiers. Same as check_pattern, but
Thomas Gleixner19870da2005-07-15 14:53:51 +0100116 * no optional empty check
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100117 *
118*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100119static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100120{
121 int i;
122 uint8_t *p = buf;
123
124 /* Compare the pattern */
125 for (i = 0; i < td->len; i++) {
Thomas Gleixner19870da2005-07-15 14:53:51 +0100126 if (p[td->offs + i] != td->pattern[i])
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100127 return -1;
128 }
129 return 0;
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/**
133 * read_bbt - [GENERIC] Read the bad block table starting from page
134 * @mtd: MTD device structure
135 * @buf: temporary buffer
136 * @page: the starting page
137 * @num: the number of bbt descriptors to read
138 * @bits: number of bits per block
139 * @offs: offset in the memory table
140 * @reserved_block_code: Pattern to identify reserved blocks
141 *
142 * Read the bad block table starting from page.
143 *
144 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100145static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
146 int bits, int offs, int reserved_block_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 int res, i, j, act = 0;
149 struct nand_chip *this = mtd->priv;
150 size_t retlen, len, totlen;
151 loff_t from;
152 uint8_t msk = (uint8_t) ((1 << bits) - 1);
153
154 totlen = (num * bits) >> 3;
David Woodhousee0c7d762006-05-13 18:07:53 +0100155 from = ((loff_t) page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 while (totlen) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100158 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200159 res = mtd->read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (res < 0) {
161 if (retlen != len) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100162 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return res;
164 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100165 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* Analyse data */
169 for (i = 0; i < len; i++) {
170 uint8_t dat = buf[i];
171 for (j = 0; j < 8; j += bits, act += 2) {
172 uint8_t tmp = (dat >> j) & msk;
173 if (tmp == msk)
174 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100175 if (reserved_block_code && (tmp == reserved_block_code)) {
176 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%08x\n",
177 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200179 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 continue;
181 }
182 /* Leave it for now, if its matured we can move this
183 * message to MTD_DEBUG_LEVEL0 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100184 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%08x\n",
185 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000186 /* Factory marked bad or worn out ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (tmp == 0)
188 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
189 else
190 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200191 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 totlen -= len;
195 from += len;
196 }
197 return 0;
198}
199
200/**
201 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
202 * @mtd: MTD device structure
203 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000204 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * @chip: read the table for a specific chip, -1 read all chips.
206 * Applies only if NAND_BBT_PERCHIP option is set
207 *
208 * Read the bad block table for all chips starting at a given page
209 * We assume that the bbt bits are in consecutive order.
210*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100211static 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 -0700212{
213 struct nand_chip *this = mtd->priv;
214 int res = 0, i;
215 int bits;
216
217 bits = td->options & NAND_BBT_NRBITS_MSK;
218 if (td->options & NAND_BBT_PERCHIP) {
219 int offs = 0;
220 for (i = 0; i < this->numchips; i++) {
221 if (chip == -1 || chip == i)
222 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
223 if (res)
224 return res;
225 offs += this->chipsize >> (this->bbt_erase_shift + 2);
226 }
227 } else {
228 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
229 if (res)
230 return res;
231 }
232 return 0;
233}
234
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200235/*
236 * Scan read raw data from flash
237 */
238static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
239 size_t len)
240{
241 struct mtd_oob_ops ops;
242
243 ops.mode = MTD_OOB_RAW;
244 ops.ooboffs = 0;
245 ops.ooblen = mtd->oobsize;
246 ops.oobbuf = buf;
247 ops.datbuf = buf;
248 ops.len = len;
249
250 return mtd->read_oob(mtd, offs, &ops);
251}
252
253/*
254 * Scan write data with oob to flash
255 */
256static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
257 uint8_t *buf, uint8_t *oob)
258{
259 struct mtd_oob_ops ops;
260
261 ops.mode = MTD_OOB_PLACE;
262 ops.ooboffs = 0;
263 ops.ooblen = mtd->oobsize;
264 ops.datbuf = buf;
265 ops.oobbuf = oob;
266 ops.len = len;
267
268 return mtd->write_oob(mtd, offs, &ops);
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/**
272 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
273 * @mtd: MTD device structure
274 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000275 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * @md: descriptor for the bad block table mirror
277 *
278 * Read the bad block table(s) for all chips starting at a given page
279 * We assume that the bbt bits are in consecutive order.
280 *
281*/
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200282static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
283 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 struct nand_chip *this = mtd->priv;
286
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000287 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (td->options & NAND_BBT_VERSION) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200289 scan_read_raw(mtd, buf, td->pages[0] << this->page_shift,
290 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200291 td->version[0] = buf[mtd->writesize + td->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200292 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
293 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000296 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (md && (md->options & NAND_BBT_VERSION)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200298 scan_read_raw(mtd, buf, md->pages[0] << this->page_shift,
299 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200300 md->version[0] = buf[mtd->writesize + md->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200301 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
302 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 1;
305}
306
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200307/*
308 * Scan a given block full
309 */
310static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
311 loff_t offs, uint8_t *buf, size_t readlen,
312 int scanlen, int len)
313{
314 int ret, j;
315
316 ret = scan_read_raw(mtd, buf, offs, readlen);
317 if (ret)
318 return ret;
319
320 for (j = 0; j < len; j++, buf += scanlen) {
321 if (check_pattern(buf, scanlen, mtd->writesize, bd))
322 return 1;
323 }
324 return 0;
325}
326
327/*
328 * Scan a given block partially
329 */
330static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
331 loff_t offs, uint8_t *buf, int len)
332{
333 struct mtd_oob_ops ops;
334 int j, ret;
335
336 ops.len = mtd->oobsize;
337 ops.ooblen = mtd->oobsize;
338 ops.oobbuf = buf;
339 ops.ooboffs = 0;
340 ops.datbuf = NULL;
341 ops.mode = MTD_OOB_PLACE;
342
343 for (j = 0; j < len; j++) {
344 /*
345 * Read the full oob until read_oob is fixed to
346 * handle single byte reads for 16 bit
347 * buswidth
348 */
349 ret = mtd->read_oob(mtd, offs, &ops);
350 if (ret)
351 return ret;
352
353 if (check_short_pattern(buf, bd))
354 return 1;
355
356 offs += mtd->writesize;
357 }
358 return 0;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
362 * create_bbt - [GENERIC] Create a bad block table by scanning the device
363 * @mtd: MTD device structure
364 * @buf: temporary buffer
365 * @bd: descriptor for the good/bad block search pattern
366 * @chip: create the table for a specific chip, -1 read all chips.
367 * Applies only if NAND_BBT_PERCHIP option is set
368 *
369 * Create a bad block table by scanning the device
370 * for the given good/bad block identify pattern
371 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200372static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
373 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct nand_chip *this = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200376 int i, numblocks, len, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 int startblock;
378 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200379 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
David Woodhousee0c7d762006-05-13 18:07:53 +0100381 printk(KERN_INFO "Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (bd->options & NAND_BBT_SCANALLPAGES)
384 len = 1 << (this->bbt_erase_shift - this->page_shift);
385 else {
386 if (bd->options & NAND_BBT_SCAN2NDPAGE)
387 len = 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000388 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 len = 1;
390 }
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000391
392 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
393 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200394 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000395 readlen = bd->len;
396 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000397 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200398 scanlen = mtd->writesize + mtd->oobsize;
399 readlen = len * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 if (chip == -1) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200403 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
404 * below as it makes shifting and masking less painful */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
406 startblock = 0;
407 from = 0;
408 } else {
409 if (chip >= this->numchips) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100410 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
411 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000412 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
415 startblock = chip * numblocks;
416 numblocks += startblock;
417 from = startblock << (this->bbt_erase_shift - 1);
418 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000421 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000422
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200423 if (bd->options & NAND_BBT_SCANALLPAGES)
424 ret = scan_block_full(mtd, bd, from, buf, readlen,
425 scanlen, len);
426 else
427 ret = scan_block_fast(mtd, bd, from, buf, len);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000428
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200429 if (ret < 0)
430 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000431
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200432 if (ret) {
433 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
434 printk(KERN_WARNING "Bad eraseblock %d at 0x%08x\n",
435 i >> 1, (unsigned int)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200436 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 i += 2;
440 from += (1 << this->bbt_erase_shift);
441 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445/**
446 * search_bbt - [GENERIC] scan the device for a specific bad block table
447 * @mtd: MTD device structure
448 * @buf: temporary buffer
449 * @td: descriptor for the bad block table
450 *
451 * Read the bad block table by searching for a given ident pattern.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000452 * Search is preformed either from the beginning up or from the end of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * the device downwards. The search starts always at the start of a
454 * block.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000455 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * for a bbt, which contains the bad block information of this chip.
David Woodhousee0c7d762006-05-13 18:07:53 +0100457 * This is necessary to provide support for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000459 * The bbt ident pattern resides in the oob area of the first page
460 * in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100462static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct nand_chip *this = mtd->priv;
465 int i, chips;
466 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200467 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200469 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 /* Search direction top -> down ? */
472 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100473 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 dir = -1;
475 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000476 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000478 }
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* Do we have a bbt per chip ? */
481 if (td->options & NAND_BBT_PERCHIP) {
482 chips = this->numchips;
483 bbtblocks = this->chipsize >> this->bbt_erase_shift;
484 startblock &= bbtblocks - 1;
485 } else {
486 chips = 1;
487 bbtblocks = mtd->size >> this->bbt_erase_shift;
488 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /* Number of bits for each erase block in the bbt */
491 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 for (i = 0; i < chips; i++) {
494 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000495 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 td->pages[i] = -1;
497 /* Scan the maximum number of blocks */
498 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 int actblock = startblock + dir * block;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200501 loff_t offs = actblock << this->bbt_erase_shift;
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* Read first page */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200504 scan_read_raw(mtd, buf, offs, mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200505 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200506 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (td->options & NAND_BBT_VERSION) {
Joern Engel28318772006-05-22 23:18:05 +0200508 td->version[i] = buf[mtd->writesize + td->veroffs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 break;
511 }
512 }
513 startblock += this->chipsize >> this->bbt_erase_shift;
514 }
515 /* Check, if we found a bbt for each requested chip */
516 for (i = 0; i < chips; i++) {
517 if (td->pages[i] == -1)
David Woodhousee0c7d762006-05-13 18:07:53 +0100518 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100520 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
521 td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/**
527 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
528 * @mtd: MTD device structure
529 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000530 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * @md: descriptor for the bad block table mirror
532 *
533 * Search and read the bad block table(s)
534*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100535static 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 -0700536{
537 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100538 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* Search the mirror table */
541 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100542 search_bbt(mtd, buf, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000544 /* Force result check */
545 return 1;
546}
547
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000548/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 * write_bbt - [GENERIC] (Re)write the bad block table
550 *
551 * @mtd: MTD device structure
552 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000553 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * @md: descriptor for the bad block table mirror
555 * @chipsel: selector for a specific chip, -1 for all
556 *
557 * (Re)write the bad block table
558 *
559*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100560static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200561 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
562 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct erase_info einfo;
566 int i, j, res, chip = 0;
567 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200568 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 uint8_t msk[4];
570 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200571 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200573 struct mtd_oob_ops ops;
574
575 ops.ooblen = mtd->oobsize;
576 ops.ooboffs = 0;
577 ops.datbuf = NULL;
578 ops.mode = MTD_OOB_PLACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (!rcode)
581 rcode = 0xff;
582 /* Write bad block table per chip rather than per device ? */
583 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100584 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000585 /* Full device write or specific chip ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (chipsel == -1) {
587 nrchips = this->numchips;
588 } else {
589 nrchips = chipsel + 1;
590 chip = chipsel;
591 }
592 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100593 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000595 }
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* Loop through the chips */
598 for (; chip < nrchips; chip++) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000599
600 /* There was already a version of the table, reuse the page
601 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * page nr. in td->pages.
603 */
604 if (td->pages[chip] != -1) {
605 page = td->pages[chip];
606 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /* Automatic placement of the bad block table */
610 /* Search direction top -> down ? */
611 if (td->options & NAND_BBT_LASTBLOCK) {
612 startblock = numblocks * (chip + 1) - 1;
613 dir = -1;
614 } else {
615 startblock = chip * numblocks;
616 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 for (i = 0; i < td->maxblocks; i++) {
620 int block = startblock + dir * i;
621 /* Check, if the block is bad */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200622 switch ((this->bbt[block >> 2] >>
623 (2 * (block & 0x03))) & 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 case 0x01:
625 case 0x03:
626 continue;
627 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200628 page = block <<
629 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Check, if the block is used by the mirror table */
631 if (!md || md->pages[chip] != page)
632 goto write;
633 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100634 printk(KERN_ERR "No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100636 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* Set up shift count and masks for the flash table */
639 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200640 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200642 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
643 msk[3] = 0x01;
644 break;
645 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
646 msk[3] = 0x03;
647 break;
648 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
649 msk[3] = 0x0f;
650 break;
651 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
652 msk[3] = 0xff;
653 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 default: return -EINVAL;
655 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 to = ((loff_t) page) << this->page_shift;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* Must we save the block contents ? */
662 if (td->options & NAND_BBT_SAVECONTENT) {
663 /* Make it block aligned */
664 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
665 len = 1 << this->bbt_erase_shift;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200666 res = mtd->read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (res < 0) {
668 if (retlen != len) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200669 printk(KERN_INFO "nand_bbt: Error "
670 "reading block for writing "
671 "the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return res;
673 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200674 printk(KERN_WARNING "nand_bbt: ECC error "
675 "while reading block for writing "
676 "bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200678 /* Read oob data */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200679 ops.len = (len >> this->page_shift) * mtd->oobsize;
680 ops.oobbuf = &buf[len];
681 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
682 if (res < 0 || ops.retlen != ops.len)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200683 goto outerr;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /* Calc the byte offset in the buffer */
686 pageoffs = page - (int)(to >> this->page_shift);
687 offs = pageoffs << this->page_shift;
688 /* Preset the bbt area with 0xff */
David Woodhousee0c7d762006-05-13 18:07:53 +0100689 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200690 ooboffs = len + (pageoffs * mtd->oobsize);
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 } else {
693 /* Calc length */
694 len = (size_t) (numblocks >> sft);
695 /* Make it page aligned ! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200696 len = (len + (mtd->writesize - 1)) &
697 ~(mtd->writesize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200699 memset(buf, 0xff, len +
700 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200702 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200704 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000706
Thomas Gleixner9223a452006-05-23 17:21:03 +0200707 if (td->options & NAND_BBT_VERSION)
708 buf[ooboffs + td->veroffs] = td->version[chip];
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /* walk through the memory table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100711 for (i = 0; i < numblocks;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 uint8_t dat;
713 dat = this->bbt[bbtoffs + (i >> 2)];
David Woodhousee0c7d762006-05-13 18:07:53 +0100714 for (j = 0; j < 4; j++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int sftcnt = (i << (3 - sft)) & sftmsk;
716 /* Do not store the reserved bbt blocks ! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200717 buf[offs + (i >> sft)] &=
718 ~(msk[dat & 0x03] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 dat >>= 2;
720 }
721 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000722
David Woodhousee0c7d762006-05-13 18:07:53 +0100723 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 einfo.mtd = mtd;
David Woodhousee0c7d762006-05-13 18:07:53 +0100725 einfo.addr = (unsigned long)to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100727 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200728 if (res < 0)
729 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000730
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200731 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200732 if (res < 0)
733 goto outerr;
734
735 printk(KERN_DEBUG "Bad block table written to 0x%08x, version "
736 "0x%02X\n", (unsigned int)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /* Mark it as used */
739 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200742
743 outerr:
744 printk(KERN_WARNING
745 "nand_bbt: Error while writing bad block table %d\n", res);
746 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749/**
750 * nand_memory_bbt - [GENERIC] create a memory based bad block table
751 * @mtd: MTD device structure
752 * @bd: descriptor for the good/bad block search pattern
753 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000754 * The function creates a memory based bbt by scanning the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * for manufacturer / software marked good / bad blocks
756*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100757static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct nand_chip *this = mtd->priv;
760
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000761 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100762 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100766 * check_create - [GENERIC] create and write bbt(s) if necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * @mtd: MTD device structure
768 * @buf: temporary buffer
769 * @bd: descriptor for the good/bad block search pattern
770 *
771 * The function checks the results of the previous call to read_bbt
David Woodhousee0c7d762006-05-13 18:07:53 +0100772 * and creates / updates the bbt(s) if necessary
773 * Creation is necessary if no bbt was found for the chip/device
774 * Update is necessary if one of the tables is missing or the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * version nr. of one table is less than the other
776*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100777static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 int i, chips, writeops, chipsel, res;
780 struct nand_chip *this = mtd->priv;
781 struct nand_bbt_descr *td = this->bbt_td;
782 struct nand_bbt_descr *md = this->bbt_md;
783 struct nand_bbt_descr *rd, *rd2;
784
785 /* Do we have a bbt per chip ? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000786 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000788 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 for (i = 0; i < chips; i++) {
792 writeops = 0;
793 rd = NULL;
794 rd2 = NULL;
795 /* Per chip or per device ? */
796 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
797 /* Mirrored table avilable ? */
798 if (md) {
799 if (td->pages[i] == -1 && md->pages[i] == -1) {
800 writeops = 0x03;
801 goto create;
802 }
803
804 if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000805 rd = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 td->version[i] = md->version[i];
807 writeops = 1;
808 goto writecheck;
809 }
810
811 if (md->pages[i] == -1) {
812 rd = td;
813 md->version[i] = td->version[i];
814 writeops = 2;
815 goto writecheck;
816 }
817
818 if (td->version[i] == md->version[i]) {
819 rd = td;
820 if (!(td->options & NAND_BBT_VERSION))
821 rd2 = md;
822 goto writecheck;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
826 rd = td;
827 md->version[i] = td->version[i];
828 writeops = 2;
829 } else {
830 rd = md;
831 td->version[i] = md->version[i];
832 writeops = 1;
833 }
834
835 goto writecheck;
836
837 } else {
838 if (td->pages[i] == -1) {
839 writeops = 0x01;
840 goto create;
841 }
842 rd = td;
843 goto writecheck;
844 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100845 create:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* Create the bad block table by scanning the device ? */
847 if (!(td->options & NAND_BBT_CREATE))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000848 continue;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* Create the table in memory by scanning the chip(s) */
David Woodhousee0c7d762006-05-13 18:07:53 +0100851 create_bbt(mtd, buf, bd, chipsel);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 td->version[i] = 1;
854 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000855 md->version[i] = 1;
David Woodhousee0c7d762006-05-13 18:07:53 +0100856 writecheck:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* read back first ? */
858 if (rd)
David Woodhousee0c7d762006-05-13 18:07:53 +0100859 read_abs_bbt(mtd, buf, rd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* If they weren't versioned, read both. */
861 if (rd2)
David Woodhousee0c7d762006-05-13 18:07:53 +0100862 read_abs_bbt(mtd, buf, rd2, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 /* Write the bad block table to the device ? */
865 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100866 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (res < 0)
868 return res;
869 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /* Write the mirror bad block table to the device ? */
872 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100873 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (res < 0)
875 return res;
876 }
877 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
881/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000882 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 * @mtd: MTD device structure
884 * @td: bad block table descriptor
885 *
886 * The bad block table regions are marked as "bad" to prevent
887 * accidental erasures / writes. The regions are identified by
888 * the mark 0x02.
889*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100890static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 struct nand_chip *this = mtd->priv;
893 int i, j, chips, block, nrblocks, update;
894 uint8_t oldval, newval;
895
896 /* Do we have a bbt per chip ? */
897 if (td->options & NAND_BBT_PERCHIP) {
898 chips = this->numchips;
899 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
900 } else {
901 chips = 1;
902 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000903 }
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 for (i = 0; i < chips; i++) {
906 if ((td->options & NAND_BBT_ABSPAGE) ||
907 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100908 if (td->pages[i] == -1)
909 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000911 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 oldval = this->bbt[(block >> 3)];
913 newval = oldval | (0x2 << (block & 0x06));
914 this->bbt[(block >> 3)] = newval;
915 if ((oldval != newval) && td->reserved_block_code)
916 nand_update_bbt(mtd, block << (this->bbt_erase_shift - 1));
917 continue;
918 }
919 update = 0;
920 if (td->options & NAND_BBT_LASTBLOCK)
921 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000922 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000924 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 for (j = 0; j < td->maxblocks; j++) {
926 oldval = this->bbt[(block >> 3)];
927 newval = oldval | (0x2 << (block & 0x06));
928 this->bbt[(block >> 3)] = newval;
David Woodhousee0c7d762006-05-13 18:07:53 +0100929 if (oldval != newval)
930 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* If we want reserved blocks to be recorded to flash, and some
934 new ones have been marked, then we need to update the stored
935 bbts. This should only happen once. */
936 if (update && td->reserved_block_code)
937 nand_update_bbt(mtd, (block - 2) << (this->bbt_erase_shift - 1));
938 }
939}
940
941/**
942 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
943 * @mtd: MTD device structure
944 * @bd: descriptor for the good/bad block search pattern
945 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000946 * The function checks, if a bad block table(s) is/are already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 * available. If not it scans the device for manufacturer
948 * marked good / bad blocks and writes the bad block table(s) to
949 * the selected place.
950 *
951 * The bad block table memory is allocated here. It must be freed
952 * by calling the nand_free_bbt function.
953 *
954*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100955int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct nand_chip *this = mtd->priv;
958 int len, res = 0;
959 uint8_t *buf;
960 struct nand_bbt_descr *td = this->bbt_td;
961 struct nand_bbt_descr *md = this->bbt_md;
962
963 len = mtd->size >> (this->bbt_erase_shift + 2);
964 /* Allocate memory (2bit per block) */
David Woodhousee0c7d762006-05-13 18:07:53 +0100965 this->bbt = kmalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!this->bbt) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100967 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return -ENOMEM;
969 }
970 /* Clear the memory bad block table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100971 memset(this->bbt, 0x00, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /* If no primary table decriptor is given, scan the device
974 * to build a memory based bad block table
975 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000976 if (!td) {
977 if ((res = nand_memory_bbt(mtd, bd))) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100978 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
979 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000980 this->bbt = NULL;
981 }
982 return res;
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 /* Allocate a temporary buffer for one eraseblock incl. oob */
986 len = (1 << this->bbt_erase_shift);
987 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +0100988 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100990 printk(KERN_ERR "nand_bbt: Out of memory\n");
991 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 this->bbt = NULL;
993 return -ENOMEM;
994 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /* Is the bbt at a given page ? */
997 if (td->options & NAND_BBT_ABSPAGE) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100998 res = read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000999 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /* Search the bad block table using a pattern in oob */
David Woodhousee0c7d762006-05-13 18:07:53 +01001001 res = search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001004 if (res)
David Woodhousee0c7d762006-05-13 18:07:53 +01001005 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001008 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001010 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001011
David Woodhousee0c7d762006-05-13 18:07:53 +01001012 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return res;
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001017 * nand_update_bbt - [NAND Interface] update bad block table(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * @mtd: MTD device structure
1019 * @offs: the offset of the newly marked block
1020 *
1021 * The function updates the bad block table(s)
1022*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001023int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 struct nand_chip *this = mtd->priv;
1026 int len, res = 0, writeops = 0;
1027 int chip, chipsel;
1028 uint8_t *buf;
1029 struct nand_bbt_descr *td = this->bbt_td;
1030 struct nand_bbt_descr *md = this->bbt_md;
1031
1032 if (!this->bbt || !td)
1033 return -EINVAL;
1034
1035 len = mtd->size >> (this->bbt_erase_shift + 2);
1036 /* Allocate a temporary buffer for one eraseblock incl. oob */
1037 len = (1 << this->bbt_erase_shift);
1038 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001039 buf = kmalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001041 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return -ENOMEM;
1043 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 writeops = md != NULL ? 0x03 : 0x01;
1046
1047 /* Do we have a bbt per chip ? */
1048 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001049 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 chipsel = chip;
1051 } else {
1052 chip = 0;
1053 chipsel = -1;
1054 }
1055
1056 td->version[chip]++;
1057 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001058 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 /* Write the bad block table to the device ? */
1061 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001062 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (res < 0)
1064 goto out;
1065 }
1066 /* Write the mirror bad block table to the device ? */
1067 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001068 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
David Woodhousee0c7d762006-05-13 18:07:53 +01001071 out:
1072 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return res;
1074}
1075
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001076/* Define some generic bad / good block scan pattern which are used
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +00001077 * while scanning a device for factory marked good / bad blocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1079
1080static struct nand_bbt_descr smallpage_memorybased = {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +00001081 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 .offs = 5,
1083 .len = 1,
1084 .pattern = scan_ff_pattern
1085};
1086
1087static struct nand_bbt_descr largepage_memorybased = {
1088 .options = 0,
1089 .offs = 0,
1090 .len = 2,
1091 .pattern = scan_ff_pattern
1092};
1093
1094static struct nand_bbt_descr smallpage_flashbased = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001095 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .offs = 5,
1097 .len = 1,
1098 .pattern = scan_ff_pattern
1099};
1100
1101static struct nand_bbt_descr largepage_flashbased = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001102 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .offs = 0,
1104 .len = 2,
1105 .pattern = scan_ff_pattern
1106};
1107
1108static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1109
1110static struct nand_bbt_descr agand_flashbased = {
1111 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1112 .offs = 0x20,
1113 .len = 6,
1114 .pattern = scan_agand_pattern
1115};
1116
1117/* Generic flash bbt decriptors
1118*/
1119static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1120static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1121
1122static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001123 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1125 .offs = 8,
1126 .len = 4,
1127 .veroffs = 12,
1128 .maxblocks = 4,
1129 .pattern = bbt_pattern
1130};
1131
1132static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001133 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1135 .offs = 8,
1136 .len = 4,
1137 .veroffs = 12,
1138 .maxblocks = 4,
1139 .pattern = mirror_pattern
1140};
1141
1142/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001143 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * @mtd: MTD device structure
1145 *
1146 * This function selects the default bad block table
1147 * support for the device and calls the nand_scan_bbt function
1148 *
1149*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001150int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001153
1154 /* Default for AG-AND. We must use a flash based
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * bad block table as the devices have factory marked
1156 * _good_ blocks. Erasing those blocks leads to loss
1157 * of the good / bad information, so we _must_ store
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001158 * this information in a good / bad table during
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 * startup
David Woodhousee0c7d762006-05-13 18:07:53 +01001160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (this->options & NAND_IS_AND) {
1162 /* Use the default pattern descriptors */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001163 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 this->bbt_td = &bbt_main_descr;
1165 this->bbt_md = &bbt_mirror_descr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 this->options |= NAND_USE_FLASH_BBT;
David Woodhousee0c7d762006-05-13 18:07:53 +01001168 return nand_scan_bbt(mtd, &agand_flashbased);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 /* Is a flash based bad block table requested ? */
1172 if (this->options & NAND_USE_FLASH_BBT) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001173 /* Use the default pattern descriptors */
1174 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 this->bbt_td = &bbt_main_descr;
1176 this->bbt_md = &bbt_mirror_descr;
1177 }
1178 if (!this->badblock_pattern) {
Joern Engel28318772006-05-22 23:18:05 +02001179 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181 } else {
1182 this->bbt_td = NULL;
1183 this->bbt_md = NULL;
1184 if (!this->badblock_pattern) {
Joern Engel28318772006-05-22 23:18:05 +02001185 this->badblock_pattern = (mtd->writesize > 512) ?
David Woodhousee0c7d762006-05-13 18:07:53 +01001186 &largepage_memorybased : &smallpage_memorybased;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 }
David Woodhousee0c7d762006-05-13 18:07:53 +01001189 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001193 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * @mtd: MTD device structure
1195 * @offs: offset in the device
1196 * @allowbbt: allow access to bad block table region
1197 *
1198*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001199int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct nand_chip *this = mtd->priv;
1202 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001203 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001206 block = (int)(offs >> (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1208
David Woodhousee0c7d762006-05-13 18:07:53 +01001209 DEBUG(MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1210 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 switch ((int)res) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001213 case 0x00:
1214 return 0;
1215 case 0x01:
1216 return 1;
1217 case 0x02:
1218 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 return 1;
1221}
1222
David Woodhousee0c7d762006-05-13 18:07:53 +01001223EXPORT_SYMBOL(nand_scan_bbt);
1224EXPORT_SYMBOL(nand_default_bbt);