blob: 84479473b6d4408f1fcef744ef845ec1f1b6a798 [file] [log] [blame]
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02006 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02007 * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de)
8 *
William Juul52c07962007-10-31 13:53:06 +01009 * $Id: nand_bbt.c,v 1.36 2005/11/07 11:14:30 gleixner Exp $
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 * Description:
16 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020017 * When nand_scan_bbt is called, then it tries to find the bad block table
18 * depending on the options in the bbt descriptor(s). If a bbt is found
19 * then the contents are read and the memory based bbt is created. If a
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020020 * mirrored bbt is selected then the mirror is searched too and the
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020021 * versions are compared. If the mirror has a greater version number
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020022 * than the mirror bbt is used to build the memory based bbt.
23 * If the tables are not versioned, then we "or" the bad block information.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020024 * If one of the bbt's is out of date or does not exist it is (re)created.
25 * If no bbt exists at all then the device is scanned for factory marked
26 * good / bad blocks and the bad block tables are created.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020027 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020028 * For manufacturer created bbts like the one found on M-SYS DOC devices
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020029 * the bbt is searched and read but never created
30 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020031 * The autogenerated bad block table is located in the last good blocks
32 * of the device. The table is mirrored, so it can be updated eventually.
33 * The table is marked in the oob area with an ident pattern and a version
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020034 * number which indicates which of both tables is more up to date.
35 *
36 * The table uses 2 bits per block
Wolfgang Denka1be4762008-05-20 16:00:29 +020037 * 11b: block is good
38 * 00b: block is factory marked bad
39 * 01b, 10b: block is marked bad due to wear
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020040 *
41 * The memory bad block table uses the following scheme:
42 * 00b: block is good
43 * 01b: block is marked bad due to wear
44 * 10b: block is reserved (to protect the bbt area)
45 * 11b: block is factory marked bad
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020046 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020047 * Multichip devices like DOC store the bad block info per floor.
48 *
49 * Following assumptions are made:
50 * - bbts start at a page boundary, if autolocated on a block boundary
William Juul52c07962007-10-31 13:53:06 +010051 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020052 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020053 */
54
55#include <common.h>
56
Jon Loeliger82ecaad2007-07-09 17:39:42 -050057#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020058
59#include <malloc.h>
60#include <linux/mtd/compat.h>
61#include <linux/mtd/mtd.h>
62#include <linux/mtd/nand.h>
63
64#include <asm/errno.h>
65
William Juul52c07962007-10-31 13:53:06 +010066/* XXX U-BOOT XXX */
67#if 0
68#include <linux/slab.h>
69#include <linux/types.h>
70#include <linux/mtd/mtd.h>
71#include <linux/mtd/nand.h>
72#include <linux/mtd/nand_ecc.h>
73#include <linux/mtd/compatmac.h>
74#include <linux/bitops.h>
75#include <linux/delay.h>
76#include <linux/vmalloc.h>
77#endif
78
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020079/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020080 * check_pattern - [GENERIC] check if a pattern is in the buffer
81 * @buf: the buffer to search
82 * @len: the length of buffer to search
83 * @paglen: the pagelength
84 * @td: search pattern descriptor
85 *
86 * Check for a pattern at the given place. Used to search bad block
87 * tables and good / bad block identifiers.
88 * If the SCAN_EMPTY option is set then check, if all bytes except the
89 * pattern area contain 0xff
90 *
91*/
William Juul52c07962007-10-31 13:53:06 +010092static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020093{
William Juul52c07962007-10-31 13:53:06 +010094 int i, end = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020095 uint8_t *p = buf;
96
97 end = paglen + td->offs;
98 if (td->options & NAND_BBT_SCANEMPTY) {
99 for (i = 0; i < end; i++) {
100 if (p[i] != 0xff)
101 return -1;
102 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200103 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200104 p += end;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200105
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200106 /* Compare the pattern */
107 for (i = 0; i < td->len; i++) {
108 if (p[i] != td->pattern[i])
109 return -1;
110 }
111
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200112 if (td->options & NAND_BBT_SCANEMPTY) {
William Juul52c07962007-10-31 13:53:06 +0100113 p += td->len;
114 end += td->len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200115 for (i = end; i < len; i++) {
116 if (*p++ != 0xff)
117 return -1;
118 }
119 }
120 return 0;
121}
122
123/**
William Juul52c07962007-10-31 13:53:06 +0100124 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
125 * @buf: the buffer to search
126 * @td: search pattern descriptor
127 *
128 * Check for a pattern at the given place. Used to search bad block
129 * tables and good / bad block identifiers. Same as check_pattern, but
130 * no optional empty check
131 *
132*/
133static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
134{
135 int i;
136 uint8_t *p = buf;
137
138 /* Compare the pattern */
139 for (i = 0; i < td->len; i++) {
140 if (p[td->offs + i] != td->pattern[i])
141 return -1;
142 }
143 return 0;
144}
145
146/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200147 * read_bbt - [GENERIC] Read the bad block table starting from page
148 * @mtd: MTD device structure
149 * @buf: temporary buffer
150 * @page: the starting page
151 * @num: the number of bbt descriptors to read
152 * @bits: number of bits per block
153 * @offs: offset in the memory table
154 * @reserved_block_code: Pattern to identify reserved blocks
155 *
156 * Read the bad block table starting from page.
157 *
158 */
William Juul52c07962007-10-31 13:53:06 +0100159static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
160 int bits, int offs, int reserved_block_code)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200161{
162 int res, i, j, act = 0;
163 struct nand_chip *this = mtd->priv;
164 size_t retlen, len, totlen;
165 loff_t from;
166 uint8_t msk = (uint8_t) ((1 << bits) - 1);
167
168 totlen = (num * bits) >> 3;
William Juul52c07962007-10-31 13:53:06 +0100169 from = ((loff_t) page) << this->page_shift;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200170
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200171 while (totlen) {
William Juul52c07962007-10-31 13:53:06 +0100172 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
173 res = mtd->read(mtd, from, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200174 if (res < 0) {
175 if (retlen != len) {
William Juul52c07962007-10-31 13:53:06 +0100176 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200177 return res;
178 }
William Juul52c07962007-10-31 13:53:06 +0100179 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200180 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200181
182 /* Analyse data */
183 for (i = 0; i < len; i++) {
184 uint8_t dat = buf[i];
185 for (j = 0; j < 8; j += bits, act += 2) {
186 uint8_t tmp = (dat >> j) & msk;
187 if (tmp == msk)
188 continue;
William Juul52c07962007-10-31 13:53:06 +0100189 if (reserved_block_code && (tmp == reserved_block_code)) {
190 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%08x\n",
191 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200192 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
William Juul52c07962007-10-31 13:53:06 +0100193 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200194 continue;
195 }
196 /* Leave it for now, if its matured we can move this
197 * message to MTD_DEBUG_LEVEL0 */
William Juul52c07962007-10-31 13:53:06 +0100198 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%08x\n",
199 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200200 /* Factory marked bad or worn out ? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200201 if (tmp == 0)
202 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
203 else
204 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
William Juul52c07962007-10-31 13:53:06 +0100205 mtd->ecc_stats.badblocks++;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200206 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200207 }
208 totlen -= len;
209 from += len;
210 }
211 return 0;
212}
213
214/**
215 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
216 * @mtd: MTD device structure
217 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200218 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200219 * @chip: read the table for a specific chip, -1 read all chips.
220 * Applies only if NAND_BBT_PERCHIP option is set
221 *
222 * Read the bad block table for all chips starting at a given page
223 * We assume that the bbt bits are in consecutive order.
224*/
William Juul52c07962007-10-31 13:53:06 +0100225static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200226{
227 struct nand_chip *this = mtd->priv;
228 int res = 0, i;
229 int bits;
230
231 bits = td->options & NAND_BBT_NRBITS_MSK;
232 if (td->options & NAND_BBT_PERCHIP) {
233 int offs = 0;
234 for (i = 0; i < this->numchips; i++) {
235 if (chip == -1 || chip == i)
236 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
237 if (res)
238 return res;
239 offs += this->chipsize >> (this->bbt_erase_shift + 2);
240 }
241 } else {
242 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
243 if (res)
244 return res;
245 }
246 return 0;
247}
248
William Juul52c07962007-10-31 13:53:06 +0100249/*
250 * Scan read raw data from flash
251 */
252static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
253 size_t len)
254{
255 struct mtd_oob_ops ops;
256
257 ops.mode = MTD_OOB_RAW;
258 ops.ooboffs = 0;
259 ops.ooblen = mtd->oobsize;
260 ops.oobbuf = buf;
261 ops.datbuf = buf;
262 ops.len = len;
263
264 return mtd->read_oob(mtd, offs, &ops);
265}
266
267/*
268 * Scan write data with oob to flash
269 */
270static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
271 uint8_t *buf, uint8_t *oob)
272{
273 struct mtd_oob_ops ops;
274
275 ops.mode = MTD_OOB_PLACE;
276 ops.ooboffs = 0;
277 ops.ooblen = mtd->oobsize;
278 ops.datbuf = buf;
279 ops.oobbuf = oob;
280 ops.len = len;
281
282 return mtd->write_oob(mtd, offs, &ops);
283}
284
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200285/**
286 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
287 * @mtd: MTD device structure
288 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200289 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200290 * @md: descriptor for the bad block table mirror
291 *
292 * Read the bad block table(s) for all chips starting at a given page
293 * We assume that the bbt bits are in consecutive order.
294 *
295*/
William Juul52c07962007-10-31 13:53:06 +0100296static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
297 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200298{
299 struct nand_chip *this = mtd->priv;
300
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200301 /* Read the primary version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200302 if (td->options & NAND_BBT_VERSION) {
William Juul52c07962007-10-31 13:53:06 +0100303 scan_read_raw(mtd, buf, td->pages[0] << this->page_shift,
304 mtd->writesize);
305 td->version[0] = buf[mtd->writesize + td->veroffs];
306 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
307 td->pages[0], td->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200308 }
309
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200310 /* Read the mirror version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200311 if (md && (md->options & NAND_BBT_VERSION)) {
William Juul52c07962007-10-31 13:53:06 +0100312 scan_read_raw(mtd, buf, md->pages[0] << this->page_shift,
313 mtd->writesize);
314 md->version[0] = buf[mtd->writesize + md->veroffs];
315 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
316 md->pages[0], md->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200317 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200318 return 1;
319}
320
William Juul52c07962007-10-31 13:53:06 +0100321/*
322 * Scan a given block full
323 */
324static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
325 loff_t offs, uint8_t *buf, size_t readlen,
326 int scanlen, int len)
327{
328 int ret, j;
329
330 ret = scan_read_raw(mtd, buf, offs, readlen);
331 if (ret)
332 return ret;
333
334 for (j = 0; j < len; j++, buf += scanlen) {
335 if (check_pattern(buf, scanlen, mtd->writesize, bd))
336 return 1;
337 }
338 return 0;
339}
340
341/*
342 * Scan a given block partially
343 */
344static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
345 loff_t offs, uint8_t *buf, int len)
346{
347 struct mtd_oob_ops ops;
348 int j, ret;
349
350 ops.ooblen = mtd->oobsize;
351 ops.oobbuf = buf;
352 ops.ooboffs = 0;
353 ops.datbuf = NULL;
354 ops.mode = MTD_OOB_PLACE;
355
356 for (j = 0; j < len; j++) {
357 /*
358 * Read the full oob until read_oob is fixed to
359 * handle single byte reads for 16 bit
360 * buswidth
361 */
362 ret = mtd->read_oob(mtd, offs, &ops);
363 if (ret)
364 return ret;
365
366 if (check_short_pattern(buf, bd))
367 return 1;
368
369 offs += mtd->writesize;
370 }
371 return 0;
372}
373
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200374/**
375 * create_bbt - [GENERIC] Create a bad block table by scanning the device
376 * @mtd: MTD device structure
377 * @buf: temporary buffer
378 * @bd: descriptor for the good/bad block search pattern
379 * @chip: create the table for a specific chip, -1 read all chips.
380 * Applies only if NAND_BBT_PERCHIP option is set
381 *
382 * Create a bad block table by scanning the device
383 * for the given good/bad block identify pattern
384 */
William Juul52c07962007-10-31 13:53:06 +0100385static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
386 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200387{
388 struct nand_chip *this = mtd->priv;
William Juul52c07962007-10-31 13:53:06 +0100389 int i, numblocks, len, scanlen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200390 int startblock;
391 loff_t from;
William Juul52c07962007-10-31 13:53:06 +0100392 size_t readlen;
393
Stefan Roese4fe71432008-01-10 18:47:33 +0100394 MTDDEBUG (MTD_DEBUG_LEVEL0, "Scanning device for bad blocks\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200395
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200396 if (bd->options & NAND_BBT_SCANALLPAGES)
397 len = 1 << (this->bbt_erase_shift - this->page_shift);
398 else {
399 if (bd->options & NAND_BBT_SCAN2NDPAGE)
400 len = 2;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200401 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200402 len = 1;
403 }
William Juul52c07962007-10-31 13:53:06 +0100404
405 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
406 /* We need only read few bytes from the OOB area */
407 scanlen = 0;
408 readlen = bd->len;
409 } else {
410 /* Full page content should be read */
411 scanlen = mtd->writesize + mtd->oobsize;
412 readlen = len * mtd->writesize;
413 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200414
415 if (chip == -1) {
William Juul52c07962007-10-31 13:53:06 +0100416 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
417 * below as it makes shifting and masking less painful */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200418 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
419 startblock = 0;
420 from = 0;
421 } else {
422 if (chip >= this->numchips) {
William Juul52c07962007-10-31 13:53:06 +0100423 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
424 chip + 1, this->numchips);
425 return -EINVAL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200426 }
427 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
428 startblock = chip * numblocks;
429 numblocks += startblock;
430 from = startblock << (this->bbt_erase_shift - 1);
431 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200432
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200433 for (i = startblock; i < numblocks;) {
William Juul52c07962007-10-31 13:53:06 +0100434 int ret;
435
436 if (bd->options & NAND_BBT_SCANALLPAGES)
437 ret = scan_block_full(mtd, bd, from, buf, readlen,
438 scanlen, len);
439 else
440 ret = scan_block_fast(mtd, bd, from, buf, len);
441
442 if (ret < 0)
443 return ret;
444
445 if (ret) {
446 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Stefan Roese4fe71432008-01-10 18:47:33 +0100447 MTDDEBUG (MTD_DEBUG_LEVEL0,
448 "Bad eraseblock %d at 0x%08x\n",
449 i >> 1, (unsigned int)from);
William Juul52c07962007-10-31 13:53:06 +0100450 mtd->ecc_stats.badblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200451 }
William Juul52c07962007-10-31 13:53:06 +0100452
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200453 i += 2;
454 from += (1 << this->bbt_erase_shift);
455 }
William Juul52c07962007-10-31 13:53:06 +0100456 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200457}
458
459/**
460 * search_bbt - [GENERIC] scan the device for a specific bad block table
461 * @mtd: MTD device structure
462 * @buf: temporary buffer
463 * @td: descriptor for the bad block table
464 *
465 * Read the bad block table by searching for a given ident pattern.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200466 * Search is preformed either from the beginning up or from the end of
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200467 * the device downwards. The search starts always at the start of a
468 * block.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200469 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200470 * for a bbt, which contains the bad block information of this chip.
William Juul52c07962007-10-31 13:53:06 +0100471 * This is necessary to provide support for certain DOC devices.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200472 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200473 * The bbt ident pattern resides in the oob area of the first page
474 * in a block.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200475 */
William Juul52c07962007-10-31 13:53:06 +0100476static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200477{
478 struct nand_chip *this = mtd->priv;
479 int i, chips;
480 int bits, startblock, block, dir;
William Juul52c07962007-10-31 13:53:06 +0100481 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200482 int bbtblocks;
William Juul52c07962007-10-31 13:53:06 +0100483 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200484
485 /* Search direction top -> down ? */
486 if (td->options & NAND_BBT_LASTBLOCK) {
William Juul52c07962007-10-31 13:53:06 +0100487 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200488 dir = -1;
489 } else {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200490 startblock = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200491 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200492 }
493
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200494 /* Do we have a bbt per chip ? */
495 if (td->options & NAND_BBT_PERCHIP) {
496 chips = this->numchips;
497 bbtblocks = this->chipsize >> this->bbt_erase_shift;
498 startblock &= bbtblocks - 1;
499 } else {
500 chips = 1;
501 bbtblocks = mtd->size >> this->bbt_erase_shift;
502 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200503
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200504 /* Number of bits for each erase block in the bbt */
505 bits = td->options & NAND_BBT_NRBITS_MSK;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200506
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200507 for (i = 0; i < chips; i++) {
508 /* Reset version information */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200509 td->version[i] = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200510 td->pages[i] = -1;
511 /* Scan the maximum number of blocks */
512 for (block = 0; block < td->maxblocks; block++) {
William Juul52c07962007-10-31 13:53:06 +0100513
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200514 int actblock = startblock + dir * block;
William Juul52c07962007-10-31 13:53:06 +0100515 loff_t offs = actblock << this->bbt_erase_shift;
516
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200517 /* Read first page */
William Juul52c07962007-10-31 13:53:06 +0100518 scan_read_raw(mtd, buf, offs, mtd->writesize);
519 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
520 td->pages[i] = actblock << blocktopage;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200521 if (td->options & NAND_BBT_VERSION) {
William Juul52c07962007-10-31 13:53:06 +0100522 td->version[i] = buf[mtd->writesize + td->veroffs];
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200523 }
524 break;
525 }
526 }
527 startblock += this->chipsize >> this->bbt_erase_shift;
528 }
529 /* Check, if we found a bbt for each requested chip */
530 for (i = 0; i < chips; i++) {
531 if (td->pages[i] == -1)
William Juul52c07962007-10-31 13:53:06 +0100532 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200533 else
William Juul52c07962007-10-31 13:53:06 +0100534 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
535 td->version[i]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200536 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200537 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200538}
539
540/**
541 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
542 * @mtd: MTD device structure
543 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200544 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200545 * @md: descriptor for the bad block table mirror
546 *
547 * Search and read the bad block table(s)
548*/
William Juul52c07962007-10-31 13:53:06 +0100549static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200550{
551 /* Search the primary table */
William Juul52c07962007-10-31 13:53:06 +0100552 search_bbt(mtd, buf, td);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200553
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200554 /* Search the mirror table */
555 if (md)
William Juul52c07962007-10-31 13:53:06 +0100556 search_bbt(mtd, buf, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200557
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200558 /* Force result check */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200559 return 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200560}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200561
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200562/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200563 * write_bbt - [GENERIC] (Re)write the bad block table
564 *
565 * @mtd: MTD device structure
566 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200567 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200568 * @md: descriptor for the bad block table mirror
569 * @chipsel: selector for a specific chip, -1 for all
570 *
571 * (Re)write the bad block table
572 *
573*/
William Juul52c07962007-10-31 13:53:06 +0100574static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
575 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
576 int chipsel)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200577{
578 struct nand_chip *this = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200579 struct erase_info einfo;
580 int i, j, res, chip = 0;
581 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
William Juul52c07962007-10-31 13:53:06 +0100582 int nrchips, bbtoffs, pageoffs, ooboffs;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200583 uint8_t msk[4];
584 uint8_t rcode = td->reserved_block_code;
585 size_t retlen, len = 0;
586 loff_t to;
William Juul52c07962007-10-31 13:53:06 +0100587 struct mtd_oob_ops ops;
588
589 ops.ooblen = mtd->oobsize;
590 ops.ooboffs = 0;
591 ops.datbuf = NULL;
592 ops.mode = MTD_OOB_PLACE;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200593
594 if (!rcode)
595 rcode = 0xff;
596 /* Write bad block table per chip rather than per device ? */
597 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +0100598 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200599 /* Full device write or specific chip ? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200600 if (chipsel == -1) {
601 nrchips = this->numchips;
602 } else {
603 nrchips = chipsel + 1;
604 chip = chipsel;
605 }
606 } else {
William Juul52c07962007-10-31 13:53:06 +0100607 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200608 nrchips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200609 }
610
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200611 /* Loop through the chips */
612 for (; chip < nrchips; chip++) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200613
614 /* There was already a version of the table, reuse the page
615 * This applies for absolute placement too, as we have the
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200616 * page nr. in td->pages.
617 */
618 if (td->pages[chip] != -1) {
619 page = td->pages[chip];
620 goto write;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200621 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200622
623 /* Automatic placement of the bad block table */
624 /* Search direction top -> down ? */
625 if (td->options & NAND_BBT_LASTBLOCK) {
626 startblock = numblocks * (chip + 1) - 1;
627 dir = -1;
628 } else {
629 startblock = chip * numblocks;
630 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200631 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200632
633 for (i = 0; i < td->maxblocks; i++) {
634 int block = startblock + dir * i;
635 /* Check, if the block is bad */
William Juul52c07962007-10-31 13:53:06 +0100636 switch ((this->bbt[block >> 2] >>
637 (2 * (block & 0x03))) & 0x03) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200638 case 0x01:
639 case 0x03:
640 continue;
641 }
William Juul52c07962007-10-31 13:53:06 +0100642 page = block <<
643 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200644 /* Check, if the block is used by the mirror table */
645 if (!md || md->pages[chip] != page)
646 goto write;
647 }
William Juul52c07962007-10-31 13:53:06 +0100648 printk(KERN_ERR "No space left to write bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200649 return -ENOSPC;
William Juul52c07962007-10-31 13:53:06 +0100650 write:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200651
652 /* Set up shift count and masks for the flash table */
653 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juul52c07962007-10-31 13:53:06 +0100654 msk[2] = ~rcode;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200655 switch (bits) {
William Juul52c07962007-10-31 13:53:06 +0100656 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
657 msk[3] = 0x01;
658 break;
659 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
660 msk[3] = 0x03;
661 break;
662 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
663 msk[3] = 0x0f;
664 break;
665 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
666 msk[3] = 0xff;
667 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200668 default: return -EINVAL;
669 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200670
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200671 bbtoffs = chip * (numblocks >> 2);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200672
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200673 to = ((loff_t) page) << this->page_shift;
674
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200675 /* Must we save the block contents ? */
676 if (td->options & NAND_BBT_SAVECONTENT) {
677 /* Make it block aligned */
678 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
679 len = 1 << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100680 res = mtd->read(mtd, to, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200681 if (res < 0) {
682 if (retlen != len) {
William Juul52c07962007-10-31 13:53:06 +0100683 printk(KERN_INFO "nand_bbt: Error "
684 "reading block for writing "
685 "the bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200686 return res;
687 }
William Juul52c07962007-10-31 13:53:06 +0100688 printk(KERN_WARNING "nand_bbt: ECC error "
689 "while reading block for writing "
690 "bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200691 }
William Juul52c07962007-10-31 13:53:06 +0100692 /* Read oob data */
693 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
694 ops.oobbuf = &buf[len];
695 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
696 if (res < 0 || ops.oobretlen != ops.ooblen)
697 goto outerr;
698
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200699 /* Calc the byte offset in the buffer */
700 pageoffs = page - (int)(to >> this->page_shift);
701 offs = pageoffs << this->page_shift;
702 /* Preset the bbt area with 0xff */
William Juul52c07962007-10-31 13:53:06 +0100703 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
704 ooboffs = len + (pageoffs * mtd->oobsize);
705
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200706 } else {
707 /* Calc length */
708 len = (size_t) (numblocks >> sft);
709 /* Make it page aligned ! */
William Juul52c07962007-10-31 13:53:06 +0100710 len = (len + (mtd->writesize - 1)) &
711 ~(mtd->writesize - 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200712 /* Preset the buffer with 0xff */
William Juul52c07962007-10-31 13:53:06 +0100713 memset(buf, 0xff, len +
714 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200715 offs = 0;
William Juul52c07962007-10-31 13:53:06 +0100716 ooboffs = len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200717 /* Pattern is located in oob area of first page */
William Juul52c07962007-10-31 13:53:06 +0100718 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200719 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200720
William Juul52c07962007-10-31 13:53:06 +0100721 if (td->options & NAND_BBT_VERSION)
722 buf[ooboffs + td->veroffs] = td->version[chip];
723
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200724 /* walk through the memory table */
William Juul52c07962007-10-31 13:53:06 +0100725 for (i = 0; i < numblocks;) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200726 uint8_t dat;
727 dat = this->bbt[bbtoffs + (i >> 2)];
William Juul52c07962007-10-31 13:53:06 +0100728 for (j = 0; j < 4; j++, i++) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200729 int sftcnt = (i << (3 - sft)) & sftmsk;
730 /* Do not store the reserved bbt blocks ! */
William Juul52c07962007-10-31 13:53:06 +0100731 buf[offs + (i >> sft)] &=
732 ~(msk[dat & 0x03] << sftcnt);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200733 dat >>= 2;
734 }
735 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200736
William Juul52c07962007-10-31 13:53:06 +0100737 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200738 einfo.mtd = mtd;
William Juul52c07962007-10-31 13:53:06 +0100739 einfo.addr = (unsigned long)to;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200740 einfo.len = 1 << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100741 res = nand_erase_nand(mtd, &einfo, 1);
742 if (res < 0)
743 goto outerr;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200744
William Juul52c07962007-10-31 13:53:06 +0100745 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
746 if (res < 0)
747 goto outerr;
748
749 printk(KERN_DEBUG "Bad block table written to 0x%08x, version "
750 "0x%02X\n", (unsigned int)to, td->version[chip]);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200751
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200752 /* Mark it as used */
753 td->pages[chip] = page;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200754 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200755 return 0;
William Juul52c07962007-10-31 13:53:06 +0100756
757 outerr:
758 printk(KERN_WARNING
759 "nand_bbt: Error while writing bad block table %d\n", res);
760 return res;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200761}
762
763/**
764 * nand_memory_bbt - [GENERIC] create a memory based bad block table
765 * @mtd: MTD device structure
766 * @bd: descriptor for the good/bad block search pattern
767 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200768 * The function creates a memory based bbt by scanning the device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200769 * for manufacturer / software marked good / bad blocks
770*/
William Juul52c07962007-10-31 13:53:06 +0100771static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200772{
773 struct nand_chip *this = mtd->priv;
774
William Juul52c07962007-10-31 13:53:06 +0100775 bd->options &= ~NAND_BBT_SCANEMPTY;
776 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200777}
778
779/**
William Juul52c07962007-10-31 13:53:06 +0100780 * check_create - [GENERIC] create and write bbt(s) if necessary
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200781 * @mtd: MTD device structure
782 * @buf: temporary buffer
783 * @bd: descriptor for the good/bad block search pattern
784 *
785 * The function checks the results of the previous call to read_bbt
William Juul52c07962007-10-31 13:53:06 +0100786 * and creates / updates the bbt(s) if necessary
787 * Creation is necessary if no bbt was found for the chip/device
788 * Update is necessary if one of the tables is missing or the
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200789 * version nr. of one table is less than the other
790*/
William Juul52c07962007-10-31 13:53:06 +0100791static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200792{
793 int i, chips, writeops, chipsel, res;
794 struct nand_chip *this = mtd->priv;
795 struct nand_bbt_descr *td = this->bbt_td;
796 struct nand_bbt_descr *md = this->bbt_md;
797 struct nand_bbt_descr *rd, *rd2;
798
799 /* Do we have a bbt per chip ? */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200800 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200801 chips = this->numchips;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200802 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200803 chips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200804
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200805 for (i = 0; i < chips; i++) {
806 writeops = 0;
807 rd = NULL;
808 rd2 = NULL;
809 /* Per chip or per device ? */
810 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
811 /* Mirrored table avilable ? */
812 if (md) {
813 if (td->pages[i] == -1 && md->pages[i] == -1) {
814 writeops = 0x03;
815 goto create;
816 }
817
818 if (td->pages[i] == -1) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200819 rd = md;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200820 td->version[i] = md->version[i];
821 writeops = 1;
822 goto writecheck;
823 }
824
825 if (md->pages[i] == -1) {
826 rd = td;
827 md->version[i] = td->version[i];
828 writeops = 2;
829 goto writecheck;
830 }
831
832 if (td->version[i] == md->version[i]) {
833 rd = td;
834 if (!(td->options & NAND_BBT_VERSION))
835 rd2 = md;
836 goto writecheck;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200837 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200838
839 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
840 rd = td;
841 md->version[i] = td->version[i];
842 writeops = 2;
843 } else {
844 rd = md;
845 td->version[i] = md->version[i];
846 writeops = 1;
847 }
848
849 goto writecheck;
850
851 } else {
852 if (td->pages[i] == -1) {
853 writeops = 0x01;
854 goto create;
855 }
856 rd = td;
857 goto writecheck;
858 }
William Juul52c07962007-10-31 13:53:06 +0100859 create:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200860 /* Create the bad block table by scanning the device ? */
861 if (!(td->options & NAND_BBT_CREATE))
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200862 continue;
863
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200864 /* Create the table in memory by scanning the chip(s) */
William Juul52c07962007-10-31 13:53:06 +0100865 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200866
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200867 td->version[i] = 1;
868 if (md)
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200869 md->version[i] = 1;
William Juul52c07962007-10-31 13:53:06 +0100870 writecheck:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200871 /* read back first ? */
872 if (rd)
William Juul52c07962007-10-31 13:53:06 +0100873 read_abs_bbt(mtd, buf, rd, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200874 /* If they weren't versioned, read both. */
875 if (rd2)
William Juul52c07962007-10-31 13:53:06 +0100876 read_abs_bbt(mtd, buf, rd2, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200877
878 /* Write the bad block table to the device ? */
879 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100880 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200881 if (res < 0)
882 return res;
883 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200884
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200885 /* Write the mirror bad block table to the device ? */
886 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100887 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200888 if (res < 0)
889 return res;
890 }
891 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200892 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200893}
894
895/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200896 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200897 * @mtd: MTD device structure
898 * @td: bad block table descriptor
899 *
900 * The bad block table regions are marked as "bad" to prevent
901 * accidental erasures / writes. The regions are identified by
902 * the mark 0x02.
903*/
William Juul52c07962007-10-31 13:53:06 +0100904static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200905{
906 struct nand_chip *this = mtd->priv;
907 int i, j, chips, block, nrblocks, update;
908 uint8_t oldval, newval;
909
910 /* Do we have a bbt per chip ? */
911 if (td->options & NAND_BBT_PERCHIP) {
912 chips = this->numchips;
913 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
914 } else {
915 chips = 1;
916 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200917 }
918
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200919 for (i = 0; i < chips; i++) {
920 if ((td->options & NAND_BBT_ABSPAGE) ||
921 !(td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100922 if (td->pages[i] == -1)
923 continue;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200924 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200925 block <<= 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200926 oldval = this->bbt[(block >> 3)];
927 newval = oldval | (0x2 << (block & 0x06));
928 this->bbt[(block >> 3)] = newval;
929 if ((oldval != newval) && td->reserved_block_code)
930 nand_update_bbt(mtd, block << (this->bbt_erase_shift - 1));
931 continue;
932 }
933 update = 0;
934 if (td->options & NAND_BBT_LASTBLOCK)
935 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200936 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200937 block = i * nrblocks;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200938 block <<= 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200939 for (j = 0; j < td->maxblocks; j++) {
940 oldval = this->bbt[(block >> 3)];
941 newval = oldval | (0x2 << (block & 0x06));
942 this->bbt[(block >> 3)] = newval;
William Juul52c07962007-10-31 13:53:06 +0100943 if (oldval != newval)
944 update = 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200945 block += 2;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200946 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200947 /* If we want reserved blocks to be recorded to flash, and some
948 new ones have been marked, then we need to update the stored
949 bbts. This should only happen once. */
950 if (update && td->reserved_block_code)
951 nand_update_bbt(mtd, (block - 2) << (this->bbt_erase_shift - 1));
952 }
953}
954
955/**
956 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
957 * @mtd: MTD device structure
958 * @bd: descriptor for the good/bad block search pattern
959 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200960 * The function checks, if a bad block table(s) is/are already
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200961 * available. If not it scans the device for manufacturer
962 * marked good / bad blocks and writes the bad block table(s) to
963 * the selected place.
964 *
965 * The bad block table memory is allocated here. It must be freed
966 * by calling the nand_free_bbt function.
967 *
968*/
William Juul52c07962007-10-31 13:53:06 +0100969int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200970{
971 struct nand_chip *this = mtd->priv;
972 int len, res = 0;
973 uint8_t *buf;
974 struct nand_bbt_descr *td = this->bbt_td;
975 struct nand_bbt_descr *md = this->bbt_md;
976
977 len = mtd->size >> (this->bbt_erase_shift + 2);
William Juul52c07962007-10-31 13:53:06 +0100978 /* Allocate memory (2bit per block) and clear the memory bad block table */
979 this->bbt = kzalloc(len, GFP_KERNEL);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200980 if (!this->bbt) {
William Juul52c07962007-10-31 13:53:06 +0100981 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200982 return -ENOMEM;
983 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200984
985 /* If no primary table decriptor is given, scan the device
986 * to build a memory based bad block table
987 */
William Juul52c07962007-10-31 13:53:06 +0100988 if (!td) {
989 if ((res = nand_memory_bbt(mtd, bd))) {
990 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
991 kfree(this->bbt);
992 this->bbt = NULL;
993 }
994 return res;
995 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200996
997 /* Allocate a temporary buffer for one eraseblock incl. oob */
998 len = (1 << this->bbt_erase_shift);
999 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +01001000 buf = vmalloc(len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001001 if (!buf) {
William Juul52c07962007-10-31 13:53:06 +01001002 printk(KERN_ERR "nand_bbt: Out of memory\n");
1003 kfree(this->bbt);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001004 this->bbt = NULL;
1005 return -ENOMEM;
1006 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001007
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001008 /* Is the bbt at a given page ? */
1009 if (td->options & NAND_BBT_ABSPAGE) {
William Juul52c07962007-10-31 13:53:06 +01001010 res = read_abs_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001011 } else {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001012 /* Search the bad block table using a pattern in oob */
William Juul52c07962007-10-31 13:53:06 +01001013 res = search_read_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001014 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001015
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001016 if (res)
William Juul52c07962007-10-31 13:53:06 +01001017 res = check_create(mtd, buf, bd);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001018
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001019 /* Prevent the bbt regions from erasing / writing */
William Juul52c07962007-10-31 13:53:06 +01001020 mark_bbt_region(mtd, td);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001021 if (md)
William Juul52c07962007-10-31 13:53:06 +01001022 mark_bbt_region(mtd, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001023
William Juul52c07962007-10-31 13:53:06 +01001024 vfree(buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001025 return res;
1026}
1027
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001028/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001029 * nand_update_bbt - [NAND Interface] update bad block table(s)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001030 * @mtd: MTD device structure
1031 * @offs: the offset of the newly marked block
1032 *
1033 * The function updates the bad block table(s)
1034*/
William Juul52c07962007-10-31 13:53:06 +01001035int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001036{
1037 struct nand_chip *this = mtd->priv;
1038 int len, res = 0, writeops = 0;
1039 int chip, chipsel;
1040 uint8_t *buf;
1041 struct nand_bbt_descr *td = this->bbt_td;
1042 struct nand_bbt_descr *md = this->bbt_md;
1043
1044 if (!this->bbt || !td)
1045 return -EINVAL;
1046
1047 len = mtd->size >> (this->bbt_erase_shift + 2);
1048 /* Allocate a temporary buffer for one eraseblock incl. oob */
1049 len = (1 << this->bbt_erase_shift);
1050 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +01001051 buf = kmalloc(len, GFP_KERNEL);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001052 if (!buf) {
William Juul52c07962007-10-31 13:53:06 +01001053 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001054 return -ENOMEM;
1055 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001056
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001057 writeops = md != NULL ? 0x03 : 0x01;
1058
1059 /* Do we have a bbt per chip ? */
1060 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +01001061 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001062 chipsel = chip;
1063 } else {
1064 chip = 0;
1065 chipsel = -1;
1066 }
1067
1068 td->version[chip]++;
1069 if (md)
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001070 md->version[chip]++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001071
1072 /* Write the bad block table to the device ? */
1073 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +01001074 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001075 if (res < 0)
1076 goto out;
1077 }
1078 /* Write the mirror bad block table to the device ? */
1079 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +01001080 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001081 }
1082
William Juul52c07962007-10-31 13:53:06 +01001083 out:
1084 kfree(buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001085 return res;
1086}
1087
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001088/* Define some generic bad / good block scan pattern which are used
William Juul52c07962007-10-31 13:53:06 +01001089 * while scanning a device for factory marked good / bad blocks. */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001090static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1091
1092static struct nand_bbt_descr smallpage_memorybased = {
William Juul52c07962007-10-31 13:53:06 +01001093 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001094 .offs = 5,
1095 .len = 1,
1096 .pattern = scan_ff_pattern
1097};
1098
1099static struct nand_bbt_descr largepage_memorybased = {
1100 .options = 0,
1101 .offs = 0,
1102 .len = 2,
1103 .pattern = scan_ff_pattern
1104};
1105
1106static struct nand_bbt_descr smallpage_flashbased = {
William Juul52c07962007-10-31 13:53:06 +01001107 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001108 .offs = 5,
1109 .len = 1,
1110 .pattern = scan_ff_pattern
1111};
1112
1113static struct nand_bbt_descr largepage_flashbased = {
William Juul52c07962007-10-31 13:53:06 +01001114 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001115 .offs = 0,
1116 .len = 2,
1117 .pattern = scan_ff_pattern
1118};
1119
1120static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1121
1122static struct nand_bbt_descr agand_flashbased = {
1123 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1124 .offs = 0x20,
1125 .len = 6,
1126 .pattern = scan_agand_pattern
1127};
1128
1129/* Generic flash bbt decriptors
1130*/
1131static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1132static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1133
1134static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001135 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001136 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1137 .offs = 8,
1138 .len = 4,
1139 .veroffs = 12,
1140 .maxblocks = 4,
1141 .pattern = bbt_pattern
1142};
1143
1144static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001145 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001146 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1147 .offs = 8,
1148 .len = 4,
1149 .veroffs = 12,
1150 .maxblocks = 4,
1151 .pattern = mirror_pattern
1152};
1153
1154/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001155 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001156 * @mtd: MTD device structure
1157 *
1158 * This function selects the default bad block table
1159 * support for the device and calls the nand_scan_bbt function
1160 *
1161*/
William Juul52c07962007-10-31 13:53:06 +01001162int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001163{
1164 struct nand_chip *this = mtd->priv;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001165
1166 /* Default for AG-AND. We must use a flash based
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001167 * bad block table as the devices have factory marked
1168 * _good_ blocks. Erasing those blocks leads to loss
1169 * of the good / bad information, so we _must_ store
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001170 * this information in a good / bad table during
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001171 * startup
William Juul52c07962007-10-31 13:53:06 +01001172 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001173 if (this->options & NAND_IS_AND) {
1174 /* Use the default pattern descriptors */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001175 if (!this->bbt_td) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001176 this->bbt_td = &bbt_main_descr;
1177 this->bbt_md = &bbt_mirror_descr;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001178 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001179 this->options |= NAND_USE_FLASH_BBT;
William Juul52c07962007-10-31 13:53:06 +01001180 return nand_scan_bbt(mtd, &agand_flashbased);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001181 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001182
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001183 /* Is a flash based bad block table requested ? */
1184 if (this->options & NAND_USE_FLASH_BBT) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001185 /* Use the default pattern descriptors */
1186 if (!this->bbt_td) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001187 this->bbt_td = &bbt_main_descr;
1188 this->bbt_md = &bbt_mirror_descr;
1189 }
1190 if (!this->badblock_pattern) {
William Juul52c07962007-10-31 13:53:06 +01001191 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001192 }
1193 } else {
1194 this->bbt_td = NULL;
1195 this->bbt_md = NULL;
1196 if (!this->badblock_pattern) {
William Juul52c07962007-10-31 13:53:06 +01001197 this->badblock_pattern = (mtd->writesize > 512) ?
1198 &largepage_memorybased : &smallpage_memorybased;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001199 }
1200 }
William Juul52c07962007-10-31 13:53:06 +01001201 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001202}
1203
1204/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001205 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001206 * @mtd: MTD device structure
1207 * @offs: offset in the device
1208 * @allowbbt: allow access to bad block table region
1209 *
William Juul52c07962007-10-31 13:53:06 +01001210*/
1211int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001212{
1213 struct nand_chip *this = mtd->priv;
1214 int block;
William Juul52c07962007-10-31 13:53:06 +01001215 uint8_t res;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001216
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001217 /* Get block number * 2 */
William Juul52c07962007-10-31 13:53:06 +01001218 block = (int)(offs >> (this->bbt_erase_shift - 1));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001219 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1220
Scott Wooddf83c472008-06-20 12:38:57 -05001221 MTDDEBUG (MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: "
1222 "(block %d) 0x%02x\n", (unsigned int)offs, res, block >> 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001223
1224 switch ((int)res) {
William Juul52c07962007-10-31 13:53:06 +01001225 case 0x00:
1226 return 0;
1227 case 0x01:
1228 return 1;
1229 case 0x02:
1230 return allowbbt ? 0 : 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001231 }
1232 return 1;
1233}
1234
William Juul52c07962007-10-31 13:53:06 +01001235/* XXX U-BOOT XXX */
1236#if 0
1237EXPORT_SYMBOL(nand_scan_bbt);
1238EXPORT_SYMBOL(nand_default_bbt);
1239#endif
1240
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001241#endif