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