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