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