This source file includes following definitions.
- check_short_pattern
- create_bbt
- onenand_memory_bbt
- onenand_isbad_bbt
- onenand_scan_bbt
- onenand_default_bbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14 #include <linux/slab.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/onenand.h>
17 #include <linux/export.h>
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 static int check_short_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
33 {
34 int i;
35 uint8_t *p = buf;
36
37
38 for (i = 0; i < td->len; i++) {
39 if (p[i] != td->pattern[i])
40 return -1;
41 }
42 return 0;
43 }
44
45
46
47
48
49
50
51
52
53
54
55
56 static int create_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd, int chip)
57 {
58 struct onenand_chip *this = mtd->priv;
59 struct bbm_info *bbm = this->bbm;
60 int i, j, numblocks, len, scanlen;
61 int startblock;
62 loff_t from;
63 size_t readlen, ooblen;
64 struct mtd_oob_ops ops;
65 int rgn;
66
67 printk(KERN_INFO "Scanning device for bad blocks\n");
68
69 len = 2;
70
71
72 scanlen = ooblen = 0;
73 readlen = bd->len;
74
75
76
77
78
79 numblocks = this->chipsize >> (bbm->bbt_erase_shift - 1);
80 startblock = 0;
81 from = 0;
82
83 ops.mode = MTD_OPS_PLACE_OOB;
84 ops.ooblen = readlen;
85 ops.oobbuf = buf;
86 ops.len = ops.ooboffs = ops.retlen = ops.oobretlen = 0;
87
88 for (i = startblock; i < numblocks; ) {
89 int ret;
90
91 for (j = 0; j < len; j++) {
92
93
94 ret = onenand_bbt_read_oob(mtd,
95 from + j * this->writesize + bd->offs, &ops);
96
97
98 if (ret == ONENAND_BBT_READ_FATAL_ERROR)
99 return -EIO;
100
101 if (ret || check_short_pattern(&buf[j * scanlen],
102 scanlen, this->writesize, bd)) {
103 bbm->bbt[i >> 3] |= 0x03 << (i & 0x6);
104 printk(KERN_INFO "OneNAND eraseblock %d is an "
105 "initial bad block\n", i >> 1);
106 mtd->ecc_stats.badblocks++;
107 break;
108 }
109 }
110 i += 2;
111
112 if (FLEXONENAND(this)) {
113 rgn = flexonenand_region(mtd, from);
114 from += mtd->eraseregions[rgn].erasesize;
115 } else
116 from += (1 << bbm->bbt_erase_shift);
117 }
118
119 return 0;
120 }
121
122
123
124
125
126
127
128
129
130
131 static inline int onenand_memory_bbt (struct mtd_info *mtd, struct nand_bbt_descr *bd)
132 {
133 struct onenand_chip *this = mtd->priv;
134
135 return create_bbt(mtd, this->page_buf, bd, -1);
136 }
137
138
139
140
141
142
143
144 static int onenand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
145 {
146 struct onenand_chip *this = mtd->priv;
147 struct bbm_info *bbm = this->bbm;
148 int block;
149 uint8_t res;
150
151
152 block = (int) (onenand_block(this, offs) << 1);
153 res = (bbm->bbt[block >> 3] >> (block & 0x06)) & 0x03;
154
155 pr_debug("onenand_isbad_bbt: bbt info for offs 0x%08x: (block %d) 0x%02x\n",
156 (unsigned int) offs, block >> 1, res);
157
158 switch ((int) res) {
159 case 0x00: return 0;
160 case 0x01: return 1;
161 case 0x02: return allowbbt ? 0 : 1;
162 }
163
164 return 1;
165 }
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181 static int onenand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
182 {
183 struct onenand_chip *this = mtd->priv;
184 struct bbm_info *bbm = this->bbm;
185 int len, ret = 0;
186
187 len = this->chipsize >> (this->erase_shift + 2);
188
189 bbm->bbt = kzalloc(len, GFP_KERNEL);
190 if (!bbm->bbt)
191 return -ENOMEM;
192
193
194 bbm->bbt_erase_shift = this->erase_shift;
195
196 if (!bbm->isbad_bbt)
197 bbm->isbad_bbt = onenand_isbad_bbt;
198
199
200 if ((ret = onenand_memory_bbt(mtd, bd))) {
201 printk(KERN_ERR "onenand_scan_bbt: Can't scan flash and build the RAM-based BBT\n");
202 kfree(bbm->bbt);
203 bbm->bbt = NULL;
204 }
205
206 return ret;
207 }
208
209
210
211
212
213 static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
214
215 static struct nand_bbt_descr largepage_memorybased = {
216 .options = 0,
217 .offs = 0,
218 .len = 2,
219 .pattern = scan_ff_pattern,
220 };
221
222
223
224
225
226
227
228
229 int onenand_default_bbt(struct mtd_info *mtd)
230 {
231 struct onenand_chip *this = mtd->priv;
232 struct bbm_info *bbm;
233
234 this->bbm = kzalloc(sizeof(struct bbm_info), GFP_KERNEL);
235 if (!this->bbm)
236 return -ENOMEM;
237
238 bbm = this->bbm;
239
240
241 if (!bbm->badblock_pattern)
242 bbm->badblock_pattern = &largepage_memorybased;
243
244 return onenand_scan_bbt(mtd, bbm->badblock_pattern);
245 }