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