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