The discovered bit in PGCCSR register indicates if the device has been
[linux-2.6/next.git] / drivers / mtd / nand / nand_bbt.c
blob93a4eeea551e99da204d99282796c5f81b3ef579
1 /*
2 * drivers/mtd/nand_bbt.c
4 * Overview:
5 * Bad block table support for the NAND driver
7 * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de)
9 * 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.
13 * Description:
15 * When nand_scan_bbt is called, then it tries to find the bad block table
16 * depending on the options in the BBT descriptor(s). If no flash based BBT
17 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
18 * 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.
26 * If the tables are not versioned, then we "or" the bad block information.
27 * 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
29 * good / bad blocks and the bad block tables are created.
31 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
34 * The auto generated bad block table is located in the last good blocks
35 * of the device. The table is mirrored, so it can be updated eventually.
36 * 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
39 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
40 * course): it moves the ident pattern and the version byte into the data area
41 * and the OOB area will remain untouched.
43 * The table uses 2 bits per block
44 * 11b: block is good
45 * 00b: block is factory marked bad
46 * 01b, 10b: block is marked bad due to wear
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
54 * Multichip devices like DOC store the bad block info per floor.
56 * Following assumptions are made:
57 * - bbts start at a page boundary, if autolocated on a block boundary
58 * - the space necessary for a bbt in FLASH does not exceed a block boundary
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>
67 #include <linux/bitops.h>
68 #include <linux/delay.h>
69 #include <linux/vmalloc.h>
70 #include <linux/export.h>
72 static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
74 int ret;
76 ret = memcmp(buf, td->pattern, td->len);
77 if (!ret)
78 return ret;
79 return -1;
82 /**
83 * check_pattern - [GENERIC] check if a pattern is in the buffer
84 * @buf: the buffer to search
85 * @len: the length of buffer to search
86 * @paglen: the pagelength
87 * @td: search pattern descriptor
89 * Check for a pattern at the given place. Used to search bad block tables and
90 * good / bad block identifiers. If the SCAN_EMPTY option is set then check, if
91 * all bytes except the pattern area contain 0xff.
93 static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
95 int i, end = 0;
96 uint8_t *p = buf;
98 if (td->options & NAND_BBT_NO_OOB)
99 return check_pattern_no_oob(buf, td);
101 end = paglen + td->offs;
102 if (td->options & NAND_BBT_SCANEMPTY) {
103 for (i = 0; i < end; i++) {
104 if (p[i] != 0xff)
105 return -1;
108 p += end;
110 /* Compare the pattern */
111 for (i = 0; i < td->len; i++) {
112 if (p[i] != td->pattern[i])
113 return -1;
116 if (td->options & NAND_BBT_SCANEMPTY) {
117 p += td->len;
118 end += td->len;
119 for (i = end; i < len; i++) {
120 if (*p++ != 0xff)
121 return -1;
124 return 0;
128 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
129 * @buf: the buffer to search
130 * @td: search pattern descriptor
132 * Check for a pattern at the given place. Used to search bad block tables and
133 * good / bad block identifiers. Same as check_pattern, but no optional empty
134 * check.
136 static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
138 int i;
139 uint8_t *p = buf;
141 /* Compare the pattern */
142 for (i = 0; i < td->len; i++) {
143 if (p[td->offs + i] != td->pattern[i])
144 return -1;
146 return 0;
150 * add_marker_len - compute the length of the marker in data area
151 * @td: BBT descriptor used for computation
153 * The length will be 0 if the marker is located in OOB area.
155 static u32 add_marker_len(struct nand_bbt_descr *td)
157 u32 len;
159 if (!(td->options & NAND_BBT_NO_OOB))
160 return 0;
162 len = td->len;
163 if (td->options & NAND_BBT_VERSION)
164 len++;
165 return len;
169 * read_bbt - [GENERIC] Read the bad block table starting from page
170 * @mtd: MTD device structure
171 * @buf: temporary buffer
172 * @page: the starting page
173 * @num: the number of bbt descriptors to read
174 * @td: the bbt describtion table
175 * @offs: offset in the memory table
177 * Read the bad block table starting from page.
179 static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
180 struct nand_bbt_descr *td, int offs)
182 int res, i, j, act = 0;
183 struct nand_chip *this = mtd->priv;
184 size_t retlen, len, totlen;
185 loff_t from;
186 int bits = td->options & NAND_BBT_NRBITS_MSK;
187 uint8_t msk = (uint8_t) ((1 << bits) - 1);
188 u32 marker_len;
189 int reserved_block_code = td->reserved_block_code;
191 totlen = (num * bits) >> 3;
192 marker_len = add_marker_len(td);
193 from = ((loff_t) page) << this->page_shift;
195 while (totlen) {
196 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
197 if (marker_len) {
199 * In case the BBT marker is not in the OOB area it
200 * will be just in the first page.
202 len -= marker_len;
203 from += marker_len;
204 marker_len = 0;
206 res = mtd->read(mtd, from, len, &retlen, buf);
207 if (res < 0) {
208 if (retlen != len) {
209 pr_info("nand_bbt: error reading bad block table\n");
210 return res;
212 pr_warn("nand_bbt: ECC error while reading bad block table\n");
215 /* Analyse data */
216 for (i = 0; i < len; i++) {
217 uint8_t dat = buf[i];
218 for (j = 0; j < 8; j += bits, act += 2) {
219 uint8_t tmp = (dat >> j) & msk;
220 if (tmp == msk)
221 continue;
222 if (reserved_block_code && (tmp == reserved_block_code)) {
223 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
224 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
225 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
226 mtd->ecc_stats.bbtblocks++;
227 continue;
230 * Leave it for now, if it's matured we can
231 * move this message to pr_debug.
233 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
234 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
235 /* Factory marked bad or worn out? */
236 if (tmp == 0)
237 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
238 else
239 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
240 mtd->ecc_stats.badblocks++;
243 totlen -= len;
244 from += len;
246 return 0;
250 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
251 * @mtd: MTD device structure
252 * @buf: temporary buffer
253 * @td: descriptor for the bad block table
254 * @chip: read the table for a specific chip, -1 read all chips; aplies only if
255 * NAND_BBT_PERCHIP option is set
257 * Read the bad block table for all chips starting at a given page. We assume
258 * that the bbt bits are in consecutive order.
260 static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
262 struct nand_chip *this = mtd->priv;
263 int res = 0, i;
265 if (td->options & NAND_BBT_PERCHIP) {
266 int offs = 0;
267 for (i = 0; i < this->numchips; i++) {
268 if (chip == -1 || chip == i)
269 res = read_bbt(mtd, buf, td->pages[i],
270 this->chipsize >> this->bbt_erase_shift,
271 td, offs);
272 if (res)
273 return res;
274 offs += this->chipsize >> (this->bbt_erase_shift + 2);
276 } else {
277 res = read_bbt(mtd, buf, td->pages[0],
278 mtd->size >> this->bbt_erase_shift, td, 0);
279 if (res)
280 return res;
282 return 0;
285 /* BBT marker is in the first page, no OOB */
286 static int scan_read_raw_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
287 struct nand_bbt_descr *td)
289 size_t retlen;
290 size_t len;
292 len = td->len;
293 if (td->options & NAND_BBT_VERSION)
294 len++;
296 return mtd->read(mtd, offs, len, &retlen, buf);
299 /* Scan read raw data from flash */
300 static int scan_read_raw_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
301 size_t len)
303 struct mtd_oob_ops ops;
304 int res;
306 ops.mode = MTD_OOB_RAW;
307 ops.ooboffs = 0;
308 ops.ooblen = mtd->oobsize;
311 while (len > 0) {
312 if (len <= mtd->writesize) {
313 ops.oobbuf = buf + len;
314 ops.datbuf = buf;
315 ops.len = len;
316 res = mtd->read_oob(mtd, offs, &ops);
318 /* Ignore ECC errors when checking for BBM */
319 if (res != -EUCLEAN && res != -EBADMSG)
320 return res;
321 return 0;
322 } else {
323 ops.oobbuf = buf + mtd->writesize;
324 ops.datbuf = buf;
325 ops.len = mtd->writesize;
326 res = mtd->read_oob(mtd, offs, &ops);
328 /* Ignore ECC errors when checking for BBM */
329 if (res && res != -EUCLEAN && res != -EBADMSG)
330 return res;
333 buf += mtd->oobsize + mtd->writesize;
334 len -= mtd->writesize;
336 return 0;
339 static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
340 size_t len, struct nand_bbt_descr *td)
342 if (td->options & NAND_BBT_NO_OOB)
343 return scan_read_raw_data(mtd, buf, offs, td);
344 else
345 return scan_read_raw_oob(mtd, buf, offs, len);
348 /* Scan write data with oob to flash */
349 static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
350 uint8_t *buf, uint8_t *oob)
352 struct mtd_oob_ops ops;
354 ops.mode = MTD_OOB_PLACE;
355 ops.ooboffs = 0;
356 ops.ooblen = mtd->oobsize;
357 ops.datbuf = buf;
358 ops.oobbuf = oob;
359 ops.len = len;
361 return mtd->write_oob(mtd, offs, &ops);
364 static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
366 u32 ver_offs = td->veroffs;
368 if (!(td->options & NAND_BBT_NO_OOB))
369 ver_offs += mtd->writesize;
370 return ver_offs;
374 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
375 * @mtd: MTD device structure
376 * @buf: temporary buffer
377 * @td: descriptor for the bad block table
378 * @md: descriptor for the bad block table mirror
380 * Read the bad block table(s) for all chips starting at a given page. We
381 * assume that the bbt bits are in consecutive order.
383 static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
384 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
386 struct nand_chip *this = mtd->priv;
388 /* Read the primary version, if available */
389 if (td->options & NAND_BBT_VERSION) {
390 scan_read_raw(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
391 mtd->writesize, td);
392 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
393 pr_info("Bad block table at page %d, version 0x%02X\n",
394 td->pages[0], td->version[0]);
397 /* Read the mirror version, if available */
398 if (md && (md->options & NAND_BBT_VERSION)) {
399 scan_read_raw(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
400 mtd->writesize, td);
401 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
402 pr_info("Bad block table at page %d, version 0x%02X\n",
403 md->pages[0], md->version[0]);
405 return 1;
408 /* Scan a given block full */
409 static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
410 loff_t offs, uint8_t *buf, size_t readlen,
411 int scanlen, int len)
413 int ret, j;
415 ret = scan_read_raw_oob(mtd, buf, offs, readlen);
416 if (ret)
417 return ret;
419 for (j = 0; j < len; j++, buf += scanlen) {
420 if (check_pattern(buf, scanlen, mtd->writesize, bd))
421 return 1;
423 return 0;
426 /* Scan a given block partially */
427 static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
428 loff_t offs, uint8_t *buf, int len)
430 struct mtd_oob_ops ops;
431 int j, ret;
433 ops.ooblen = mtd->oobsize;
434 ops.oobbuf = buf;
435 ops.ooboffs = 0;
436 ops.datbuf = NULL;
437 ops.mode = MTD_OOB_PLACE;
439 for (j = 0; j < len; j++) {
441 * Read the full oob until read_oob is fixed to handle single
442 * byte reads for 16 bit buswidth.
444 ret = mtd->read_oob(mtd, offs, &ops);
445 /* Ignore ECC errors when checking for BBM */
446 if (ret && ret != -EUCLEAN && ret != -EBADMSG)
447 return ret;
449 if (check_short_pattern(buf, bd))
450 return 1;
452 offs += mtd->writesize;
454 return 0;
458 * create_bbt - [GENERIC] Create a bad block table by scanning the device
459 * @mtd: MTD device structure
460 * @buf: temporary buffer
461 * @bd: descriptor for the good/bad block search pattern
462 * @chip: create the table for a specific chip, -1 read all chips; applies only
463 * if NAND_BBT_PERCHIP option is set
465 * Create a bad block table by scanning the device for the given good/bad block
466 * identify pattern.
468 static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
469 struct nand_bbt_descr *bd, int chip)
471 struct nand_chip *this = mtd->priv;
472 int i, numblocks, len, scanlen;
473 int startblock;
474 loff_t from;
475 size_t readlen;
477 pr_info("Scanning device for bad blocks\n");
479 if (bd->options & NAND_BBT_SCANALLPAGES)
480 len = 1 << (this->bbt_erase_shift - this->page_shift);
481 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
482 len = 2;
483 else
484 len = 1;
486 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
487 /* We need only read few bytes from the OOB area */
488 scanlen = 0;
489 readlen = bd->len;
490 } else {
491 /* Full page content should be read */
492 scanlen = mtd->writesize + mtd->oobsize;
493 readlen = len * mtd->writesize;
496 if (chip == -1) {
498 * Note that numblocks is 2 * (real numblocks) here, see i+=2
499 * below as it makes shifting and masking less painful
501 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
502 startblock = 0;
503 from = 0;
504 } else {
505 if (chip >= this->numchips) {
506 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
507 chip + 1, this->numchips);
508 return -EINVAL;
510 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
511 startblock = chip * numblocks;
512 numblocks += startblock;
513 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
516 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
517 from += mtd->erasesize - (mtd->writesize * len);
519 for (i = startblock; i < numblocks;) {
520 int ret;
522 BUG_ON(bd->options & NAND_BBT_NO_OOB);
524 if (bd->options & NAND_BBT_SCANALLPAGES)
525 ret = scan_block_full(mtd, bd, from, buf, readlen,
526 scanlen, len);
527 else
528 ret = scan_block_fast(mtd, bd, from, buf, len);
530 if (ret < 0)
531 return ret;
533 if (ret) {
534 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
535 pr_warn("Bad eraseblock %d at 0x%012llx\n",
536 i >> 1, (unsigned long long)from);
537 mtd->ecc_stats.badblocks++;
540 i += 2;
541 from += (1 << this->bbt_erase_shift);
543 return 0;
547 * search_bbt - [GENERIC] scan the device for a specific bad block table
548 * @mtd: MTD device structure
549 * @buf: temporary buffer
550 * @td: descriptor for the bad block table
552 * Read the bad block table by searching for a given ident pattern. Search is
553 * preformed either from the beginning up or from the end of the device
554 * downwards. The search starts always at the start of a block. If the option
555 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
556 * the bad block information of this chip. This is necessary to provide support
557 * for certain DOC devices.
559 * The bbt ident pattern resides in the oob area of the first page in a block.
561 static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
563 struct nand_chip *this = mtd->priv;
564 int i, chips;
565 int bits, startblock, block, dir;
566 int scanlen = mtd->writesize + mtd->oobsize;
567 int bbtblocks;
568 int blocktopage = this->bbt_erase_shift - this->page_shift;
570 /* Search direction top -> down? */
571 if (td->options & NAND_BBT_LASTBLOCK) {
572 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
573 dir = -1;
574 } else {
575 startblock = 0;
576 dir = 1;
579 /* Do we have a bbt per chip? */
580 if (td->options & NAND_BBT_PERCHIP) {
581 chips = this->numchips;
582 bbtblocks = this->chipsize >> this->bbt_erase_shift;
583 startblock &= bbtblocks - 1;
584 } else {
585 chips = 1;
586 bbtblocks = mtd->size >> this->bbt_erase_shift;
589 /* Number of bits for each erase block in the bbt */
590 bits = td->options & NAND_BBT_NRBITS_MSK;
592 for (i = 0; i < chips; i++) {
593 /* Reset version information */
594 td->version[i] = 0;
595 td->pages[i] = -1;
596 /* Scan the maximum number of blocks */
597 for (block = 0; block < td->maxblocks; block++) {
599 int actblock = startblock + dir * block;
600 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
602 /* Read first page */
603 scan_read_raw(mtd, buf, offs, mtd->writesize, td);
604 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
605 td->pages[i] = actblock << blocktopage;
606 if (td->options & NAND_BBT_VERSION) {
607 offs = bbt_get_ver_offs(mtd, td);
608 td->version[i] = buf[offs];
610 break;
613 startblock += this->chipsize >> this->bbt_erase_shift;
615 /* Check, if we found a bbt for each requested chip */
616 for (i = 0; i < chips; i++) {
617 if (td->pages[i] == -1)
618 pr_warn("Bad block table not found for chip %d\n", i);
619 else
620 pr_info("Bad block table found at page %d, version "
621 "0x%02X\n", td->pages[i], td->version[i]);
623 return 0;
627 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
628 * @mtd: MTD device structure
629 * @buf: temporary buffer
630 * @td: descriptor for the bad block table
631 * @md: descriptor for the bad block table mirror
633 * Search and read the bad block table(s).
635 static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md)
637 /* Search the primary table */
638 search_bbt(mtd, buf, td);
640 /* Search the mirror table */
641 if (md)
642 search_bbt(mtd, buf, md);
644 /* Force result check */
645 return 1;
649 * write_bbt - [GENERIC] (Re)write the bad block table
650 * @mtd: MTD device structure
651 * @buf: temporary buffer
652 * @td: descriptor for the bad block table
653 * @md: descriptor for the bad block table mirror
654 * @chipsel: selector for a specific chip, -1 for all
656 * (Re)write the bad block table.
658 static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
659 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
660 int chipsel)
662 struct nand_chip *this = mtd->priv;
663 struct erase_info einfo;
664 int i, j, res, chip = 0;
665 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
666 int nrchips, bbtoffs, pageoffs, ooboffs;
667 uint8_t msk[4];
668 uint8_t rcode = td->reserved_block_code;
669 size_t retlen, len = 0;
670 loff_t to;
671 struct mtd_oob_ops ops;
673 ops.ooblen = mtd->oobsize;
674 ops.ooboffs = 0;
675 ops.datbuf = NULL;
676 ops.mode = MTD_OOB_PLACE;
678 if (!rcode)
679 rcode = 0xff;
680 /* Write bad block table per chip rather than per device? */
681 if (td->options & NAND_BBT_PERCHIP) {
682 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
683 /* Full device write or specific chip? */
684 if (chipsel == -1) {
685 nrchips = this->numchips;
686 } else {
687 nrchips = chipsel + 1;
688 chip = chipsel;
690 } else {
691 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
692 nrchips = 1;
695 /* Loop through the chips */
696 for (; chip < nrchips; chip++) {
698 * There was already a version of the table, reuse the page
699 * This applies for absolute placement too, as we have the
700 * page nr. in td->pages.
702 if (td->pages[chip] != -1) {
703 page = td->pages[chip];
704 goto write;
708 * Automatic placement of the bad block table. Search direction
709 * top -> down?
711 if (td->options & NAND_BBT_LASTBLOCK) {
712 startblock = numblocks * (chip + 1) - 1;
713 dir = -1;
714 } else {
715 startblock = chip * numblocks;
716 dir = 1;
719 for (i = 0; i < td->maxblocks; i++) {
720 int block = startblock + dir * i;
721 /* Check, if the block is bad */
722 switch ((this->bbt[block >> 2] >>
723 (2 * (block & 0x03))) & 0x03) {
724 case 0x01:
725 case 0x03:
726 continue;
728 page = block <<
729 (this->bbt_erase_shift - this->page_shift);
730 /* Check, if the block is used by the mirror table */
731 if (!md || md->pages[chip] != page)
732 goto write;
734 pr_err("No space left to write bad block table\n");
735 return -ENOSPC;
736 write:
738 /* Set up shift count and masks for the flash table */
739 bits = td->options & NAND_BBT_NRBITS_MSK;
740 msk[2] = ~rcode;
741 switch (bits) {
742 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
743 msk[3] = 0x01;
744 break;
745 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
746 msk[3] = 0x03;
747 break;
748 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
749 msk[3] = 0x0f;
750 break;
751 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
752 msk[3] = 0xff;
753 break;
754 default: return -EINVAL;
757 bbtoffs = chip * (numblocks >> 2);
759 to = ((loff_t) page) << this->page_shift;
761 /* Must we save the block contents? */
762 if (td->options & NAND_BBT_SAVECONTENT) {
763 /* Make it block aligned */
764 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
765 len = 1 << this->bbt_erase_shift;
766 res = mtd->read(mtd, to, len, &retlen, buf);
767 if (res < 0) {
768 if (retlen != len) {
769 pr_info("nand_bbt: error reading block "
770 "for writing the bad block table\n");
771 return res;
773 pr_warn("nand_bbt: ECC error while reading "
774 "block for writing bad block table\n");
776 /* Read oob data */
777 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
778 ops.oobbuf = &buf[len];
779 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
780 if (res < 0 || ops.oobretlen != ops.ooblen)
781 goto outerr;
783 /* Calc the byte offset in the buffer */
784 pageoffs = page - (int)(to >> this->page_shift);
785 offs = pageoffs << this->page_shift;
786 /* Preset the bbt area with 0xff */
787 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
788 ooboffs = len + (pageoffs * mtd->oobsize);
790 } else if (td->options & NAND_BBT_NO_OOB) {
791 ooboffs = 0;
792 offs = td->len;
793 /* The version byte */
794 if (td->options & NAND_BBT_VERSION)
795 offs++;
796 /* Calc length */
797 len = (size_t) (numblocks >> sft);
798 len += offs;
799 /* Make it page aligned! */
800 len = ALIGN(len, mtd->writesize);
801 /* Preset the buffer with 0xff */
802 memset(buf, 0xff, len);
803 /* Pattern is located at the begin of first page */
804 memcpy(buf, td->pattern, td->len);
805 } else {
806 /* Calc length */
807 len = (size_t) (numblocks >> sft);
808 /* Make it page aligned! */
809 len = ALIGN(len, mtd->writesize);
810 /* Preset the buffer with 0xff */
811 memset(buf, 0xff, len +
812 (len >> this->page_shift)* mtd->oobsize);
813 offs = 0;
814 ooboffs = len;
815 /* Pattern is located in oob area of first page */
816 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
819 if (td->options & NAND_BBT_VERSION)
820 buf[ooboffs + td->veroffs] = td->version[chip];
822 /* Walk through the memory table */
823 for (i = 0; i < numblocks;) {
824 uint8_t dat;
825 dat = this->bbt[bbtoffs + (i >> 2)];
826 for (j = 0; j < 4; j++, i++) {
827 int sftcnt = (i << (3 - sft)) & sftmsk;
828 /* Do not store the reserved bbt blocks! */
829 buf[offs + (i >> sft)] &=
830 ~(msk[dat & 0x03] << sftcnt);
831 dat >>= 2;
835 memset(&einfo, 0, sizeof(einfo));
836 einfo.mtd = mtd;
837 einfo.addr = to;
838 einfo.len = 1 << this->bbt_erase_shift;
839 res = nand_erase_nand(mtd, &einfo, 1);
840 if (res < 0)
841 goto outerr;
843 res = scan_write_bbt(mtd, to, len, buf,
844 td->options & NAND_BBT_NO_OOB ? NULL :
845 &buf[len]);
846 if (res < 0)
847 goto outerr;
849 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
850 (unsigned long long)to, td->version[chip]);
852 /* Mark it as used */
853 td->pages[chip] = page;
855 return 0;
857 outerr:
858 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
859 return res;
863 * nand_memory_bbt - [GENERIC] create a memory based bad block table
864 * @mtd: MTD device structure
865 * @bd: descriptor for the good/bad block search pattern
867 * The function creates a memory based bbt by scanning the device for
868 * manufacturer / software marked good / bad blocks.
870 static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
872 struct nand_chip *this = mtd->priv;
874 bd->options &= ~NAND_BBT_SCANEMPTY;
875 return create_bbt(mtd, this->buffers->databuf, bd, -1);
879 * check_create - [GENERIC] create and write bbt(s) if necessary
880 * @mtd: MTD device structure
881 * @buf: temporary buffer
882 * @bd: descriptor for the good/bad block search pattern
884 * The function checks the results of the previous call to read_bbt and creates
885 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
886 * for the chip/device. Update is necessary if one of the tables is missing or
887 * the version nr. of one table is less than the other.
889 static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
891 int i, chips, writeops, chipsel, res;
892 struct nand_chip *this = mtd->priv;
893 struct nand_bbt_descr *td = this->bbt_td;
894 struct nand_bbt_descr *md = this->bbt_md;
895 struct nand_bbt_descr *rd, *rd2;
897 /* Do we have a bbt per chip? */
898 if (td->options & NAND_BBT_PERCHIP)
899 chips = this->numchips;
900 else
901 chips = 1;
903 for (i = 0; i < chips; i++) {
904 writeops = 0;
905 rd = NULL;
906 rd2 = NULL;
907 /* Per chip or per device? */
908 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
909 /* Mirrored table available? */
910 if (md) {
911 if (td->pages[i] == -1 && md->pages[i] == -1) {
912 writeops = 0x03;
913 goto create;
916 if (td->pages[i] == -1) {
917 rd = md;
918 td->version[i] = md->version[i];
919 writeops = 1;
920 goto writecheck;
923 if (md->pages[i] == -1) {
924 rd = td;
925 md->version[i] = td->version[i];
926 writeops = 2;
927 goto writecheck;
930 if (td->version[i] == md->version[i]) {
931 rd = td;
932 if (!(td->options & NAND_BBT_VERSION))
933 rd2 = md;
934 goto writecheck;
937 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
938 rd = td;
939 md->version[i] = td->version[i];
940 writeops = 2;
941 } else {
942 rd = md;
943 td->version[i] = md->version[i];
944 writeops = 1;
947 goto writecheck;
949 } else {
950 if (td->pages[i] == -1) {
951 writeops = 0x01;
952 goto create;
954 rd = td;
955 goto writecheck;
957 create:
958 /* Create the bad block table by scanning the device? */
959 if (!(td->options & NAND_BBT_CREATE))
960 continue;
962 /* Create the table in memory by scanning the chip(s) */
963 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
964 create_bbt(mtd, buf, bd, chipsel);
966 td->version[i] = 1;
967 if (md)
968 md->version[i] = 1;
969 writecheck:
970 /* Read back first? */
971 if (rd)
972 read_abs_bbt(mtd, buf, rd, chipsel);
973 /* If they weren't versioned, read both */
974 if (rd2)
975 read_abs_bbt(mtd, buf, rd2, chipsel);
977 /* Write the bad block table to the device? */
978 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
979 res = write_bbt(mtd, buf, td, md, chipsel);
980 if (res < 0)
981 return res;
984 /* Write the mirror bad block table to the device? */
985 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
986 res = write_bbt(mtd, buf, md, td, chipsel);
987 if (res < 0)
988 return res;
991 return 0;
995 * mark_bbt_regions - [GENERIC] mark the bad block table regions
996 * @mtd: MTD device structure
997 * @td: bad block table descriptor
999 * The bad block table regions are marked as "bad" to prevent accidental
1000 * erasures / writes. The regions are identified by the mark 0x02.
1002 static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
1004 struct nand_chip *this = mtd->priv;
1005 int i, j, chips, block, nrblocks, update;
1006 uint8_t oldval, newval;
1008 /* Do we have a bbt per chip? */
1009 if (td->options & NAND_BBT_PERCHIP) {
1010 chips = this->numchips;
1011 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1012 } else {
1013 chips = 1;
1014 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
1017 for (i = 0; i < chips; i++) {
1018 if ((td->options & NAND_BBT_ABSPAGE) ||
1019 !(td->options & NAND_BBT_WRITE)) {
1020 if (td->pages[i] == -1)
1021 continue;
1022 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
1023 block <<= 1;
1024 oldval = this->bbt[(block >> 3)];
1025 newval = oldval | (0x2 << (block & 0x06));
1026 this->bbt[(block >> 3)] = newval;
1027 if ((oldval != newval) && td->reserved_block_code)
1028 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
1029 continue;
1031 update = 0;
1032 if (td->options & NAND_BBT_LASTBLOCK)
1033 block = ((i + 1) * nrblocks) - td->maxblocks;
1034 else
1035 block = i * nrblocks;
1036 block <<= 1;
1037 for (j = 0; j < td->maxblocks; j++) {
1038 oldval = this->bbt[(block >> 3)];
1039 newval = oldval | (0x2 << (block & 0x06));
1040 this->bbt[(block >> 3)] = newval;
1041 if (oldval != newval)
1042 update = 1;
1043 block += 2;
1046 * If we want reserved blocks to be recorded to flash, and some
1047 * new ones have been marked, then we need to update the stored
1048 * bbts. This should only happen once.
1050 if (update && td->reserved_block_code)
1051 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
1056 * verify_bbt_descr - verify the bad block description
1057 * @mtd: MTD device structure
1058 * @bd: the table to verify
1060 * This functions performs a few sanity checks on the bad block description
1061 * table.
1063 static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1065 struct nand_chip *this = mtd->priv;
1066 u32 pattern_len;
1067 u32 bits;
1068 u32 table_size;
1070 if (!bd)
1071 return;
1073 pattern_len = bd->len;
1074 bits = bd->options & NAND_BBT_NRBITS_MSK;
1076 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1077 !(this->bbt_options & NAND_BBT_USE_FLASH));
1078 BUG_ON(!bits);
1080 if (bd->options & NAND_BBT_VERSION)
1081 pattern_len++;
1083 if (bd->options & NAND_BBT_NO_OOB) {
1084 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1085 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
1086 BUG_ON(bd->offs);
1087 if (bd->options & NAND_BBT_VERSION)
1088 BUG_ON(bd->veroffs != bd->len);
1089 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1092 if (bd->options & NAND_BBT_PERCHIP)
1093 table_size = this->chipsize >> this->bbt_erase_shift;
1094 else
1095 table_size = mtd->size >> this->bbt_erase_shift;
1096 table_size >>= 3;
1097 table_size *= bits;
1098 if (bd->options & NAND_BBT_NO_OOB)
1099 table_size += pattern_len;
1100 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1104 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
1105 * @mtd: MTD device structure
1106 * @bd: descriptor for the good/bad block search pattern
1108 * The function checks, if a bad block table(s) is/are already available. If
1109 * not it scans the device for manufacturer marked good / bad blocks and writes
1110 * the bad block table(s) to the selected place.
1112 * The bad block table memory is allocated here. It must be freed by calling
1113 * the nand_free_bbt function.
1115 int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1117 struct nand_chip *this = mtd->priv;
1118 int len, res = 0;
1119 uint8_t *buf;
1120 struct nand_bbt_descr *td = this->bbt_td;
1121 struct nand_bbt_descr *md = this->bbt_md;
1123 len = mtd->size >> (this->bbt_erase_shift + 2);
1125 * Allocate memory (2bit per block) and clear the memory bad block
1126 * table.
1128 this->bbt = kzalloc(len, GFP_KERNEL);
1129 if (!this->bbt)
1130 return -ENOMEM;
1133 * If no primary table decriptor is given, scan the device to build a
1134 * memory based bad block table.
1136 if (!td) {
1137 if ((res = nand_memory_bbt(mtd, bd))) {
1138 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
1139 kfree(this->bbt);
1140 this->bbt = NULL;
1142 return res;
1144 verify_bbt_descr(mtd, td);
1145 verify_bbt_descr(mtd, md);
1147 /* Allocate a temporary buffer for one eraseblock incl. oob */
1148 len = (1 << this->bbt_erase_shift);
1149 len += (len >> this->page_shift) * mtd->oobsize;
1150 buf = vmalloc(len);
1151 if (!buf) {
1152 kfree(this->bbt);
1153 this->bbt = NULL;
1154 return -ENOMEM;
1157 /* Is the bbt at a given page? */
1158 if (td->options & NAND_BBT_ABSPAGE) {
1159 res = read_abs_bbts(mtd, buf, td, md);
1160 } else {
1161 /* Search the bad block table using a pattern in oob */
1162 res = search_read_bbts(mtd, buf, td, md);
1165 if (res)
1166 res = check_create(mtd, buf, bd);
1168 /* Prevent the bbt regions from erasing / writing */
1169 mark_bbt_region(mtd, td);
1170 if (md)
1171 mark_bbt_region(mtd, md);
1173 vfree(buf);
1174 return res;
1178 * nand_update_bbt - [NAND Interface] update bad block table(s)
1179 * @mtd: MTD device structure
1180 * @offs: the offset of the newly marked block
1182 * The function updates the bad block table(s).
1184 int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
1186 struct nand_chip *this = mtd->priv;
1187 int len, res = 0, writeops = 0;
1188 int chip, chipsel;
1189 uint8_t *buf;
1190 struct nand_bbt_descr *td = this->bbt_td;
1191 struct nand_bbt_descr *md = this->bbt_md;
1193 if (!this->bbt || !td)
1194 return -EINVAL;
1196 /* Allocate a temporary buffer for one eraseblock incl. oob */
1197 len = (1 << this->bbt_erase_shift);
1198 len += (len >> this->page_shift) * mtd->oobsize;
1199 buf = kmalloc(len, GFP_KERNEL);
1200 if (!buf)
1201 return -ENOMEM;
1203 writeops = md != NULL ? 0x03 : 0x01;
1205 /* Do we have a bbt per chip? */
1206 if (td->options & NAND_BBT_PERCHIP) {
1207 chip = (int)(offs >> this->chip_shift);
1208 chipsel = chip;
1209 } else {
1210 chip = 0;
1211 chipsel = -1;
1214 td->version[chip]++;
1215 if (md)
1216 md->version[chip]++;
1218 /* Write the bad block table to the device? */
1219 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
1220 res = write_bbt(mtd, buf, td, md, chipsel);
1221 if (res < 0)
1222 goto out;
1224 /* Write the mirror bad block table to the device? */
1225 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
1226 res = write_bbt(mtd, buf, md, td, chipsel);
1229 out:
1230 kfree(buf);
1231 return res;
1235 * Define some generic bad / good block scan pattern which are used
1236 * while scanning a device for factory marked good / bad blocks.
1238 static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1240 static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1242 static 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
1249 /* Generic flash bbt descriptors */
1250 static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1251 static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1253 static struct nand_bbt_descr bbt_main_descr = {
1254 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1255 | 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
1263 static struct nand_bbt_descr bbt_mirror_descr = {
1264 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1265 | 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
1273 static 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
1283 static 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
1294 * nand_create_default_bbt_descr - [INTERN] Creates a BBT descriptor structure
1295 * @this: NAND chip to create descriptor for
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.
1302 static int nand_create_default_bbt_descr(struct nand_chip *this)
1304 struct nand_bbt_descr *bd;
1305 if (this->badblock_pattern) {
1306 pr_warn("BBT descr already allocated; not replacing\n");
1307 return -EINVAL;
1309 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
1310 if (!bd)
1311 return -ENOMEM;
1312 bd->options = this->bbt_options;
1313 bd->offs = this->badblockpos;
1314 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1315 bd->pattern = scan_ff_pattern;
1316 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1317 this->badblock_pattern = bd;
1318 return 0;
1322 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
1323 * @mtd: MTD device structure
1325 * This function selects the default bad block table support for the device and
1326 * calls the nand_scan_bbt function.
1328 int nand_default_bbt(struct mtd_info *mtd)
1330 struct nand_chip *this = mtd->priv;
1333 * Default for AG-AND. We must use a flash based bad block table as the
1334 * devices have factory marked _good_ blocks. Erasing those blocks
1335 * leads to loss of the good / bad information, so we _must_ store this
1336 * information in a good / bad table during startup.
1338 if (this->options & NAND_IS_AND) {
1339 /* Use the default pattern descriptors */
1340 if (!this->bbt_td) {
1341 this->bbt_td = &bbt_main_descr;
1342 this->bbt_md = &bbt_mirror_descr;
1344 this->bbt_options |= NAND_BBT_USE_FLASH;
1345 return nand_scan_bbt(mtd, &agand_flashbased);
1348 /* Is a flash based bad block table requested? */
1349 if (this->bbt_options & NAND_BBT_USE_FLASH) {
1350 /* Use the default pattern descriptors */
1351 if (!this->bbt_td) {
1352 if (this->bbt_options & NAND_BBT_NO_OOB) {
1353 this->bbt_td = &bbt_main_no_bbt_descr;
1354 this->bbt_md = &bbt_mirror_no_bbt_descr;
1355 } else {
1356 this->bbt_td = &bbt_main_descr;
1357 this->bbt_md = &bbt_mirror_descr;
1360 } else {
1361 this->bbt_td = NULL;
1362 this->bbt_md = NULL;
1365 if (!this->badblock_pattern)
1366 nand_create_default_bbt_descr(this);
1368 return nand_scan_bbt(mtd, this->badblock_pattern);
1372 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
1373 * @mtd: MTD device structure
1374 * @offs: offset in the device
1375 * @allowbbt: allow access to bad block table region
1377 int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
1379 struct nand_chip *this = mtd->priv;
1380 int block;
1381 uint8_t res;
1383 /* Get block number * 2 */
1384 block = (int)(offs >> (this->bbt_erase_shift - 1));
1385 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1387 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1388 "(block %d) 0x%02x\n",
1389 (unsigned int)offs, block >> 1, res);
1391 switch ((int)res) {
1392 case 0x00:
1393 return 0;
1394 case 0x01:
1395 return 1;
1396 case 0x02:
1397 return allowbbt ? 0 : 1;
1399 return 1;
1402 EXPORT_SYMBOL(nand_scan_bbt);
1403 EXPORT_SYMBOL(nand_default_bbt);