2 * drivers/mtd/nand_bbt.c
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.
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
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
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:
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
)
76 ret
= memcmp(buf
, td
->pattern
, td
->len
);
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
)
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
++) {
110 /* Compare the pattern */
111 for (i
= 0; i
< td
->len
; i
++) {
112 if (p
[i
] != td
->pattern
[i
])
116 if (td
->options
& NAND_BBT_SCANEMPTY
) {
119 for (i
= end
; i
< len
; i
++) {
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
136 static int check_short_pattern(uint8_t *buf
, struct nand_bbt_descr
*td
)
141 /* Compare the pattern */
142 for (i
= 0; i
< td
->len
; i
++) {
143 if (p
[td
->offs
+ i
] != td
->pattern
[i
])
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
)
159 if (!(td
->options
& NAND_BBT_NO_OOB
))
163 if (td
->options
& NAND_BBT_VERSION
)
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
;
186 int bits
= td
->options
& NAND_BBT_NRBITS_MSK
;
187 uint8_t msk
= (uint8_t) ((1 << bits
) - 1);
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
;
196 len
= min(totlen
, (size_t) (1 << this->bbt_erase_shift
));
199 * In case the BBT marker is not in the OOB area it
200 * will be just in the first page.
206 res
= mtd
->read(mtd
, from
, len
, &retlen
, buf
);
209 pr_info("nand_bbt: error reading bad block table\n");
212 pr_warn("nand_bbt: ECC error while reading bad block table\n");
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
;
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
++;
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? */
237 this->bbt
[offs
+ (act
>> 3)] |= 0x3 << (act
& 0x06);
239 this->bbt
[offs
+ (act
>> 3)] |= 0x1 << (act
& 0x06);
240 mtd
->ecc_stats
.badblocks
++;
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
;
265 if (td
->options
& NAND_BBT_PERCHIP
) {
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
,
274 offs
+= this->chipsize
>> (this->bbt_erase_shift
+ 2);
277 res
= read_bbt(mtd
, buf
, td
->pages
[0],
278 mtd
->size
>> this->bbt_erase_shift
, td
, 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
)
293 if (td
->options
& NAND_BBT_VERSION
)
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
,
303 struct mtd_oob_ops ops
;
306 ops
.mode
= MTD_OOB_RAW
;
308 ops
.ooblen
= mtd
->oobsize
;
312 if (len
<= mtd
->writesize
) {
313 ops
.oobbuf
= buf
+ len
;
316 res
= mtd
->read_oob(mtd
, offs
, &ops
);
318 /* Ignore ECC errors when checking for BBM */
319 if (res
!= -EUCLEAN
&& res
!= -EBADMSG
)
323 ops
.oobbuf
= buf
+ mtd
->writesize
;
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
)
333 buf
+= mtd
->oobsize
+ mtd
->writesize
;
334 len
-= mtd
->writesize
;
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
);
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
;
356 ops
.ooblen
= mtd
->oobsize
;
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
;
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
,
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
,
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]);
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
)
415 ret
= scan_read_raw_oob(mtd
, buf
, offs
, readlen
);
419 for (j
= 0; j
< len
; j
++, buf
+= scanlen
) {
420 if (check_pattern(buf
, scanlen
, mtd
->writesize
, bd
))
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
;
433 ops
.ooblen
= mtd
->oobsize
;
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
)
449 if (check_short_pattern(buf
, bd
))
452 offs
+= mtd
->writesize
;
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
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
;
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
)
486 if (!(bd
->options
& NAND_BBT_SCANEMPTY
)) {
487 /* We need only read few bytes from the OOB area */
491 /* Full page content should be read */
492 scanlen
= mtd
->writesize
+ mtd
->oobsize
;
493 readlen
= len
* mtd
->writesize
;
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);
505 if (chip
>= this->numchips
) {
506 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
507 chip
+ 1, this->numchips
);
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
;) {
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
,
528 ret
= scan_block_fast(mtd
, bd
, from
, buf
, len
);
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
++;
541 from
+= (1 << this->bbt_erase_shift
);
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
;
565 int bits
, startblock
, block
, dir
;
566 int scanlen
= mtd
->writesize
+ mtd
->oobsize
;
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;
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;
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 */
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
];
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
);
620 pr_info("Bad block table found at page %d, version "
621 "0x%02X\n", td
->pages
[i
], td
->version
[i
]);
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 */
642 search_bbt(mtd
, buf
, md
);
644 /* Force result check */
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
,
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
;
668 uint8_t rcode
= td
->reserved_block_code
;
669 size_t retlen
, len
= 0;
671 struct mtd_oob_ops ops
;
673 ops
.ooblen
= mtd
->oobsize
;
676 ops
.mode
= MTD_OOB_PLACE
;
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? */
685 nrchips
= this->numchips
;
687 nrchips
= chipsel
+ 1;
691 numblocks
= (int)(mtd
->size
>> this->bbt_erase_shift
);
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
];
708 * Automatic placement of the bad block table. Search direction
711 if (td
->options
& NAND_BBT_LASTBLOCK
) {
712 startblock
= numblocks
* (chip
+ 1) - 1;
715 startblock
= chip
* numblocks
;
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) {
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
)
734 pr_err("No space left to write bad block table\n");
738 /* Set up shift count and masks for the flash table */
739 bits
= td
->options
& NAND_BBT_NRBITS_MSK
;
742 case 1: sft
= 3; sftmsk
= 0x07; msk
[0] = 0x00; msk
[1] = 0x01;
745 case 2: sft
= 2; sftmsk
= 0x06; msk
[0] = 0x00; msk
[1] = 0x01;
748 case 4: sft
= 1; sftmsk
= 0x04; msk
[0] = 0x00; msk
[1] = 0x0C;
751 case 8: sft
= 0; sftmsk
= 0x00; msk
[0] = 0x00; msk
[1] = 0x0F;
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
);
769 pr_info("nand_bbt: error reading block "
770 "for writing the bad block table\n");
773 pr_warn("nand_bbt: ECC error while reading "
774 "block for writing bad block table\n");
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
)
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
) {
793 /* The version byte */
794 if (td
->options
& NAND_BBT_VERSION
)
797 len
= (size_t) (numblocks
>> sft
);
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
);
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
);
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
;) {
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
);
835 memset(&einfo
, 0, sizeof(einfo
));
838 einfo
.len
= 1 << this->bbt_erase_shift
;
839 res
= nand_erase_nand(mtd
, &einfo
, 1);
843 res
= scan_write_bbt(mtd
, to
, len
, buf
,
844 td
->options
& NAND_BBT_NO_OOB
? NULL
:
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
;
858 pr_warn("nand_bbt: error while writing bad block table %d\n", 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
;
903 for (i
= 0; i
< chips
; i
++) {
907 /* Per chip or per device? */
908 chipsel
= (td
->options
& NAND_BBT_PERCHIP
) ? i
: -1;
909 /* Mirrored table available? */
911 if (td
->pages
[i
] == -1 && md
->pages
[i
] == -1) {
916 if (td
->pages
[i
] == -1) {
918 td
->version
[i
] = md
->version
[i
];
923 if (md
->pages
[i
] == -1) {
925 md
->version
[i
] = td
->version
[i
];
930 if (td
->version
[i
] == md
->version
[i
]) {
932 if (!(td
->options
& NAND_BBT_VERSION
))
937 if (((int8_t) (td
->version
[i
] - md
->version
[i
])) > 0) {
939 md
->version
[i
] = td
->version
[i
];
943 td
->version
[i
] = md
->version
[i
];
950 if (td
->pages
[i
] == -1) {
958 /* Create the bad block table by scanning the device? */
959 if (!(td
->options
& NAND_BBT_CREATE
))
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
);
970 /* Read back first? */
972 read_abs_bbt(mtd
, buf
, rd
, chipsel
);
973 /* If they weren't versioned, read both */
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
);
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
);
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
);
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)
1022 block
= td
->pages
[i
] >> (this->bbt_erase_shift
- this->page_shift
);
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));
1032 if (td
->options
& NAND_BBT_LASTBLOCK
)
1033 block
= ((i
+ 1) * nrblocks
) - td
->maxblocks
;
1035 block
= i
* nrblocks
;
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
)
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
1063 static void verify_bbt_descr(struct mtd_info
*mtd
, struct nand_bbt_descr
*bd
)
1065 struct nand_chip
*this = mtd
->priv
;
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
));
1080 if (bd
->options
& NAND_BBT_VERSION
)
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
));
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
;
1095 table_size
= mtd
->size
>> this->bbt_erase_shift
;
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
;
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
1128 this->bbt
= kzalloc(len
, GFP_KERNEL
);
1133 * If no primary table decriptor is given, scan the device to build a
1134 * memory based bad block table.
1137 if ((res
= nand_memory_bbt(mtd
, bd
))) {
1138 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
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
;
1157 /* Is the bbt at a given page? */
1158 if (td
->options
& NAND_BBT_ABSPAGE
) {
1159 res
= read_abs_bbts(mtd
, buf
, td
, md
);
1161 /* Search the bad block table using a pattern in oob */
1162 res
= search_read_bbts(mtd
, buf
, td
, md
);
1166 res
= check_create(mtd
, buf
, bd
);
1168 /* Prevent the bbt regions from erasing / writing */
1169 mark_bbt_region(mtd
, td
);
1171 mark_bbt_region(mtd
, md
);
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;
1190 struct nand_bbt_descr
*td
= this->bbt_td
;
1191 struct nand_bbt_descr
*md
= this->bbt_md
;
1193 if (!this->bbt
|| !td
)
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
);
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
);
1214 td
->version
[chip
]++;
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
);
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
);
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
,
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
,
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
,
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
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
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");
1309 bd
= kzalloc(sizeof(*bd
), GFP_KERNEL
);
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
;
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
;
1356 this->bbt_td
= &bbt_main_descr
;
1357 this->bbt_md
= &bbt_mirror_descr
;
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
;
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
);
1397 return allowbbt
? 0 : 1;
1402 EXPORT_SYMBOL(nand_scan_bbt
);
1403 EXPORT_SYMBOL(nand_default_bbt
);