3 * Bad block table support for the NAND driver
5 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
13 * When nand_scan_bbt is called, then it tries to find the bad block table
14 * depending on the options in the BBT descriptor(s). If no flash based BBT
15 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
16 * marked good / bad blocks. This information is used to create a memory BBT.
17 * Once a new bad block is discovered then the "factory" information is updated
19 * If a flash based BBT is specified then the function first tries to find the
20 * BBT on flash. If a BBT is found then the contents are read and the memory
21 * based BBT is created. If a mirrored BBT is selected then the mirror is
22 * searched too and the versions are compared. If the mirror has a greater
23 * version number, then the mirror BBT is used to build the memory based BBT.
24 * If the tables are not versioned, then we "or" the bad block information.
25 * If one of the BBTs is out of date or does not exist it is (re)created.
26 * If no BBT exists at all then the device is scanned for factory marked
27 * good / bad blocks and the bad block tables are created.
29 * For manufacturer created BBTs like the one found on M-SYS DOC devices
30 * the BBT is searched and read but never created
32 * The auto generated bad block table is located in the last good blocks
33 * of the device. The table is mirrored, so it can be updated eventually.
34 * The table is marked in the OOB area with an ident pattern and a version
35 * number which indicates which of both tables is more up to date. If the NAND
36 * controller needs the complete OOB area for the ECC information then the
37 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
38 * course): it moves the ident pattern and the version byte into the data area
39 * and the OOB area will remain untouched.
41 * The table uses 2 bits per block
43 * 00b: block is factory marked bad
44 * 01b, 10b: block is marked bad due to wear
46 * The memory bad block table uses the following scheme:
48 * 01b: block is marked bad due to wear
49 * 10b: block is reserved (to protect the bbt area)
50 * 11b: block is factory marked bad
52 * Multichip devices like DOC store the bad block info per floor.
54 * Following assumptions are made:
55 * - bbts start at a page boundary, if autolocated on a block boundary
56 * - the space necessary for a bbt in FLASH does not exceed a block boundary
60 #include <linux/slab.h>
61 #include <linux/types.h>
62 #include <linux/mtd/mtd.h>
63 #include <linux/mtd/bbm.h>
64 #include <linux/mtd/nand.h>
65 #include <linux/bitops.h>
66 #include <linux/delay.h>
67 #include <linux/vmalloc.h>
68 #include <linux/export.h>
69 #include <linux/string.h>
71 #define BBT_BLOCK_GOOD 0x00
72 #define BBT_BLOCK_WORN 0x01
73 #define BBT_BLOCK_RESERVED 0x02
74 #define BBT_BLOCK_FACTORY_BAD 0x03
76 #define BBT_ENTRY_MASK 0x03
77 #define BBT_ENTRY_SHIFT 2
79 static int nand_update_bbt(struct mtd_info
*mtd
, loff_t offs
);
81 static inline uint8_t bbt_get_entry(struct nand_chip
*chip
, int block
)
83 uint8_t entry
= chip
->bbt
[block
>> BBT_ENTRY_SHIFT
];
84 entry
>>= (block
& BBT_ENTRY_MASK
) * 2;
85 return entry
& BBT_ENTRY_MASK
;
88 static inline void bbt_mark_entry(struct nand_chip
*chip
, int block
,
91 uint8_t msk
= (mark
& BBT_ENTRY_MASK
) << ((block
& BBT_ENTRY_MASK
) * 2);
92 chip
->bbt
[block
>> BBT_ENTRY_SHIFT
] |= msk
;
95 static int check_pattern_no_oob(uint8_t *buf
, struct nand_bbt_descr
*td
)
97 if (memcmp(buf
, td
->pattern
, td
->len
))
103 * check_pattern - [GENERIC] check if a pattern is in the buffer
104 * @buf: the buffer to search
105 * @len: the length of buffer to search
106 * @paglen: the pagelength
107 * @td: search pattern descriptor
109 * Check for a pattern at the given place. Used to search bad block tables and
110 * good / bad block identifiers.
112 static int check_pattern(uint8_t *buf
, int len
, int paglen
, struct nand_bbt_descr
*td
)
114 if (td
->options
& NAND_BBT_NO_OOB
)
115 return check_pattern_no_oob(buf
, td
);
117 /* Compare the pattern */
118 if (memcmp(buf
+ paglen
+ td
->offs
, td
->pattern
, td
->len
))
125 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
126 * @buf: the buffer to search
127 * @td: search pattern descriptor
129 * Check for a pattern at the given place. Used to search bad block tables and
130 * good / bad block identifiers. Same as check_pattern, but no optional empty
133 static int check_short_pattern(uint8_t *buf
, struct nand_bbt_descr
*td
)
135 /* Compare the pattern */
136 if (memcmp(buf
+ td
->offs
, td
->pattern
, td
->len
))
142 * add_marker_len - compute the length of the marker in data area
143 * @td: BBT descriptor used for computation
145 * The length will be 0 if the marker is located in OOB area.
147 static u32
add_marker_len(struct nand_bbt_descr
*td
)
151 if (!(td
->options
& NAND_BBT_NO_OOB
))
155 if (td
->options
& NAND_BBT_VERSION
)
161 * read_bbt - [GENERIC] Read the bad block table starting from page
162 * @mtd: MTD device structure
163 * @buf: temporary buffer
164 * @page: the starting page
165 * @num: the number of bbt descriptors to read
166 * @td: the bbt describtion table
167 * @offs: block number offset in the table
169 * Read the bad block table starting from page.
171 static int read_bbt(struct mtd_info
*mtd
, uint8_t *buf
, int page
, int num
,
172 struct nand_bbt_descr
*td
, int offs
)
174 int res
, ret
= 0, i
, j
, act
= 0;
175 struct nand_chip
*this = mtd_to_nand(mtd
);
176 size_t retlen
, len
, totlen
;
178 int bits
= td
->options
& NAND_BBT_NRBITS_MSK
;
179 uint8_t msk
= (uint8_t)((1 << bits
) - 1);
181 int reserved_block_code
= td
->reserved_block_code
;
183 totlen
= (num
* bits
) >> 3;
184 marker_len
= add_marker_len(td
);
185 from
= ((loff_t
)page
) << this->page_shift
;
188 len
= min(totlen
, (size_t)(1 << this->bbt_erase_shift
));
191 * In case the BBT marker is not in the OOB area it
192 * will be just in the first page.
198 res
= mtd_read(mtd
, from
, len
, &retlen
, buf
);
200 if (mtd_is_eccerr(res
)) {
201 pr_info("nand_bbt: ECC error in BBT at 0x%012llx\n",
202 from
& ~mtd
->writesize
);
204 } else if (mtd_is_bitflip(res
)) {
205 pr_info("nand_bbt: corrected error in BBT at 0x%012llx\n",
206 from
& ~mtd
->writesize
);
209 pr_info("nand_bbt: error reading BBT\n");
215 for (i
= 0; i
< len
; i
++) {
216 uint8_t dat
= buf
[i
];
217 for (j
= 0; j
< 8; j
+= bits
, act
++) {
218 uint8_t tmp
= (dat
>> j
) & msk
;
221 if (reserved_block_code
&& (tmp
== reserved_block_code
)) {
222 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
223 (loff_t
)(offs
+ act
) <<
224 this->bbt_erase_shift
);
225 bbt_mark_entry(this, offs
+ act
,
227 mtd
->ecc_stats
.bbtblocks
++;
231 * Leave it for now, if it's matured we can
232 * move this message to pr_debug.
234 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
235 (loff_t
)(offs
+ act
) <<
236 this->bbt_erase_shift
);
237 /* Factory marked bad or worn out? */
239 bbt_mark_entry(this, offs
+ act
,
240 BBT_BLOCK_FACTORY_BAD
);
242 bbt_mark_entry(this, offs
+ act
,
244 mtd
->ecc_stats
.badblocks
++;
254 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
255 * @mtd: MTD device structure
256 * @buf: temporary buffer
257 * @td: descriptor for the bad block table
258 * @chip: read the table for a specific chip, -1 read all chips; applies only if
259 * NAND_BBT_PERCHIP option is set
261 * Read the bad block table for all chips starting at a given page. We assume
262 * that the bbt bits are in consecutive order.
264 static int read_abs_bbt(struct mtd_info
*mtd
, uint8_t *buf
, struct nand_bbt_descr
*td
, int chip
)
266 struct nand_chip
*this = mtd_to_nand(mtd
);
269 if (td
->options
& NAND_BBT_PERCHIP
) {
271 for (i
= 0; i
< this->numchips
; i
++) {
272 if (chip
== -1 || chip
== i
)
273 res
= read_bbt(mtd
, buf
, td
->pages
[i
],
274 this->chipsize
>> this->bbt_erase_shift
,
278 offs
+= this->chipsize
>> this->bbt_erase_shift
;
281 res
= read_bbt(mtd
, buf
, td
->pages
[0],
282 mtd
->size
>> this->bbt_erase_shift
, td
, 0);
289 /* BBT marker is in the first page, no OOB */
290 static int scan_read_data(struct mtd_info
*mtd
, uint8_t *buf
, loff_t offs
,
291 struct nand_bbt_descr
*td
)
297 if (td
->options
& NAND_BBT_VERSION
)
300 return mtd_read(mtd
, offs
, len
, &retlen
, buf
);
304 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
305 * @mtd: MTD device structure
306 * @buf: temporary buffer
307 * @offs: offset at which to scan
308 * @len: length of data region to read
310 * Scan read data from data+OOB. May traverse multiple pages, interleaving
311 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
312 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
314 static int scan_read_oob(struct mtd_info
*mtd
, uint8_t *buf
, loff_t offs
,
317 struct mtd_oob_ops ops
;
320 ops
.mode
= MTD_OPS_PLACE_OOB
;
322 ops
.ooblen
= mtd
->oobsize
;
326 ops
.len
= min(len
, (size_t)mtd
->writesize
);
327 ops
.oobbuf
= buf
+ ops
.len
;
329 res
= mtd_read_oob(mtd
, offs
, &ops
);
331 if (!mtd_is_bitflip_or_eccerr(res
))
333 else if (mtd_is_eccerr(res
) || !ret
)
337 buf
+= mtd
->oobsize
+ mtd
->writesize
;
338 len
-= mtd
->writesize
;
339 offs
+= mtd
->writesize
;
344 static int scan_read(struct mtd_info
*mtd
, uint8_t *buf
, loff_t offs
,
345 size_t len
, struct nand_bbt_descr
*td
)
347 if (td
->options
& NAND_BBT_NO_OOB
)
348 return scan_read_data(mtd
, buf
, offs
, td
);
350 return scan_read_oob(mtd
, buf
, offs
, len
);
353 /* Scan write data with oob to flash */
354 static int scan_write_bbt(struct mtd_info
*mtd
, loff_t offs
, size_t len
,
355 uint8_t *buf
, uint8_t *oob
)
357 struct mtd_oob_ops ops
;
359 ops
.mode
= MTD_OPS_PLACE_OOB
;
361 ops
.ooblen
= mtd
->oobsize
;
366 return mtd_write_oob(mtd
, offs
, &ops
);
369 static u32
bbt_get_ver_offs(struct mtd_info
*mtd
, struct nand_bbt_descr
*td
)
371 u32 ver_offs
= td
->veroffs
;
373 if (!(td
->options
& NAND_BBT_NO_OOB
))
374 ver_offs
+= mtd
->writesize
;
379 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
380 * @mtd: MTD device structure
381 * @buf: temporary buffer
382 * @td: descriptor for the bad block table
383 * @md: descriptor for the bad block table mirror
385 * Read the bad block table(s) for all chips starting at a given page. We
386 * assume that the bbt bits are in consecutive order.
388 static void read_abs_bbts(struct mtd_info
*mtd
, uint8_t *buf
,
389 struct nand_bbt_descr
*td
, struct nand_bbt_descr
*md
)
391 struct nand_chip
*this = mtd_to_nand(mtd
);
393 /* Read the primary version, if available */
394 if (td
->options
& NAND_BBT_VERSION
) {
395 scan_read(mtd
, buf
, (loff_t
)td
->pages
[0] << this->page_shift
,
397 td
->version
[0] = buf
[bbt_get_ver_offs(mtd
, td
)];
398 pr_info("Bad block table at page %d, version 0x%02X\n",
399 td
->pages
[0], td
->version
[0]);
402 /* Read the mirror version, if available */
403 if (md
&& (md
->options
& NAND_BBT_VERSION
)) {
404 scan_read(mtd
, buf
, (loff_t
)md
->pages
[0] << this->page_shift
,
406 md
->version
[0] = buf
[bbt_get_ver_offs(mtd
, md
)];
407 pr_info("Bad block table at page %d, version 0x%02X\n",
408 md
->pages
[0], md
->version
[0]);
412 /* Scan a given block partially */
413 static int scan_block_fast(struct mtd_info
*mtd
, struct nand_bbt_descr
*bd
,
414 loff_t offs
, uint8_t *buf
, int numpages
)
416 struct mtd_oob_ops ops
;
419 ops
.ooblen
= mtd
->oobsize
;
423 ops
.mode
= MTD_OPS_PLACE_OOB
;
425 for (j
= 0; j
< numpages
; j
++) {
427 * Read the full oob until read_oob is fixed to handle single
428 * byte reads for 16 bit buswidth.
430 ret
= mtd_read_oob(mtd
, offs
, &ops
);
431 /* Ignore ECC errors when checking for BBM */
432 if (ret
&& !mtd_is_bitflip_or_eccerr(ret
))
435 if (check_short_pattern(buf
, bd
))
438 offs
+= mtd
->writesize
;
444 * create_bbt - [GENERIC] Create a bad block table by scanning the device
445 * @mtd: MTD device structure
446 * @buf: temporary buffer
447 * @bd: descriptor for the good/bad block search pattern
448 * @chip: create the table for a specific chip, -1 read all chips; applies only
449 * if NAND_BBT_PERCHIP option is set
451 * Create a bad block table by scanning the device for the given good/bad block
454 static int create_bbt(struct mtd_info
*mtd
, uint8_t *buf
,
455 struct nand_bbt_descr
*bd
, int chip
)
457 struct nand_chip
*this = mtd_to_nand(mtd
);
458 int i
, numblocks
, numpages
;
462 pr_info("Scanning device for bad blocks\n");
464 if (bd
->options
& NAND_BBT_SCAN2NDPAGE
)
470 numblocks
= mtd
->size
>> this->bbt_erase_shift
;
474 if (chip
>= this->numchips
) {
475 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
476 chip
+ 1, this->numchips
);
479 numblocks
= this->chipsize
>> this->bbt_erase_shift
;
480 startblock
= chip
* numblocks
;
481 numblocks
+= startblock
;
482 from
= (loff_t
)startblock
<< this->bbt_erase_shift
;
485 if (this->bbt_options
& NAND_BBT_SCANLASTPAGE
)
486 from
+= mtd
->erasesize
- (mtd
->writesize
* numpages
);
488 for (i
= startblock
; i
< numblocks
; i
++) {
491 BUG_ON(bd
->options
& NAND_BBT_NO_OOB
);
493 ret
= scan_block_fast(mtd
, bd
, from
, buf
, numpages
);
498 bbt_mark_entry(this, i
, BBT_BLOCK_FACTORY_BAD
);
499 pr_warn("Bad eraseblock %d at 0x%012llx\n",
500 i
, (unsigned long long)from
);
501 mtd
->ecc_stats
.badblocks
++;
504 from
+= (1 << this->bbt_erase_shift
);
510 * search_bbt - [GENERIC] scan the device for a specific bad block table
511 * @mtd: MTD device structure
512 * @buf: temporary buffer
513 * @td: descriptor for the bad block table
515 * Read the bad block table by searching for a given ident pattern. Search is
516 * preformed either from the beginning up or from the end of the device
517 * downwards. The search starts always at the start of a block. If the option
518 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
519 * the bad block information of this chip. This is necessary to provide support
520 * for certain DOC devices.
522 * The bbt ident pattern resides in the oob area of the first page in a block.
524 static int search_bbt(struct mtd_info
*mtd
, uint8_t *buf
, struct nand_bbt_descr
*td
)
526 struct nand_chip
*this = mtd_to_nand(mtd
);
528 int startblock
, block
, dir
;
529 int scanlen
= mtd
->writesize
+ mtd
->oobsize
;
531 int blocktopage
= this->bbt_erase_shift
- this->page_shift
;
533 /* Search direction top -> down? */
534 if (td
->options
& NAND_BBT_LASTBLOCK
) {
535 startblock
= (mtd
->size
>> this->bbt_erase_shift
) - 1;
542 /* Do we have a bbt per chip? */
543 if (td
->options
& NAND_BBT_PERCHIP
) {
544 chips
= this->numchips
;
545 bbtblocks
= this->chipsize
>> this->bbt_erase_shift
;
546 startblock
&= bbtblocks
- 1;
549 bbtblocks
= mtd
->size
>> this->bbt_erase_shift
;
552 for (i
= 0; i
< chips
; i
++) {
553 /* Reset version information */
556 /* Scan the maximum number of blocks */
557 for (block
= 0; block
< td
->maxblocks
; block
++) {
559 int actblock
= startblock
+ dir
* block
;
560 loff_t offs
= (loff_t
)actblock
<< this->bbt_erase_shift
;
562 /* Read first page */
563 scan_read(mtd
, buf
, offs
, mtd
->writesize
, td
);
564 if (!check_pattern(buf
, scanlen
, mtd
->writesize
, td
)) {
565 td
->pages
[i
] = actblock
<< blocktopage
;
566 if (td
->options
& NAND_BBT_VERSION
) {
567 offs
= bbt_get_ver_offs(mtd
, td
);
568 td
->version
[i
] = buf
[offs
];
573 startblock
+= this->chipsize
>> this->bbt_erase_shift
;
575 /* Check, if we found a bbt for each requested chip */
576 for (i
= 0; i
< chips
; i
++) {
577 if (td
->pages
[i
] == -1)
578 pr_warn("Bad block table not found for chip %d\n", i
);
580 pr_info("Bad block table found at page %d, version 0x%02X\n",
581 td
->pages
[i
], td
->version
[i
]);
587 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
588 * @mtd: MTD device structure
589 * @buf: temporary buffer
590 * @td: descriptor for the bad block table
591 * @md: descriptor for the bad block table mirror
593 * Search and read the bad block table(s).
595 static void search_read_bbts(struct mtd_info
*mtd
, uint8_t *buf
,
596 struct nand_bbt_descr
*td
,
597 struct nand_bbt_descr
*md
)
599 /* Search the primary table */
600 search_bbt(mtd
, buf
, td
);
602 /* Search the mirror table */
604 search_bbt(mtd
, buf
, md
);
608 * write_bbt - [GENERIC] (Re)write the bad block table
609 * @mtd: MTD device structure
610 * @buf: temporary buffer
611 * @td: descriptor for the bad block table
612 * @md: descriptor for the bad block table mirror
613 * @chipsel: selector for a specific chip, -1 for all
615 * (Re)write the bad block table.
617 static int write_bbt(struct mtd_info
*mtd
, uint8_t *buf
,
618 struct nand_bbt_descr
*td
, struct nand_bbt_descr
*md
,
621 struct nand_chip
*this = mtd_to_nand(mtd
);
622 struct erase_info einfo
;
623 int i
, res
, chip
= 0;
624 int bits
, startblock
, dir
, page
, offs
, numblocks
, sft
, sftmsk
;
625 int nrchips
, pageoffs
, ooboffs
;
627 uint8_t rcode
= td
->reserved_block_code
;
628 size_t retlen
, len
= 0;
630 struct mtd_oob_ops ops
;
632 ops
.ooblen
= mtd
->oobsize
;
635 ops
.mode
= MTD_OPS_PLACE_OOB
;
639 /* Write bad block table per chip rather than per device? */
640 if (td
->options
& NAND_BBT_PERCHIP
) {
641 numblocks
= (int)(this->chipsize
>> this->bbt_erase_shift
);
642 /* Full device write or specific chip? */
644 nrchips
= this->numchips
;
646 nrchips
= chipsel
+ 1;
650 numblocks
= (int)(mtd
->size
>> this->bbt_erase_shift
);
654 /* Loop through the chips */
655 for (; chip
< nrchips
; chip
++) {
657 * There was already a version of the table, reuse the page
658 * This applies for absolute placement too, as we have the
659 * page nr. in td->pages.
661 if (td
->pages
[chip
] != -1) {
662 page
= td
->pages
[chip
];
667 * Automatic placement of the bad block table. Search direction
670 if (td
->options
& NAND_BBT_LASTBLOCK
) {
671 startblock
= numblocks
* (chip
+ 1) - 1;
674 startblock
= chip
* numblocks
;
678 for (i
= 0; i
< td
->maxblocks
; i
++) {
679 int block
= startblock
+ dir
* i
;
680 /* Check, if the block is bad */
681 switch (bbt_get_entry(this, block
)) {
683 case BBT_BLOCK_FACTORY_BAD
:
687 (this->bbt_erase_shift
- this->page_shift
);
688 /* Check, if the block is used by the mirror table */
689 if (!md
|| md
->pages
[chip
] != page
)
692 pr_err("No space left to write bad block table\n");
696 /* Set up shift count and masks for the flash table */
697 bits
= td
->options
& NAND_BBT_NRBITS_MSK
;
700 case 1: sft
= 3; sftmsk
= 0x07; msk
[0] = 0x00; msk
[1] = 0x01;
703 case 2: sft
= 2; sftmsk
= 0x06; msk
[0] = 0x00; msk
[1] = 0x01;
706 case 4: sft
= 1; sftmsk
= 0x04; msk
[0] = 0x00; msk
[1] = 0x0C;
709 case 8: sft
= 0; sftmsk
= 0x00; msk
[0] = 0x00; msk
[1] = 0x0F;
712 default: return -EINVAL
;
715 to
= ((loff_t
)page
) << this->page_shift
;
717 /* Must we save the block contents? */
718 if (td
->options
& NAND_BBT_SAVECONTENT
) {
719 /* Make it block aligned */
720 to
&= ~(((loff_t
)1 << this->bbt_erase_shift
) - 1);
721 len
= 1 << this->bbt_erase_shift
;
722 res
= mtd_read(mtd
, to
, len
, &retlen
, buf
);
725 pr_info("nand_bbt: error reading block for writing the bad block table\n");
728 pr_warn("nand_bbt: ECC error while reading block for writing bad block table\n");
731 ops
.ooblen
= (len
>> this->page_shift
) * mtd
->oobsize
;
732 ops
.oobbuf
= &buf
[len
];
733 res
= mtd_read_oob(mtd
, to
+ mtd
->writesize
, &ops
);
734 if (res
< 0 || ops
.oobretlen
!= ops
.ooblen
)
737 /* Calc the byte offset in the buffer */
738 pageoffs
= page
- (int)(to
>> this->page_shift
);
739 offs
= pageoffs
<< this->page_shift
;
740 /* Preset the bbt area with 0xff */
741 memset(&buf
[offs
], 0xff, (size_t)(numblocks
>> sft
));
742 ooboffs
= len
+ (pageoffs
* mtd
->oobsize
);
744 } else if (td
->options
& NAND_BBT_NO_OOB
) {
747 /* The version byte */
748 if (td
->options
& NAND_BBT_VERSION
)
751 len
= (size_t)(numblocks
>> sft
);
753 /* Make it page aligned! */
754 len
= ALIGN(len
, mtd
->writesize
);
755 /* Preset the buffer with 0xff */
756 memset(buf
, 0xff, len
);
757 /* Pattern is located at the begin of first page */
758 memcpy(buf
, td
->pattern
, td
->len
);
761 len
= (size_t)(numblocks
>> sft
);
762 /* Make it page aligned! */
763 len
= ALIGN(len
, mtd
->writesize
);
764 /* Preset the buffer with 0xff */
765 memset(buf
, 0xff, len
+
766 (len
>> this->page_shift
)* mtd
->oobsize
);
769 /* Pattern is located in oob area of first page */
770 memcpy(&buf
[ooboffs
+ td
->offs
], td
->pattern
, td
->len
);
773 if (td
->options
& NAND_BBT_VERSION
)
774 buf
[ooboffs
+ td
->veroffs
] = td
->version
[chip
];
776 /* Walk through the memory table */
777 for (i
= 0; i
< numblocks
; i
++) {
779 int sftcnt
= (i
<< (3 - sft
)) & sftmsk
;
780 dat
= bbt_get_entry(this, chip
* numblocks
+ i
);
781 /* Do not store the reserved bbt blocks! */
782 buf
[offs
+ (i
>> sft
)] &= ~(msk
[dat
] << sftcnt
);
785 memset(&einfo
, 0, sizeof(einfo
));
788 einfo
.len
= 1 << this->bbt_erase_shift
;
789 res
= nand_erase_nand(mtd
, &einfo
, 1);
793 res
= scan_write_bbt(mtd
, to
, len
, buf
,
794 td
->options
& NAND_BBT_NO_OOB
? NULL
:
799 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
800 (unsigned long long)to
, td
->version
[chip
]);
802 /* Mark it as used */
803 td
->pages
[chip
] = page
;
808 pr_warn("nand_bbt: error while writing bad block table %d\n", res
);
813 * nand_memory_bbt - [GENERIC] create a memory based bad block table
814 * @mtd: MTD device structure
815 * @bd: descriptor for the good/bad block search pattern
817 * The function creates a memory based bbt by scanning the device for
818 * manufacturer / software marked good / bad blocks.
820 static inline int nand_memory_bbt(struct mtd_info
*mtd
, struct nand_bbt_descr
*bd
)
822 struct nand_chip
*this = mtd_to_nand(mtd
);
824 return create_bbt(mtd
, this->buffers
->databuf
, bd
, -1);
828 * check_create - [GENERIC] create and write bbt(s) if necessary
829 * @mtd: MTD device structure
830 * @buf: temporary buffer
831 * @bd: descriptor for the good/bad block search pattern
833 * The function checks the results of the previous call to read_bbt and creates
834 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
835 * for the chip/device. Update is necessary if one of the tables is missing or
836 * the version nr. of one table is less than the other.
838 static int check_create(struct mtd_info
*mtd
, uint8_t *buf
, struct nand_bbt_descr
*bd
)
840 int i
, chips
, writeops
, create
, chipsel
, res
, res2
;
841 struct nand_chip
*this = mtd_to_nand(mtd
);
842 struct nand_bbt_descr
*td
= this->bbt_td
;
843 struct nand_bbt_descr
*md
= this->bbt_md
;
844 struct nand_bbt_descr
*rd
, *rd2
;
846 /* Do we have a bbt per chip? */
847 if (td
->options
& NAND_BBT_PERCHIP
)
848 chips
= this->numchips
;
852 for (i
= 0; i
< chips
; i
++) {
858 /* Per chip or per device? */
859 chipsel
= (td
->options
& NAND_BBT_PERCHIP
) ? i
: -1;
860 /* Mirrored table available? */
862 if (td
->pages
[i
] == -1 && md
->pages
[i
] == -1) {
865 } else if (td
->pages
[i
] == -1) {
868 } else if (md
->pages
[i
] == -1) {
871 } else if (td
->version
[i
] == md
->version
[i
]) {
873 if (!(td
->options
& NAND_BBT_VERSION
))
875 } else if (((int8_t)(td
->version
[i
] - md
->version
[i
])) > 0) {
883 if (td
->pages
[i
] == -1) {
892 /* Create the bad block table by scanning the device? */
893 if (!(td
->options
& NAND_BBT_CREATE
))
896 /* Create the table in memory by scanning the chip(s) */
897 if (!(this->bbt_options
& NAND_BBT_CREATE_EMPTY
))
898 create_bbt(mtd
, buf
, bd
, chipsel
);
905 /* Read back first? */
907 res
= read_abs_bbt(mtd
, buf
, rd
, chipsel
);
908 if (mtd_is_eccerr(res
)) {
909 /* Mark table as invalid */
916 /* If they weren't versioned, read both */
918 res2
= read_abs_bbt(mtd
, buf
, rd2
, chipsel
);
919 if (mtd_is_eccerr(res2
)) {
920 /* Mark table as invalid */
928 /* Scrub the flash table(s)? */
929 if (mtd_is_bitflip(res
) || mtd_is_bitflip(res2
))
932 /* Update version numbers before writing */
934 td
->version
[i
] = max(td
->version
[i
], md
->version
[i
]);
935 md
->version
[i
] = td
->version
[i
];
938 /* Write the bad block table to the device? */
939 if ((writeops
& 0x01) && (td
->options
& NAND_BBT_WRITE
)) {
940 res
= write_bbt(mtd
, buf
, td
, md
, chipsel
);
945 /* Write the mirror bad block table to the device? */
946 if ((writeops
& 0x02) && md
&& (md
->options
& NAND_BBT_WRITE
)) {
947 res
= write_bbt(mtd
, buf
, md
, td
, chipsel
);
956 * mark_bbt_regions - [GENERIC] mark the bad block table regions
957 * @mtd: MTD device structure
958 * @td: bad block table descriptor
960 * The bad block table regions are marked as "bad" to prevent accidental
961 * erasures / writes. The regions are identified by the mark 0x02.
963 static void mark_bbt_region(struct mtd_info
*mtd
, struct nand_bbt_descr
*td
)
965 struct nand_chip
*this = mtd_to_nand(mtd
);
966 int i
, j
, chips
, block
, nrblocks
, update
;
969 /* Do we have a bbt per chip? */
970 if (td
->options
& NAND_BBT_PERCHIP
) {
971 chips
= this->numchips
;
972 nrblocks
= (int)(this->chipsize
>> this->bbt_erase_shift
);
975 nrblocks
= (int)(mtd
->size
>> this->bbt_erase_shift
);
978 for (i
= 0; i
< chips
; i
++) {
979 if ((td
->options
& NAND_BBT_ABSPAGE
) ||
980 !(td
->options
& NAND_BBT_WRITE
)) {
981 if (td
->pages
[i
] == -1)
983 block
= td
->pages
[i
] >> (this->bbt_erase_shift
- this->page_shift
);
984 oldval
= bbt_get_entry(this, block
);
985 bbt_mark_entry(this, block
, BBT_BLOCK_RESERVED
);
986 if ((oldval
!= BBT_BLOCK_RESERVED
) &&
987 td
->reserved_block_code
)
988 nand_update_bbt(mtd
, (loff_t
)block
<<
989 this->bbt_erase_shift
);
993 if (td
->options
& NAND_BBT_LASTBLOCK
)
994 block
= ((i
+ 1) * nrblocks
) - td
->maxblocks
;
996 block
= i
* nrblocks
;
997 for (j
= 0; j
< td
->maxblocks
; j
++) {
998 oldval
= bbt_get_entry(this, block
);
999 bbt_mark_entry(this, block
, BBT_BLOCK_RESERVED
);
1000 if (oldval
!= BBT_BLOCK_RESERVED
)
1005 * If we want reserved blocks to be recorded to flash, and some
1006 * new ones have been marked, then we need to update the stored
1007 * bbts. This should only happen once.
1009 if (update
&& td
->reserved_block_code
)
1010 nand_update_bbt(mtd
, (loff_t
)(block
- 1) <<
1011 this->bbt_erase_shift
);
1016 * verify_bbt_descr - verify the bad block description
1017 * @mtd: MTD device structure
1018 * @bd: the table to verify
1020 * This functions performs a few sanity checks on the bad block description
1023 static void verify_bbt_descr(struct mtd_info
*mtd
, struct nand_bbt_descr
*bd
)
1025 struct nand_chip
*this = mtd_to_nand(mtd
);
1033 pattern_len
= bd
->len
;
1034 bits
= bd
->options
& NAND_BBT_NRBITS_MSK
;
1036 BUG_ON((this->bbt_options
& NAND_BBT_NO_OOB
) &&
1037 !(this->bbt_options
& NAND_BBT_USE_FLASH
));
1040 if (bd
->options
& NAND_BBT_VERSION
)
1043 if (bd
->options
& NAND_BBT_NO_OOB
) {
1044 BUG_ON(!(this->bbt_options
& NAND_BBT_USE_FLASH
));
1045 BUG_ON(!(this->bbt_options
& NAND_BBT_NO_OOB
));
1047 if (bd
->options
& NAND_BBT_VERSION
)
1048 BUG_ON(bd
->veroffs
!= bd
->len
);
1049 BUG_ON(bd
->options
& NAND_BBT_SAVECONTENT
);
1052 if (bd
->options
& NAND_BBT_PERCHIP
)
1053 table_size
= this->chipsize
>> this->bbt_erase_shift
;
1055 table_size
= mtd
->size
>> this->bbt_erase_shift
;
1058 if (bd
->options
& NAND_BBT_NO_OOB
)
1059 table_size
+= pattern_len
;
1060 BUG_ON(table_size
> (1 << this->bbt_erase_shift
));
1064 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
1065 * @mtd: MTD device structure
1066 * @bd: descriptor for the good/bad block search pattern
1068 * The function checks, if a bad block table(s) is/are already available. If
1069 * not it scans the device for manufacturer marked good / bad blocks and writes
1070 * the bad block table(s) to the selected place.
1072 * The bad block table memory is allocated here. It must be freed by calling
1073 * the nand_free_bbt function.
1075 static int nand_scan_bbt(struct mtd_info
*mtd
, struct nand_bbt_descr
*bd
)
1077 struct nand_chip
*this = mtd_to_nand(mtd
);
1080 struct nand_bbt_descr
*td
= this->bbt_td
;
1081 struct nand_bbt_descr
*md
= this->bbt_md
;
1083 len
= (mtd
->size
>> (this->bbt_erase_shift
+ 2)) ? : 1;
1085 * Allocate memory (2bit per block) and clear the memory bad block
1088 this->bbt
= kzalloc(len
, GFP_KERNEL
);
1093 * If no primary table decriptor is given, scan the device to build a
1094 * memory based bad block table.
1097 if ((res
= nand_memory_bbt(mtd
, bd
))) {
1098 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
1103 verify_bbt_descr(mtd
, td
);
1104 verify_bbt_descr(mtd
, md
);
1106 /* Allocate a temporary buffer for one eraseblock incl. oob */
1107 len
= (1 << this->bbt_erase_shift
);
1108 len
+= (len
>> this->page_shift
) * mtd
->oobsize
;
1115 /* Is the bbt at a given page? */
1116 if (td
->options
& NAND_BBT_ABSPAGE
) {
1117 read_abs_bbts(mtd
, buf
, td
, md
);
1119 /* Search the bad block table using a pattern in oob */
1120 search_read_bbts(mtd
, buf
, td
, md
);
1123 res
= check_create(mtd
, buf
, bd
);
1127 /* Prevent the bbt regions from erasing / writing */
1128 mark_bbt_region(mtd
, td
);
1130 mark_bbt_region(mtd
, md
);
1142 * nand_update_bbt - update bad block table(s)
1143 * @mtd: MTD device structure
1144 * @offs: the offset of the newly marked block
1146 * The function updates the bad block table(s).
1148 static int nand_update_bbt(struct mtd_info
*mtd
, loff_t offs
)
1150 struct nand_chip
*this = mtd_to_nand(mtd
);
1154 struct nand_bbt_descr
*td
= this->bbt_td
;
1155 struct nand_bbt_descr
*md
= this->bbt_md
;
1157 if (!this->bbt
|| !td
)
1160 /* Allocate a temporary buffer for one eraseblock incl. oob */
1161 len
= (1 << this->bbt_erase_shift
);
1162 len
+= (len
>> this->page_shift
) * mtd
->oobsize
;
1163 buf
= kmalloc(len
, GFP_KERNEL
);
1167 /* Do we have a bbt per chip? */
1168 if (td
->options
& NAND_BBT_PERCHIP
) {
1169 chip
= (int)(offs
>> this->chip_shift
);
1176 td
->version
[chip
]++;
1178 md
->version
[chip
]++;
1180 /* Write the bad block table to the device? */
1181 if (td
->options
& NAND_BBT_WRITE
) {
1182 res
= write_bbt(mtd
, buf
, td
, md
, chipsel
);
1186 /* Write the mirror bad block table to the device? */
1187 if (md
&& (md
->options
& NAND_BBT_WRITE
)) {
1188 res
= write_bbt(mtd
, buf
, md
, td
, chipsel
);
1197 * Define some generic bad / good block scan pattern which are used
1198 * while scanning a device for factory marked good / bad blocks.
1200 static uint8_t scan_ff_pattern
[] = { 0xff, 0xff };
1202 /* Generic flash bbt descriptors */
1203 static uint8_t bbt_pattern
[] = {'B', 'b', 't', '0' };
1204 static uint8_t mirror_pattern
[] = {'1', 't', 'b', 'B' };
1206 static struct nand_bbt_descr bbt_main_descr
= {
1207 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
1208 | NAND_BBT_2BIT
| NAND_BBT_VERSION
| NAND_BBT_PERCHIP
,
1212 .maxblocks
= NAND_BBT_SCAN_MAXBLOCKS
,
1213 .pattern
= bbt_pattern
1216 static struct nand_bbt_descr bbt_mirror_descr
= {
1217 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
1218 | NAND_BBT_2BIT
| NAND_BBT_VERSION
| NAND_BBT_PERCHIP
,
1222 .maxblocks
= NAND_BBT_SCAN_MAXBLOCKS
,
1223 .pattern
= mirror_pattern
1226 static struct nand_bbt_descr bbt_main_no_oob_descr
= {
1227 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
1228 | NAND_BBT_2BIT
| NAND_BBT_VERSION
| NAND_BBT_PERCHIP
1232 .maxblocks
= NAND_BBT_SCAN_MAXBLOCKS
,
1233 .pattern
= bbt_pattern
1236 static struct nand_bbt_descr bbt_mirror_no_oob_descr
= {
1237 .options
= NAND_BBT_LASTBLOCK
| NAND_BBT_CREATE
| NAND_BBT_WRITE
1238 | NAND_BBT_2BIT
| NAND_BBT_VERSION
| NAND_BBT_PERCHIP
1242 .maxblocks
= NAND_BBT_SCAN_MAXBLOCKS
,
1243 .pattern
= mirror_pattern
1246 #define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
1248 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1249 * @this: NAND chip to create descriptor for
1251 * This function allocates and initializes a nand_bbt_descr for BBM detection
1252 * based on the properties of @this. The new descriptor is stored in
1253 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1254 * passed to this function.
1256 static int nand_create_badblock_pattern(struct nand_chip
*this)
1258 struct nand_bbt_descr
*bd
;
1259 if (this->badblock_pattern
) {
1260 pr_warn("Bad block pattern already allocated; not replacing\n");
1263 bd
= kzalloc(sizeof(*bd
), GFP_KERNEL
);
1266 bd
->options
= this->bbt_options
& BADBLOCK_SCAN_MASK
;
1267 bd
->offs
= this->badblockpos
;
1268 bd
->len
= (this->options
& NAND_BUSWIDTH_16
) ? 2 : 1;
1269 bd
->pattern
= scan_ff_pattern
;
1270 bd
->options
|= NAND_BBT_DYNAMICSTRUCT
;
1271 this->badblock_pattern
= bd
;
1276 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
1277 * @mtd: MTD device structure
1279 * This function selects the default bad block table support for the device and
1280 * calls the nand_scan_bbt function.
1282 int nand_default_bbt(struct mtd_info
*mtd
)
1284 struct nand_chip
*this = mtd_to_nand(mtd
);
1287 /* Is a flash based bad block table requested? */
1288 if (this->bbt_options
& NAND_BBT_USE_FLASH
) {
1289 /* Use the default pattern descriptors */
1290 if (!this->bbt_td
) {
1291 if (this->bbt_options
& NAND_BBT_NO_OOB
) {
1292 this->bbt_td
= &bbt_main_no_oob_descr
;
1293 this->bbt_md
= &bbt_mirror_no_oob_descr
;
1295 this->bbt_td
= &bbt_main_descr
;
1296 this->bbt_md
= &bbt_mirror_descr
;
1300 this->bbt_td
= NULL
;
1301 this->bbt_md
= NULL
;
1304 if (!this->badblock_pattern
) {
1305 ret
= nand_create_badblock_pattern(this);
1310 return nand_scan_bbt(mtd
, this->badblock_pattern
);
1314 * nand_isreserved_bbt - [NAND Interface] Check if a block is reserved
1315 * @mtd: MTD device structure
1316 * @offs: offset in the device
1318 int nand_isreserved_bbt(struct mtd_info
*mtd
, loff_t offs
)
1320 struct nand_chip
*this = mtd_to_nand(mtd
);
1323 block
= (int)(offs
>> this->bbt_erase_shift
);
1324 return bbt_get_entry(this, block
) == BBT_BLOCK_RESERVED
;
1328 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
1329 * @mtd: MTD device structure
1330 * @offs: offset in the device
1331 * @allowbbt: allow access to bad block table region
1333 int nand_isbad_bbt(struct mtd_info
*mtd
, loff_t offs
, int allowbbt
)
1335 struct nand_chip
*this = mtd_to_nand(mtd
);
1338 block
= (int)(offs
>> this->bbt_erase_shift
);
1339 res
= bbt_get_entry(this, block
);
1341 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1342 (unsigned int)offs
, block
, res
);
1345 case BBT_BLOCK_GOOD
:
1347 case BBT_BLOCK_WORN
:
1349 case BBT_BLOCK_RESERVED
:
1350 return allowbbt
? 0 : 1;
1356 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1357 * @mtd: MTD device structure
1358 * @offs: offset of the bad block
1360 int nand_markbad_bbt(struct mtd_info
*mtd
, loff_t offs
)
1362 struct nand_chip
*this = mtd_to_nand(mtd
);
1365 block
= (int)(offs
>> this->bbt_erase_shift
);
1367 /* Mark bad block in memory */
1368 bbt_mark_entry(this, block
, BBT_BLOCK_WORN
);
1370 /* Update flash-based bad block table */
1371 if (this->bbt_options
& NAND_BBT_USE_FLASH
)
1372 ret
= nand_update_bbt(mtd
, offs
);