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