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