mtd: nand: remove multiplied-by-2 block logic
[deliverable/linux.git] / drivers / mtd / nand / nand_bbt.c
1 /*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
6 *
7 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
8 *
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.
12 *
13 * Description:
14 *
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, then 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.
30 *
31 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
33 *
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.
42 *
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
47 *
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
53 *
54 * Multichip devices like DOC store the bad block info per floor.
55 *
56 * Following assumptions are made:
57 * - bbts start at a page boundary, if autolocated on a block boundary
58 * - the space necessary for a bbt in FLASH does not exceed a block boundary
59 *
60 */
61
62 #include <linux/slab.h>
63 #include <linux/types.h>
64 #include <linux/mtd/mtd.h>
65 #include <linux/mtd/bbm.h>
66 #include <linux/mtd/nand.h>
67 #include <linux/mtd/nand_ecc.h>
68 #include <linux/bitops.h>
69 #include <linux/delay.h>
70 #include <linux/vmalloc.h>
71 #include <linux/export.h>
72 #include <linux/string.h>
73
74 #define BBT_BLOCK_GOOD 0x00
75 #define BBT_BLOCK_WORN 0x01
76 #define BBT_BLOCK_RESERVED 0x02
77 #define BBT_BLOCK_FACTORY_BAD 0x03
78
79 #define BBT_ENTRY_MASK 0x03
80 #define BBT_ENTRY_SHIFT 2
81
82 static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
83 {
84 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
85 entry >>= (block & BBT_ENTRY_MASK) * 2;
86 return entry & BBT_ENTRY_MASK;
87 }
88
89 static inline void bbt_mark_entry(struct nand_chip *chip, int block,
90 uint8_t mark)
91 {
92 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
93 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
94 }
95
96 static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
97 {
98 if (memcmp(buf, td->pattern, td->len))
99 return -1;
100 return 0;
101 }
102
103 /**
104 * check_pattern - [GENERIC] check if a pattern is in the buffer
105 * @buf: the buffer to search
106 * @len: the length of buffer to search
107 * @paglen: the pagelength
108 * @td: search pattern descriptor
109 *
110 * Check for a pattern at the given place. Used to search bad block tables and
111 * good / bad block identifiers. If the SCAN_EMPTY option is set then check, if
112 * all bytes except the pattern area contain 0xff.
113 */
114 static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
115 {
116 int end = 0;
117 uint8_t *p = buf;
118
119 if (td->options & NAND_BBT_NO_OOB)
120 return check_pattern_no_oob(buf, td);
121
122 end = paglen + td->offs;
123 if (td->options & NAND_BBT_SCANEMPTY)
124 if (memchr_inv(p, 0xff, end))
125 return -1;
126 p += end;
127
128 /* Compare the pattern */
129 if (memcmp(p, td->pattern, td->len))
130 return -1;
131
132 if (td->options & NAND_BBT_SCANEMPTY) {
133 p += td->len;
134 end += td->len;
135 if (memchr_inv(p, 0xff, len - end))
136 return -1;
137 }
138 return 0;
139 }
140
141 /**
142 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
143 * @buf: the buffer to search
144 * @td: search pattern descriptor
145 *
146 * Check for a pattern at the given place. Used to search bad block tables and
147 * good / bad block identifiers. Same as check_pattern, but no optional empty
148 * check.
149 */
150 static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
151 {
152 /* Compare the pattern */
153 if (memcmp(buf + td->offs, td->pattern, td->len))
154 return -1;
155 return 0;
156 }
157
158 /**
159 * add_marker_len - compute the length of the marker in data area
160 * @td: BBT descriptor used for computation
161 *
162 * The length will be 0 if the marker is located in OOB area.
163 */
164 static u32 add_marker_len(struct nand_bbt_descr *td)
165 {
166 u32 len;
167
168 if (!(td->options & NAND_BBT_NO_OOB))
169 return 0;
170
171 len = td->len;
172 if (td->options & NAND_BBT_VERSION)
173 len++;
174 return len;
175 }
176
177 /**
178 * read_bbt - [GENERIC] Read the bad block table starting from page
179 * @mtd: MTD device structure
180 * @buf: temporary buffer
181 * @page: the starting page
182 * @num: the number of bbt descriptors to read
183 * @td: the bbt describtion table
184 * @offs: block number offset in the table
185 *
186 * Read the bad block table starting from page.
187 */
188 static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
189 struct nand_bbt_descr *td, int offs)
190 {
191 int res, ret = 0, i, j, act = 0;
192 struct nand_chip *this = mtd->priv;
193 size_t retlen, len, totlen;
194 loff_t from;
195 int bits = td->options & NAND_BBT_NRBITS_MSK;
196 uint8_t msk = (uint8_t)((1 << bits) - 1);
197 u32 marker_len;
198 int reserved_block_code = td->reserved_block_code;
199
200 totlen = (num * bits) >> 3;
201 marker_len = add_marker_len(td);
202 from = ((loff_t)page) << this->page_shift;
203
204 while (totlen) {
205 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
206 if (marker_len) {
207 /*
208 * In case the BBT marker is not in the OOB area it
209 * will be just in the first page.
210 */
211 len -= marker_len;
212 from += marker_len;
213 marker_len = 0;
214 }
215 res = mtd_read(mtd, from, len, &retlen, buf);
216 if (res < 0) {
217 if (mtd_is_eccerr(res)) {
218 pr_info("nand_bbt: ECC error in BBT at "
219 "0x%012llx\n", from & ~mtd->writesize);
220 return res;
221 } else if (mtd_is_bitflip(res)) {
222 pr_info("nand_bbt: corrected error in BBT at "
223 "0x%012llx\n", from & ~mtd->writesize);
224 ret = res;
225 } else {
226 pr_info("nand_bbt: error reading BBT\n");
227 return res;
228 }
229 }
230
231 /* Analyse data */
232 for (i = 0; i < len; i++) {
233 uint8_t dat = buf[i];
234 for (j = 0; j < 8; j += bits, act++) {
235 uint8_t tmp = (dat >> j) & msk;
236 if (tmp == msk)
237 continue;
238 if (reserved_block_code && (tmp == reserved_block_code)) {
239 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
240 (loff_t)(offs + act) <<
241 this->bbt_erase_shift);
242 bbt_mark_entry(this, offs + act,
243 BBT_BLOCK_RESERVED);
244 mtd->ecc_stats.bbtblocks++;
245 continue;
246 }
247 /*
248 * Leave it for now, if it's matured we can
249 * move this message to pr_debug.
250 */
251 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
252 (loff_t)(offs + act) <<
253 this->bbt_erase_shift);
254 /* Factory marked bad or worn out? */
255 if (tmp == 0)
256 bbt_mark_entry(this, offs + act,
257 BBT_BLOCK_FACTORY_BAD);
258 else
259 bbt_mark_entry(this, offs + act,
260 BBT_BLOCK_WORN);
261 mtd->ecc_stats.badblocks++;
262 }
263 }
264 totlen -= len;
265 from += len;
266 }
267 return ret;
268 }
269
270 /**
271 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
272 * @mtd: MTD device structure
273 * @buf: temporary buffer
274 * @td: descriptor for the bad block table
275 * @chip: read the table for a specific chip, -1 read all chips; applies only if
276 * NAND_BBT_PERCHIP option is set
277 *
278 * Read the bad block table for all chips starting at a given page. We assume
279 * that the bbt bits are in consecutive order.
280 */
281 static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
282 {
283 struct nand_chip *this = mtd->priv;
284 int res = 0, i;
285
286 if (td->options & NAND_BBT_PERCHIP) {
287 int offs = 0;
288 for (i = 0; i < this->numchips; i++) {
289 if (chip == -1 || chip == i)
290 res = read_bbt(mtd, buf, td->pages[i],
291 this->chipsize >> this->bbt_erase_shift,
292 td, offs);
293 if (res)
294 return res;
295 offs += this->chipsize >> this->bbt_erase_shift;
296 }
297 } else {
298 res = read_bbt(mtd, buf, td->pages[0],
299 mtd->size >> this->bbt_erase_shift, td, 0);
300 if (res)
301 return res;
302 }
303 return 0;
304 }
305
306 /* BBT marker is in the first page, no OOB */
307 static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
308 struct nand_bbt_descr *td)
309 {
310 size_t retlen;
311 size_t len;
312
313 len = td->len;
314 if (td->options & NAND_BBT_VERSION)
315 len++;
316
317 return mtd_read(mtd, offs, len, &retlen, buf);
318 }
319
320 /**
321 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
322 * @mtd: MTD device structure
323 * @buf: temporary buffer
324 * @offs: offset at which to scan
325 * @len: length of data region to read
326 *
327 * Scan read data from data+OOB. May traverse multiple pages, interleaving
328 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
329 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
330 */
331 static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
332 size_t len)
333 {
334 struct mtd_oob_ops ops;
335 int res, ret = 0;
336
337 ops.mode = MTD_OPS_PLACE_OOB;
338 ops.ooboffs = 0;
339 ops.ooblen = mtd->oobsize;
340
341 while (len > 0) {
342 ops.datbuf = buf;
343 ops.len = min(len, (size_t)mtd->writesize);
344 ops.oobbuf = buf + ops.len;
345
346 res = mtd_read_oob(mtd, offs, &ops);
347 if (res) {
348 if (!mtd_is_bitflip_or_eccerr(res))
349 return res;
350 else if (mtd_is_eccerr(res) || !ret)
351 ret = res;
352 }
353
354 buf += mtd->oobsize + mtd->writesize;
355 len -= mtd->writesize;
356 offs += mtd->writesize;
357 }
358 return ret;
359 }
360
361 static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
362 size_t len, struct nand_bbt_descr *td)
363 {
364 if (td->options & NAND_BBT_NO_OOB)
365 return scan_read_data(mtd, buf, offs, td);
366 else
367 return scan_read_oob(mtd, buf, offs, len);
368 }
369
370 /* Scan write data with oob to flash */
371 static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
372 uint8_t *buf, uint8_t *oob)
373 {
374 struct mtd_oob_ops ops;
375
376 ops.mode = MTD_OPS_PLACE_OOB;
377 ops.ooboffs = 0;
378 ops.ooblen = mtd->oobsize;
379 ops.datbuf = buf;
380 ops.oobbuf = oob;
381 ops.len = len;
382
383 return mtd_write_oob(mtd, offs, &ops);
384 }
385
386 static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
387 {
388 u32 ver_offs = td->veroffs;
389
390 if (!(td->options & NAND_BBT_NO_OOB))
391 ver_offs += mtd->writesize;
392 return ver_offs;
393 }
394
395 /**
396 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
397 * @mtd: MTD device structure
398 * @buf: temporary buffer
399 * @td: descriptor for the bad block table
400 * @md: descriptor for the bad block table mirror
401 *
402 * Read the bad block table(s) for all chips starting at a given page. We
403 * assume that the bbt bits are in consecutive order.
404 */
405 static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
406 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
407 {
408 struct nand_chip *this = mtd->priv;
409
410 /* Read the primary version, if available */
411 if (td->options & NAND_BBT_VERSION) {
412 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
413 mtd->writesize, td);
414 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
415 pr_info("Bad block table at page %d, version 0x%02X\n",
416 td->pages[0], td->version[0]);
417 }
418
419 /* Read the mirror version, if available */
420 if (md && (md->options & NAND_BBT_VERSION)) {
421 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
422 mtd->writesize, md);
423 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
424 pr_info("Bad block table at page %d, version 0x%02X\n",
425 md->pages[0], md->version[0]);
426 }
427 }
428
429 /* Scan a given block full */
430 static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
431 loff_t offs, uint8_t *buf, size_t readlen,
432 int scanlen, int numpages)
433 {
434 int ret, j;
435
436 ret = scan_read_oob(mtd, buf, offs, readlen);
437 /* Ignore ECC errors when checking for BBM */
438 if (ret && !mtd_is_bitflip_or_eccerr(ret))
439 return ret;
440
441 for (j = 0; j < numpages; j++, buf += scanlen) {
442 if (check_pattern(buf, scanlen, mtd->writesize, bd))
443 return 1;
444 }
445 return 0;
446 }
447
448 /* Scan a given block partially */
449 static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
450 loff_t offs, uint8_t *buf, int numpages)
451 {
452 struct mtd_oob_ops ops;
453 int j, ret;
454
455 ops.ooblen = mtd->oobsize;
456 ops.oobbuf = buf;
457 ops.ooboffs = 0;
458 ops.datbuf = NULL;
459 ops.mode = MTD_OPS_PLACE_OOB;
460
461 for (j = 0; j < numpages; j++) {
462 /*
463 * Read the full oob until read_oob is fixed to handle single
464 * byte reads for 16 bit buswidth.
465 */
466 ret = mtd_read_oob(mtd, offs, &ops);
467 /* Ignore ECC errors when checking for BBM */
468 if (ret && !mtd_is_bitflip_or_eccerr(ret))
469 return ret;
470
471 if (check_short_pattern(buf, bd))
472 return 1;
473
474 offs += mtd->writesize;
475 }
476 return 0;
477 }
478
479 /**
480 * create_bbt - [GENERIC] Create a bad block table by scanning the device
481 * @mtd: MTD device structure
482 * @buf: temporary buffer
483 * @bd: descriptor for the good/bad block search pattern
484 * @chip: create the table for a specific chip, -1 read all chips; applies only
485 * if NAND_BBT_PERCHIP option is set
486 *
487 * Create a bad block table by scanning the device for the given good/bad block
488 * identify pattern.
489 */
490 static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
491 struct nand_bbt_descr *bd, int chip)
492 {
493 struct nand_chip *this = mtd->priv;
494 int i, numblocks, numpages, scanlen;
495 int startblock;
496 loff_t from;
497 size_t readlen;
498
499 pr_info("Scanning device for bad blocks\n");
500
501 if (bd->options & NAND_BBT_SCANALLPAGES)
502 numpages = 1 << (this->bbt_erase_shift - this->page_shift);
503 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
504 numpages = 2;
505 else
506 numpages = 1;
507
508 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
509 /* We need only read few bytes from the OOB area */
510 scanlen = 0;
511 readlen = bd->len;
512 } else {
513 /* Full page content should be read */
514 scanlen = mtd->writesize + mtd->oobsize;
515 readlen = numpages * mtd->writesize;
516 }
517
518 if (chip == -1) {
519 numblocks = mtd->size >> this->bbt_erase_shift;
520 startblock = 0;
521 from = 0;
522 } else {
523 if (chip >= this->numchips) {
524 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
525 chip + 1, this->numchips);
526 return -EINVAL;
527 }
528 numblocks = this->chipsize >> this->bbt_erase_shift;
529 startblock = chip * numblocks;
530 numblocks += startblock;
531 from = (loff_t)startblock << this->bbt_erase_shift;
532 }
533
534 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
535 from += mtd->erasesize - (mtd->writesize * numpages);
536
537 for (i = startblock; i < numblocks; i++) {
538 int ret;
539
540 BUG_ON(bd->options & NAND_BBT_NO_OOB);
541
542 if (bd->options & NAND_BBT_SCANALLPAGES)
543 ret = scan_block_full(mtd, bd, from, buf, readlen,
544 scanlen, numpages);
545 else
546 ret = scan_block_fast(mtd, bd, from, buf, numpages);
547
548 if (ret < 0)
549 return ret;
550
551 if (ret) {
552 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
553 pr_warn("Bad eraseblock %d at 0x%012llx\n",
554 i, (unsigned long long)from);
555 mtd->ecc_stats.badblocks++;
556 }
557
558 from += (1 << this->bbt_erase_shift);
559 }
560 return 0;
561 }
562
563 /**
564 * search_bbt - [GENERIC] scan the device for a specific bad block table
565 * @mtd: MTD device structure
566 * @buf: temporary buffer
567 * @td: descriptor for the bad block table
568 *
569 * Read the bad block table by searching for a given ident pattern. Search is
570 * preformed either from the beginning up or from the end of the device
571 * downwards. The search starts always at the start of a block. If the option
572 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
573 * the bad block information of this chip. This is necessary to provide support
574 * for certain DOC devices.
575 *
576 * The bbt ident pattern resides in the oob area of the first page in a block.
577 */
578 static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
579 {
580 struct nand_chip *this = mtd->priv;
581 int i, chips;
582 int bits, startblock, block, dir;
583 int scanlen = mtd->writesize + mtd->oobsize;
584 int bbtblocks;
585 int blocktopage = this->bbt_erase_shift - this->page_shift;
586
587 /* Search direction top -> down? */
588 if (td->options & NAND_BBT_LASTBLOCK) {
589 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
590 dir = -1;
591 } else {
592 startblock = 0;
593 dir = 1;
594 }
595
596 /* Do we have a bbt per chip? */
597 if (td->options & NAND_BBT_PERCHIP) {
598 chips = this->numchips;
599 bbtblocks = this->chipsize >> this->bbt_erase_shift;
600 startblock &= bbtblocks - 1;
601 } else {
602 chips = 1;
603 bbtblocks = mtd->size >> this->bbt_erase_shift;
604 }
605
606 /* Number of bits for each erase block in the bbt */
607 bits = td->options & NAND_BBT_NRBITS_MSK;
608
609 for (i = 0; i < chips; i++) {
610 /* Reset version information */
611 td->version[i] = 0;
612 td->pages[i] = -1;
613 /* Scan the maximum number of blocks */
614 for (block = 0; block < td->maxblocks; block++) {
615
616 int actblock = startblock + dir * block;
617 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
618
619 /* Read first page */
620 scan_read(mtd, buf, offs, mtd->writesize, td);
621 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
622 td->pages[i] = actblock << blocktopage;
623 if (td->options & NAND_BBT_VERSION) {
624 offs = bbt_get_ver_offs(mtd, td);
625 td->version[i] = buf[offs];
626 }
627 break;
628 }
629 }
630 startblock += this->chipsize >> this->bbt_erase_shift;
631 }
632 /* Check, if we found a bbt for each requested chip */
633 for (i = 0; i < chips; i++) {
634 if (td->pages[i] == -1)
635 pr_warn("Bad block table not found for chip %d\n", i);
636 else
637 pr_info("Bad block table found at page %d, version "
638 "0x%02X\n", td->pages[i], td->version[i]);
639 }
640 return 0;
641 }
642
643 /**
644 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
645 * @mtd: MTD device structure
646 * @buf: temporary buffer
647 * @td: descriptor for the bad block table
648 * @md: descriptor for the bad block table mirror
649 *
650 * Search and read the bad block table(s).
651 */
652 static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
653 struct nand_bbt_descr *td,
654 struct nand_bbt_descr *md)
655 {
656 /* Search the primary table */
657 search_bbt(mtd, buf, td);
658
659 /* Search the mirror table */
660 if (md)
661 search_bbt(mtd, buf, md);
662 }
663
664 /**
665 * write_bbt - [GENERIC] (Re)write the bad block table
666 * @mtd: MTD device structure
667 * @buf: temporary buffer
668 * @td: descriptor for the bad block table
669 * @md: descriptor for the bad block table mirror
670 * @chipsel: selector for a specific chip, -1 for all
671 *
672 * (Re)write the bad block table.
673 */
674 static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
675 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
676 int chipsel)
677 {
678 struct nand_chip *this = mtd->priv;
679 struct erase_info einfo;
680 int i, res, chip = 0;
681 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
682 int nrchips, pageoffs, ooboffs;
683 uint8_t msk[4];
684 uint8_t rcode = td->reserved_block_code;
685 size_t retlen, len = 0;
686 loff_t to;
687 struct mtd_oob_ops ops;
688
689 ops.ooblen = mtd->oobsize;
690 ops.ooboffs = 0;
691 ops.datbuf = NULL;
692 ops.mode = MTD_OPS_PLACE_OOB;
693
694 if (!rcode)
695 rcode = 0xff;
696 /* Write bad block table per chip rather than per device? */
697 if (td->options & NAND_BBT_PERCHIP) {
698 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
699 /* Full device write or specific chip? */
700 if (chipsel == -1) {
701 nrchips = this->numchips;
702 } else {
703 nrchips = chipsel + 1;
704 chip = chipsel;
705 }
706 } else {
707 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
708 nrchips = 1;
709 }
710
711 /* Loop through the chips */
712 for (; chip < nrchips; chip++) {
713 /*
714 * There was already a version of the table, reuse the page
715 * This applies for absolute placement too, as we have the
716 * page nr. in td->pages.
717 */
718 if (td->pages[chip] != -1) {
719 page = td->pages[chip];
720 goto write;
721 }
722
723 /*
724 * Automatic placement of the bad block table. Search direction
725 * top -> down?
726 */
727 if (td->options & NAND_BBT_LASTBLOCK) {
728 startblock = numblocks * (chip + 1) - 1;
729 dir = -1;
730 } else {
731 startblock = chip * numblocks;
732 dir = 1;
733 }
734
735 for (i = 0; i < td->maxblocks; i++) {
736 int block = startblock + dir * i;
737 /* Check, if the block is bad */
738 switch (bbt_get_entry(this, block)) {
739 case BBT_BLOCK_WORN:
740 case BBT_BLOCK_FACTORY_BAD:
741 continue;
742 }
743 page = block <<
744 (this->bbt_erase_shift - this->page_shift);
745 /* Check, if the block is used by the mirror table */
746 if (!md || md->pages[chip] != page)
747 goto write;
748 }
749 pr_err("No space left to write bad block table\n");
750 return -ENOSPC;
751 write:
752
753 /* Set up shift count and masks for the flash table */
754 bits = td->options & NAND_BBT_NRBITS_MSK;
755 msk[2] = ~rcode;
756 switch (bits) {
757 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
758 msk[3] = 0x01;
759 break;
760 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
761 msk[3] = 0x03;
762 break;
763 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
764 msk[3] = 0x0f;
765 break;
766 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
767 msk[3] = 0xff;
768 break;
769 default: return -EINVAL;
770 }
771
772 to = ((loff_t)page) << this->page_shift;
773
774 /* Must we save the block contents? */
775 if (td->options & NAND_BBT_SAVECONTENT) {
776 /* Make it block aligned */
777 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
778 len = 1 << this->bbt_erase_shift;
779 res = mtd_read(mtd, to, len, &retlen, buf);
780 if (res < 0) {
781 if (retlen != len) {
782 pr_info("nand_bbt: error reading block "
783 "for writing the bad block table\n");
784 return res;
785 }
786 pr_warn("nand_bbt: ECC error while reading "
787 "block for writing bad block table\n");
788 }
789 /* Read oob data */
790 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
791 ops.oobbuf = &buf[len];
792 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
793 if (res < 0 || ops.oobretlen != ops.ooblen)
794 goto outerr;
795
796 /* Calc the byte offset in the buffer */
797 pageoffs = page - (int)(to >> this->page_shift);
798 offs = pageoffs << this->page_shift;
799 /* Preset the bbt area with 0xff */
800 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
801 ooboffs = len + (pageoffs * mtd->oobsize);
802
803 } else if (td->options & NAND_BBT_NO_OOB) {
804 ooboffs = 0;
805 offs = td->len;
806 /* The version byte */
807 if (td->options & NAND_BBT_VERSION)
808 offs++;
809 /* Calc length */
810 len = (size_t)(numblocks >> sft);
811 len += offs;
812 /* Make it page aligned! */
813 len = ALIGN(len, mtd->writesize);
814 /* Preset the buffer with 0xff */
815 memset(buf, 0xff, len);
816 /* Pattern is located at the begin of first page */
817 memcpy(buf, td->pattern, td->len);
818 } else {
819 /* Calc length */
820 len = (size_t)(numblocks >> sft);
821 /* Make it page aligned! */
822 len = ALIGN(len, mtd->writesize);
823 /* Preset the buffer with 0xff */
824 memset(buf, 0xff, len +
825 (len >> this->page_shift)* mtd->oobsize);
826 offs = 0;
827 ooboffs = len;
828 /* Pattern is located in oob area of first page */
829 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
830 }
831
832 if (td->options & NAND_BBT_VERSION)
833 buf[ooboffs + td->veroffs] = td->version[chip];
834
835 /* Walk through the memory table */
836 for (i = 0; i < numblocks; i++) {
837 uint8_t dat;
838 int sftcnt = (i << (3 - sft)) & sftmsk;
839 dat = bbt_get_entry(this, chip * numblocks + i);
840 /* Do not store the reserved bbt blocks! */
841 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
842 }
843
844 memset(&einfo, 0, sizeof(einfo));
845 einfo.mtd = mtd;
846 einfo.addr = to;
847 einfo.len = 1 << this->bbt_erase_shift;
848 res = nand_erase_nand(mtd, &einfo, 1);
849 if (res < 0)
850 goto outerr;
851
852 res = scan_write_bbt(mtd, to, len, buf,
853 td->options & NAND_BBT_NO_OOB ? NULL :
854 &buf[len]);
855 if (res < 0)
856 goto outerr;
857
858 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
859 (unsigned long long)to, td->version[chip]);
860
861 /* Mark it as used */
862 td->pages[chip] = page;
863 }
864 return 0;
865
866 outerr:
867 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
868 return res;
869 }
870
871 /**
872 * nand_memory_bbt - [GENERIC] create a memory based bad block table
873 * @mtd: MTD device structure
874 * @bd: descriptor for the good/bad block search pattern
875 *
876 * The function creates a memory based bbt by scanning the device for
877 * manufacturer / software marked good / bad blocks.
878 */
879 static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
880 {
881 struct nand_chip *this = mtd->priv;
882
883 bd->options &= ~NAND_BBT_SCANEMPTY;
884 return create_bbt(mtd, this->buffers->databuf, bd, -1);
885 }
886
887 /**
888 * check_create - [GENERIC] create and write bbt(s) if necessary
889 * @mtd: MTD device structure
890 * @buf: temporary buffer
891 * @bd: descriptor for the good/bad block search pattern
892 *
893 * The function checks the results of the previous call to read_bbt and creates
894 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
895 * for the chip/device. Update is necessary if one of the tables is missing or
896 * the version nr. of one table is less than the other.
897 */
898 static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
899 {
900 int i, chips, writeops, create, chipsel, res, res2;
901 struct nand_chip *this = mtd->priv;
902 struct nand_bbt_descr *td = this->bbt_td;
903 struct nand_bbt_descr *md = this->bbt_md;
904 struct nand_bbt_descr *rd, *rd2;
905
906 /* Do we have a bbt per chip? */
907 if (td->options & NAND_BBT_PERCHIP)
908 chips = this->numchips;
909 else
910 chips = 1;
911
912 for (i = 0; i < chips; i++) {
913 writeops = 0;
914 create = 0;
915 rd = NULL;
916 rd2 = NULL;
917 res = res2 = 0;
918 /* Per chip or per device? */
919 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
920 /* Mirrored table available? */
921 if (md) {
922 if (td->pages[i] == -1 && md->pages[i] == -1) {
923 create = 1;
924 writeops = 0x03;
925 } else if (td->pages[i] == -1) {
926 rd = md;
927 writeops = 0x01;
928 } else if (md->pages[i] == -1) {
929 rd = td;
930 writeops = 0x02;
931 } else if (td->version[i] == md->version[i]) {
932 rd = td;
933 if (!(td->options & NAND_BBT_VERSION))
934 rd2 = md;
935 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
936 rd = td;
937 writeops = 0x02;
938 } else {
939 rd = md;
940 writeops = 0x01;
941 }
942 } else {
943 if (td->pages[i] == -1) {
944 create = 1;
945 writeops = 0x01;
946 } else {
947 rd = td;
948 }
949 }
950
951 if (create) {
952 /* Create the bad block table by scanning the device? */
953 if (!(td->options & NAND_BBT_CREATE))
954 continue;
955
956 /* Create the table in memory by scanning the chip(s) */
957 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
958 create_bbt(mtd, buf, bd, chipsel);
959
960 td->version[i] = 1;
961 if (md)
962 md->version[i] = 1;
963 }
964
965 /* Read back first? */
966 if (rd) {
967 res = read_abs_bbt(mtd, buf, rd, chipsel);
968 if (mtd_is_eccerr(res)) {
969 /* Mark table as invalid */
970 rd->pages[i] = -1;
971 rd->version[i] = 0;
972 i--;
973 continue;
974 }
975 }
976 /* If they weren't versioned, read both */
977 if (rd2) {
978 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
979 if (mtd_is_eccerr(res2)) {
980 /* Mark table as invalid */
981 rd2->pages[i] = -1;
982 rd2->version[i] = 0;
983 i--;
984 continue;
985 }
986 }
987
988 /* Scrub the flash table(s)? */
989 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
990 writeops = 0x03;
991
992 /* Update version numbers before writing */
993 if (md) {
994 td->version[i] = max(td->version[i], md->version[i]);
995 md->version[i] = td->version[i];
996 }
997
998 /* Write the bad block table to the device? */
999 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
1000 res = write_bbt(mtd, buf, td, md, chipsel);
1001 if (res < 0)
1002 return res;
1003 }
1004
1005 /* Write the mirror bad block table to the device? */
1006 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
1007 res = write_bbt(mtd, buf, md, td, chipsel);
1008 if (res < 0)
1009 return res;
1010 }
1011 }
1012 return 0;
1013 }
1014
1015 /**
1016 * mark_bbt_regions - [GENERIC] mark the bad block table regions
1017 * @mtd: MTD device structure
1018 * @td: bad block table descriptor
1019 *
1020 * The bad block table regions are marked as "bad" to prevent accidental
1021 * erasures / writes. The regions are identified by the mark 0x02.
1022 */
1023 static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
1024 {
1025 struct nand_chip *this = mtd->priv;
1026 int i, j, chips, block, nrblocks, update;
1027 uint8_t oldval;
1028
1029 /* Do we have a bbt per chip? */
1030 if (td->options & NAND_BBT_PERCHIP) {
1031 chips = this->numchips;
1032 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1033 } else {
1034 chips = 1;
1035 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
1036 }
1037
1038 for (i = 0; i < chips; i++) {
1039 if ((td->options & NAND_BBT_ABSPAGE) ||
1040 !(td->options & NAND_BBT_WRITE)) {
1041 if (td->pages[i] == -1)
1042 continue;
1043 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
1044 oldval = bbt_get_entry(this, block);
1045 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1046 if ((oldval != BBT_BLOCK_RESERVED) &&
1047 td->reserved_block_code)
1048 nand_update_bbt(mtd, (loff_t)block <<
1049 this->bbt_erase_shift);
1050 continue;
1051 }
1052 update = 0;
1053 if (td->options & NAND_BBT_LASTBLOCK)
1054 block = ((i + 1) * nrblocks) - td->maxblocks;
1055 else
1056 block = i * nrblocks;
1057 for (j = 0; j < td->maxblocks; j++) {
1058 oldval = bbt_get_entry(this, block);
1059 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1060 if (oldval != BBT_BLOCK_RESERVED)
1061 update = 1;
1062 block++;
1063 }
1064 /*
1065 * If we want reserved blocks to be recorded to flash, and some
1066 * new ones have been marked, then we need to update the stored
1067 * bbts. This should only happen once.
1068 */
1069 if (update && td->reserved_block_code)
1070 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1071 this->bbt_erase_shift);
1072 }
1073 }
1074
1075 /**
1076 * verify_bbt_descr - verify the bad block description
1077 * @mtd: MTD device structure
1078 * @bd: the table to verify
1079 *
1080 * This functions performs a few sanity checks on the bad block description
1081 * table.
1082 */
1083 static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1084 {
1085 struct nand_chip *this = mtd->priv;
1086 u32 pattern_len;
1087 u32 bits;
1088 u32 table_size;
1089
1090 if (!bd)
1091 return;
1092
1093 pattern_len = bd->len;
1094 bits = bd->options & NAND_BBT_NRBITS_MSK;
1095
1096 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1097 !(this->bbt_options & NAND_BBT_USE_FLASH));
1098 BUG_ON(!bits);
1099
1100 if (bd->options & NAND_BBT_VERSION)
1101 pattern_len++;
1102
1103 if (bd->options & NAND_BBT_NO_OOB) {
1104 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1105 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
1106 BUG_ON(bd->offs);
1107 if (bd->options & NAND_BBT_VERSION)
1108 BUG_ON(bd->veroffs != bd->len);
1109 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1110 }
1111
1112 if (bd->options & NAND_BBT_PERCHIP)
1113 table_size = this->chipsize >> this->bbt_erase_shift;
1114 else
1115 table_size = mtd->size >> this->bbt_erase_shift;
1116 table_size >>= 3;
1117 table_size *= bits;
1118 if (bd->options & NAND_BBT_NO_OOB)
1119 table_size += pattern_len;
1120 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1121 }
1122
1123 /**
1124 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
1125 * @mtd: MTD device structure
1126 * @bd: descriptor for the good/bad block search pattern
1127 *
1128 * The function checks, if a bad block table(s) is/are already available. If
1129 * not it scans the device for manufacturer marked good / bad blocks and writes
1130 * the bad block table(s) to the selected place.
1131 *
1132 * The bad block table memory is allocated here. It must be freed by calling
1133 * the nand_free_bbt function.
1134 */
1135 int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1136 {
1137 struct nand_chip *this = mtd->priv;
1138 int len, res = 0;
1139 uint8_t *buf;
1140 struct nand_bbt_descr *td = this->bbt_td;
1141 struct nand_bbt_descr *md = this->bbt_md;
1142
1143 len = mtd->size >> (this->bbt_erase_shift + 2);
1144 /*
1145 * Allocate memory (2bit per block) and clear the memory bad block
1146 * table.
1147 */
1148 this->bbt = kzalloc(len, GFP_KERNEL);
1149 if (!this->bbt)
1150 return -ENOMEM;
1151
1152 /*
1153 * If no primary table decriptor is given, scan the device to build a
1154 * memory based bad block table.
1155 */
1156 if (!td) {
1157 if ((res = nand_memory_bbt(mtd, bd))) {
1158 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
1159 kfree(this->bbt);
1160 this->bbt = NULL;
1161 }
1162 return res;
1163 }
1164 verify_bbt_descr(mtd, td);
1165 verify_bbt_descr(mtd, md);
1166
1167 /* Allocate a temporary buffer for one eraseblock incl. oob */
1168 len = (1 << this->bbt_erase_shift);
1169 len += (len >> this->page_shift) * mtd->oobsize;
1170 buf = vmalloc(len);
1171 if (!buf) {
1172 kfree(this->bbt);
1173 this->bbt = NULL;
1174 return -ENOMEM;
1175 }
1176
1177 /* Is the bbt at a given page? */
1178 if (td->options & NAND_BBT_ABSPAGE) {
1179 read_abs_bbts(mtd, buf, td, md);
1180 } else {
1181 /* Search the bad block table using a pattern in oob */
1182 search_read_bbts(mtd, buf, td, md);
1183 }
1184
1185 res = check_create(mtd, buf, bd);
1186
1187 /* Prevent the bbt regions from erasing / writing */
1188 mark_bbt_region(mtd, td);
1189 if (md)
1190 mark_bbt_region(mtd, md);
1191
1192 vfree(buf);
1193 return res;
1194 }
1195
1196 /**
1197 * nand_update_bbt - [NAND Interface] update bad block table(s)
1198 * @mtd: MTD device structure
1199 * @offs: the offset of the newly marked block
1200 *
1201 * The function updates the bad block table(s).
1202 */
1203 int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
1204 {
1205 struct nand_chip *this = mtd->priv;
1206 int len, res = 0;
1207 int chip, chipsel;
1208 uint8_t *buf;
1209 struct nand_bbt_descr *td = this->bbt_td;
1210 struct nand_bbt_descr *md = this->bbt_md;
1211
1212 if (!this->bbt || !td)
1213 return -EINVAL;
1214
1215 /* Allocate a temporary buffer for one eraseblock incl. oob */
1216 len = (1 << this->bbt_erase_shift);
1217 len += (len >> this->page_shift) * mtd->oobsize;
1218 buf = kmalloc(len, GFP_KERNEL);
1219 if (!buf)
1220 return -ENOMEM;
1221
1222 /* Do we have a bbt per chip? */
1223 if (td->options & NAND_BBT_PERCHIP) {
1224 chip = (int)(offs >> this->chip_shift);
1225 chipsel = chip;
1226 } else {
1227 chip = 0;
1228 chipsel = -1;
1229 }
1230
1231 td->version[chip]++;
1232 if (md)
1233 md->version[chip]++;
1234
1235 /* Write the bad block table to the device? */
1236 if (td->options & NAND_BBT_WRITE) {
1237 res = write_bbt(mtd, buf, td, md, chipsel);
1238 if (res < 0)
1239 goto out;
1240 }
1241 /* Write the mirror bad block table to the device? */
1242 if (md && (md->options & NAND_BBT_WRITE)) {
1243 res = write_bbt(mtd, buf, md, td, chipsel);
1244 }
1245
1246 out:
1247 kfree(buf);
1248 return res;
1249 }
1250
1251 /*
1252 * Define some generic bad / good block scan pattern which are used
1253 * while scanning a device for factory marked good / bad blocks.
1254 */
1255 static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1256
1257 /* Generic flash bbt descriptors */
1258 static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1259 static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1260
1261 static struct nand_bbt_descr bbt_main_descr = {
1262 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1263 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1264 .offs = 8,
1265 .len = 4,
1266 .veroffs = 12,
1267 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
1268 .pattern = bbt_pattern
1269 };
1270
1271 static struct nand_bbt_descr bbt_mirror_descr = {
1272 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1273 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1274 .offs = 8,
1275 .len = 4,
1276 .veroffs = 12,
1277 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
1278 .pattern = mirror_pattern
1279 };
1280
1281 static struct nand_bbt_descr bbt_main_no_oob_descr = {
1282 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1283 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1284 | NAND_BBT_NO_OOB,
1285 .len = 4,
1286 .veroffs = 4,
1287 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
1288 .pattern = bbt_pattern
1289 };
1290
1291 static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
1292 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1293 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1294 | NAND_BBT_NO_OOB,
1295 .len = 4,
1296 .veroffs = 4,
1297 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
1298 .pattern = mirror_pattern
1299 };
1300
1301 #define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
1302 /**
1303 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1304 * @this: NAND chip to create descriptor for
1305 *
1306 * This function allocates and initializes a nand_bbt_descr for BBM detection
1307 * based on the properties of @this. The new descriptor is stored in
1308 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1309 * passed to this function.
1310 */
1311 static int nand_create_badblock_pattern(struct nand_chip *this)
1312 {
1313 struct nand_bbt_descr *bd;
1314 if (this->badblock_pattern) {
1315 pr_warn("Bad block pattern already allocated; not replacing\n");
1316 return -EINVAL;
1317 }
1318 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
1319 if (!bd)
1320 return -ENOMEM;
1321 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
1322 bd->offs = this->badblockpos;
1323 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1324 bd->pattern = scan_ff_pattern;
1325 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1326 this->badblock_pattern = bd;
1327 return 0;
1328 }
1329
1330 /**
1331 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
1332 * @mtd: MTD device structure
1333 *
1334 * This function selects the default bad block table support for the device and
1335 * calls the nand_scan_bbt function.
1336 */
1337 int nand_default_bbt(struct mtd_info *mtd)
1338 {
1339 struct nand_chip *this = mtd->priv;
1340
1341 /* Is a flash based bad block table requested? */
1342 if (this->bbt_options & NAND_BBT_USE_FLASH) {
1343 /* Use the default pattern descriptors */
1344 if (!this->bbt_td) {
1345 if (this->bbt_options & NAND_BBT_NO_OOB) {
1346 this->bbt_td = &bbt_main_no_oob_descr;
1347 this->bbt_md = &bbt_mirror_no_oob_descr;
1348 } else {
1349 this->bbt_td = &bbt_main_descr;
1350 this->bbt_md = &bbt_mirror_descr;
1351 }
1352 }
1353 } else {
1354 this->bbt_td = NULL;
1355 this->bbt_md = NULL;
1356 }
1357
1358 if (!this->badblock_pattern)
1359 nand_create_badblock_pattern(this);
1360
1361 return nand_scan_bbt(mtd, this->badblock_pattern);
1362 }
1363
1364 /**
1365 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
1366 * @mtd: MTD device structure
1367 * @offs: offset in the device
1368 * @allowbbt: allow access to bad block table region
1369 */
1370 int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
1371 {
1372 struct nand_chip *this = mtd->priv;
1373 int block;
1374 uint8_t res;
1375
1376 block = (int)(offs >> this->bbt_erase_shift);
1377 res = bbt_get_entry(this, block);
1378
1379 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1380 "(block %d) 0x%02x\n",
1381 (unsigned int)offs, block, res);
1382
1383 switch ((int)res) {
1384 case BBT_BLOCK_GOOD:
1385 return 0;
1386 case BBT_BLOCK_WORN:
1387 return 1;
1388 case BBT_BLOCK_RESERVED:
1389 return allowbbt ? 0 : 1;
1390 }
1391 return 1;
1392 }
1393
1394 EXPORT_SYMBOL(nand_scan_bbt);
1395 EXPORT_SYMBOL(nand_default_bbt);
1396 EXPORT_SYMBOL_GPL(nand_update_bbt);
This page took 0.153108 seconds and 6 git commands to generate.