blob: b3b740da64120ba75af72e7b064b86c850096c69 [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>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020056#include <malloc.h>
57#include <linux/mtd/compat.h>
58#include <linux/mtd/mtd.h>
59#include <linux/mtd/nand.h>
60
61#include <asm/errno.h>
62
William Juul52c07962007-10-31 13:53:06 +010063/* XXX U-BOOT XXX */
64#if 0
65#include <linux/slab.h>
66#include <linux/types.h>
67#include <linux/mtd/mtd.h>
68#include <linux/mtd/nand.h>
69#include <linux/mtd/nand_ecc.h>
70#include <linux/mtd/compatmac.h>
71#include <linux/bitops.h>
72#include <linux/delay.h>
73#include <linux/vmalloc.h>
74#endif
75
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020076/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020077 * check_pattern - [GENERIC] check if a pattern is in the buffer
78 * @buf: the buffer to search
79 * @len: the length of buffer to search
80 * @paglen: the pagelength
81 * @td: search pattern descriptor
82 *
83 * Check for a pattern at the given place. Used to search bad block
84 * tables and good / bad block identifiers.
85 * If the SCAN_EMPTY option is set then check, if all bytes except the
86 * pattern area contain 0xff
87 *
88*/
William Juul52c07962007-10-31 13:53:06 +010089static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020090{
William Juul52c07962007-10-31 13:53:06 +010091 int i, end = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020092 uint8_t *p = buf;
93
94 end = paglen + td->offs;
95 if (td->options & NAND_BBT_SCANEMPTY) {
96 for (i = 0; i < end; i++) {
97 if (p[i] != 0xff)
98 return -1;
99 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200100 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200101 p += end;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200102
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200103 /* Compare the pattern */
104 for (i = 0; i < td->len; i++) {
105 if (p[i] != td->pattern[i])
106 return -1;
107 }
108
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200109 if (td->options & NAND_BBT_SCANEMPTY) {
William Juul52c07962007-10-31 13:53:06 +0100110 p += td->len;
111 end += td->len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200112 for (i = end; i < len; i++) {
113 if (*p++ != 0xff)
114 return -1;
115 }
116 }
117 return 0;
118}
119
120/**
William Juul52c07962007-10-31 13:53:06 +0100121 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
122 * @buf: the buffer to search
123 * @td: search pattern descriptor
124 *
125 * Check for a pattern at the given place. Used to search bad block
126 * tables and good / bad block identifiers. Same as check_pattern, but
127 * no optional empty check
128 *
129*/
130static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
131{
132 int i;
133 uint8_t *p = buf;
134
135 /* Compare the pattern */
136 for (i = 0; i < td->len; i++) {
137 if (p[td->offs + i] != td->pattern[i])
138 return -1;
139 }
140 return 0;
141}
142
143/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200144 * read_bbt - [GENERIC] Read the bad block table starting from page
145 * @mtd: MTD device structure
146 * @buf: temporary buffer
147 * @page: the starting page
148 * @num: the number of bbt descriptors to read
149 * @bits: number of bits per block
150 * @offs: offset in the memory table
151 * @reserved_block_code: Pattern to identify reserved blocks
152 *
153 * Read the bad block table starting from page.
154 *
155 */
William Juul52c07962007-10-31 13:53:06 +0100156static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
157 int bits, int offs, int reserved_block_code)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200158{
159 int res, i, j, act = 0;
160 struct nand_chip *this = mtd->priv;
161 size_t retlen, len, totlen;
162 loff_t from;
163 uint8_t msk = (uint8_t) ((1 << bits) - 1);
164
165 totlen = (num * bits) >> 3;
William Juul52c07962007-10-31 13:53:06 +0100166 from = ((loff_t) page) << this->page_shift;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200167
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200168 while (totlen) {
William Juul52c07962007-10-31 13:53:06 +0100169 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
170 res = mtd->read(mtd, from, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200171 if (res < 0) {
172 if (retlen != len) {
William Juul52c07962007-10-31 13:53:06 +0100173 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200174 return res;
175 }
William Juul52c07962007-10-31 13:53:06 +0100176 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200177 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200178
179 /* Analyse data */
180 for (i = 0; i < len; i++) {
181 uint8_t dat = buf[i];
182 for (j = 0; j < 8; j += bits, act += 2) {
183 uint8_t tmp = (dat >> j) & msk;
184 if (tmp == msk)
185 continue;
William Juul52c07962007-10-31 13:53:06 +0100186 if (reserved_block_code && (tmp == reserved_block_code)) {
187 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%08x\n",
188 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200189 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
William Juul52c07962007-10-31 13:53:06 +0100190 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200191 continue;
192 }
193 /* Leave it for now, if its matured we can move this
194 * message to MTD_DEBUG_LEVEL0 */
William Juul52c07962007-10-31 13:53:06 +0100195 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%08x\n",
196 ((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200197 /* Factory marked bad or worn out ? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200198 if (tmp == 0)
199 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
200 else
201 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
William Juul52c07962007-10-31 13:53:06 +0100202 mtd->ecc_stats.badblocks++;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200203 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200204 }
205 totlen -= len;
206 from += len;
207 }
208 return 0;
209}
210
211/**
212 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
213 * @mtd: MTD device structure
214 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200215 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200216 * @chip: read the table for a specific chip, -1 read all chips.
217 * Applies only if NAND_BBT_PERCHIP option is set
218 *
219 * Read the bad block table for all chips starting at a given page
220 * We assume that the bbt bits are in consecutive order.
221*/
William Juul52c07962007-10-31 13:53:06 +0100222static 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 +0200223{
224 struct nand_chip *this = mtd->priv;
225 int res = 0, i;
226 int bits;
227
228 bits = td->options & NAND_BBT_NRBITS_MSK;
229 if (td->options & NAND_BBT_PERCHIP) {
230 int offs = 0;
231 for (i = 0; i < this->numchips; i++) {
232 if (chip == -1 || chip == i)
233 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
234 if (res)
235 return res;
236 offs += this->chipsize >> (this->bbt_erase_shift + 2);
237 }
238 } else {
239 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
240 if (res)
241 return res;
242 }
243 return 0;
244}
245
William Juul52c07962007-10-31 13:53:06 +0100246/*
247 * Scan read raw data from flash
248 */
249static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
250 size_t len)
251{
252 struct mtd_oob_ops ops;
253
254 ops.mode = MTD_OOB_RAW;
255 ops.ooboffs = 0;
256 ops.ooblen = mtd->oobsize;
257 ops.oobbuf = buf;
258 ops.datbuf = buf;
259 ops.len = len;
260
261 return mtd->read_oob(mtd, offs, &ops);
262}
263
264/*
265 * Scan write data with oob to flash
266 */
267static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
268 uint8_t *buf, uint8_t *oob)
269{
270 struct mtd_oob_ops ops;
271
272 ops.mode = MTD_OOB_PLACE;
273 ops.ooboffs = 0;
274 ops.ooblen = mtd->oobsize;
275 ops.datbuf = buf;
276 ops.oobbuf = oob;
277 ops.len = len;
278
279 return mtd->write_oob(mtd, offs, &ops);
280}
281
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200282/**
283 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
284 * @mtd: MTD device structure
285 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200286 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200287 * @md: descriptor for the bad block table mirror
288 *
289 * Read the bad block table(s) for all chips starting at a given page
290 * We assume that the bbt bits are in consecutive order.
291 *
292*/
William Juul52c07962007-10-31 13:53:06 +0100293static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
294 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200295{
296 struct nand_chip *this = mtd->priv;
297
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200298 /* Read the primary version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200299 if (td->options & NAND_BBT_VERSION) {
William Juul52c07962007-10-31 13:53:06 +0100300 scan_read_raw(mtd, buf, td->pages[0] << this->page_shift,
301 mtd->writesize);
302 td->version[0] = buf[mtd->writesize + td->veroffs];
303 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
304 td->pages[0], td->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200305 }
306
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200307 /* Read the mirror version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200308 if (md && (md->options & NAND_BBT_VERSION)) {
William Juul52c07962007-10-31 13:53:06 +0100309 scan_read_raw(mtd, buf, md->pages[0] << this->page_shift,
310 mtd->writesize);
311 md->version[0] = buf[mtd->writesize + md->veroffs];
312 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
313 md->pages[0], md->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200314 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200315 return 1;
316}
317
William Juul52c07962007-10-31 13:53:06 +0100318/*
319 * Scan a given block full
320 */
321static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
322 loff_t offs, uint8_t *buf, size_t readlen,
323 int scanlen, int len)
324{
325 int ret, j;
326
327 ret = scan_read_raw(mtd, buf, offs, readlen);
328 if (ret)
329 return ret;
330
331 for (j = 0; j < len; j++, buf += scanlen) {
332 if (check_pattern(buf, scanlen, mtd->writesize, bd))
333 return 1;
334 }
335 return 0;
336}
337
338/*
339 * Scan a given block partially
340 */
341static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
342 loff_t offs, uint8_t *buf, int len)
343{
344 struct mtd_oob_ops ops;
345 int j, ret;
346
347 ops.ooblen = mtd->oobsize;
348 ops.oobbuf = buf;
349 ops.ooboffs = 0;
350 ops.datbuf = NULL;
351 ops.mode = MTD_OOB_PLACE;
352
353 for (j = 0; j < len; j++) {
354 /*
355 * Read the full oob until read_oob is fixed to
356 * handle single byte reads for 16 bit
357 * buswidth
358 */
359 ret = mtd->read_oob(mtd, offs, &ops);
360 if (ret)
361 return ret;
362
363 if (check_short_pattern(buf, bd))
364 return 1;
365
366 offs += mtd->writesize;
367 }
368 return 0;
369}
370
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200371/**
372 * create_bbt - [GENERIC] Create a bad block table by scanning the device
373 * @mtd: MTD device structure
374 * @buf: temporary buffer
375 * @bd: descriptor for the good/bad block search pattern
376 * @chip: create the table for a specific chip, -1 read all chips.
377 * Applies only if NAND_BBT_PERCHIP option is set
378 *
379 * Create a bad block table by scanning the device
380 * for the given good/bad block identify pattern
381 */
William Juul52c07962007-10-31 13:53:06 +0100382static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
383 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200384{
385 struct nand_chip *this = mtd->priv;
William Juul52c07962007-10-31 13:53:06 +0100386 int i, numblocks, len, scanlen;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200387 int startblock;
388 loff_t from;
William Juul52c07962007-10-31 13:53:06 +0100389 size_t readlen;
390
Stefan Roese4fe71432008-01-10 18:47:33 +0100391 MTDDEBUG (MTD_DEBUG_LEVEL0, "Scanning device for bad blocks\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200392
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200393 if (bd->options & NAND_BBT_SCANALLPAGES)
394 len = 1 << (this->bbt_erase_shift - this->page_shift);
395 else {
396 if (bd->options & NAND_BBT_SCAN2NDPAGE)
397 len = 2;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200398 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200399 len = 1;
400 }
William Juul52c07962007-10-31 13:53:06 +0100401
402 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
403 /* We need only read few bytes from the OOB area */
404 scanlen = 0;
405 readlen = bd->len;
406 } else {
407 /* Full page content should be read */
408 scanlen = mtd->writesize + mtd->oobsize;
409 readlen = len * mtd->writesize;
410 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200411
412 if (chip == -1) {
William Juul52c07962007-10-31 13:53:06 +0100413 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
414 * below as it makes shifting and masking less painful */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200415 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
416 startblock = 0;
417 from = 0;
418 } else {
419 if (chip >= this->numchips) {
William Juul52c07962007-10-31 13:53:06 +0100420 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
421 chip + 1, this->numchips);
422 return -EINVAL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200423 }
424 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
425 startblock = chip * numblocks;
426 numblocks += startblock;
427 from = startblock << (this->bbt_erase_shift - 1);
428 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200429
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200430 for (i = startblock; i < numblocks;) {
William Juul52c07962007-10-31 13:53:06 +0100431 int ret;
432
433 if (bd->options & NAND_BBT_SCANALLPAGES)
434 ret = scan_block_full(mtd, bd, from, buf, readlen,
435 scanlen, len);
436 else
437 ret = scan_block_fast(mtd, bd, from, buf, len);
438
439 if (ret < 0)
440 return ret;
441
442 if (ret) {
443 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Stefan Roese4fe71432008-01-10 18:47:33 +0100444 MTDDEBUG (MTD_DEBUG_LEVEL0,
445 "Bad eraseblock %d at 0x%08x\n",
446 i >> 1, (unsigned int)from);
William Juul52c07962007-10-31 13:53:06 +0100447 mtd->ecc_stats.badblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200448 }
William Juul52c07962007-10-31 13:53:06 +0100449
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200450 i += 2;
451 from += (1 << this->bbt_erase_shift);
452 }
William Juul52c07962007-10-31 13:53:06 +0100453 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200454}
455
456/**
457 * search_bbt - [GENERIC] scan the device for a specific bad block table
458 * @mtd: MTD device structure
459 * @buf: temporary buffer
460 * @td: descriptor for the bad block table
461 *
462 * Read the bad block table by searching for a given ident pattern.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200463 * Search is preformed either from the beginning up or from the end of
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200464 * the device downwards. The search starts always at the start of a
465 * block.
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200466 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200467 * for a bbt, which contains the bad block information of this chip.
William Juul52c07962007-10-31 13:53:06 +0100468 * This is necessary to provide support for certain DOC devices.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200469 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200470 * The bbt ident pattern resides in the oob area of the first page
471 * in a block.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200472 */
William Juul52c07962007-10-31 13:53:06 +0100473static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200474{
475 struct nand_chip *this = mtd->priv;
476 int i, chips;
477 int bits, startblock, block, dir;
William Juul52c07962007-10-31 13:53:06 +0100478 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200479 int bbtblocks;
William Juul52c07962007-10-31 13:53:06 +0100480 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200481
482 /* Search direction top -> down ? */
483 if (td->options & NAND_BBT_LASTBLOCK) {
William Juul52c07962007-10-31 13:53:06 +0100484 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200485 dir = -1;
486 } else {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200487 startblock = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200488 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200489 }
490
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200491 /* Do we have a bbt per chip ? */
492 if (td->options & NAND_BBT_PERCHIP) {
493 chips = this->numchips;
494 bbtblocks = this->chipsize >> this->bbt_erase_shift;
495 startblock &= bbtblocks - 1;
496 } else {
497 chips = 1;
498 bbtblocks = mtd->size >> this->bbt_erase_shift;
499 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200500
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200501 /* Number of bits for each erase block in the bbt */
502 bits = td->options & NAND_BBT_NRBITS_MSK;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200503
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200504 for (i = 0; i < chips; i++) {
505 /* Reset version information */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200506 td->version[i] = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200507 td->pages[i] = -1;
508 /* Scan the maximum number of blocks */
509 for (block = 0; block < td->maxblocks; block++) {
William Juul52c07962007-10-31 13:53:06 +0100510
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200511 int actblock = startblock + dir * block;
William Juul52c07962007-10-31 13:53:06 +0100512 loff_t offs = actblock << this->bbt_erase_shift;
513
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200514 /* Read first page */
William Juul52c07962007-10-31 13:53:06 +0100515 scan_read_raw(mtd, buf, offs, mtd->writesize);
516 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
517 td->pages[i] = actblock << blocktopage;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200518 if (td->options & NAND_BBT_VERSION) {
William Juul52c07962007-10-31 13:53:06 +0100519 td->version[i] = buf[mtd->writesize + td->veroffs];
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200520 }
521 break;
522 }
523 }
524 startblock += this->chipsize >> this->bbt_erase_shift;
525 }
526 /* Check, if we found a bbt for each requested chip */
527 for (i = 0; i < chips; i++) {
528 if (td->pages[i] == -1)
William Juul52c07962007-10-31 13:53:06 +0100529 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200530 else
William Juul52c07962007-10-31 13:53:06 +0100531 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
532 td->version[i]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200533 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200534 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200535}
536
537/**
538 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
539 * @mtd: MTD device structure
540 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200541 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200542 * @md: descriptor for the bad block table mirror
543 *
544 * Search and read the bad block table(s)
545*/
William Juul52c07962007-10-31 13:53:06 +0100546static 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 +0200547{
548 /* Search the primary table */
William Juul52c07962007-10-31 13:53:06 +0100549 search_bbt(mtd, buf, td);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200550
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200551 /* Search the mirror table */
552 if (md)
William Juul52c07962007-10-31 13:53:06 +0100553 search_bbt(mtd, buf, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200554
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200555 /* Force result check */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200556 return 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200557}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200558
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200559/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200560 * write_bbt - [GENERIC] (Re)write the bad block table
561 *
562 * @mtd: MTD device structure
563 * @buf: temporary buffer
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200564 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200565 * @md: descriptor for the bad block table mirror
566 * @chipsel: selector for a specific chip, -1 for all
567 *
568 * (Re)write the bad block table
569 *
570*/
William Juul52c07962007-10-31 13:53:06 +0100571static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
572 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
573 int chipsel)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200574{
575 struct nand_chip *this = mtd->priv;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200576 struct erase_info einfo;
577 int i, j, res, chip = 0;
578 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
William Juul52c07962007-10-31 13:53:06 +0100579 int nrchips, bbtoffs, pageoffs, ooboffs;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200580 uint8_t msk[4];
581 uint8_t rcode = td->reserved_block_code;
582 size_t retlen, len = 0;
583 loff_t to;
William Juul52c07962007-10-31 13:53:06 +0100584 struct mtd_oob_ops ops;
585
586 ops.ooblen = mtd->oobsize;
587 ops.ooboffs = 0;
588 ops.datbuf = NULL;
589 ops.mode = MTD_OOB_PLACE;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200590
591 if (!rcode)
592 rcode = 0xff;
593 /* Write bad block table per chip rather than per device ? */
594 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +0100595 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200596 /* Full device write or specific chip ? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200597 if (chipsel == -1) {
598 nrchips = this->numchips;
599 } else {
600 nrchips = chipsel + 1;
601 chip = chipsel;
602 }
603 } else {
William Juul52c07962007-10-31 13:53:06 +0100604 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200605 nrchips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200606 }
607
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200608 /* Loop through the chips */
609 for (; chip < nrchips; chip++) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200610
611 /* There was already a version of the table, reuse the page
612 * This applies for absolute placement too, as we have the
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200613 * page nr. in td->pages.
614 */
615 if (td->pages[chip] != -1) {
616 page = td->pages[chip];
617 goto write;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200618 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200619
620 /* Automatic placement of the bad block table */
621 /* Search direction top -> down ? */
622 if (td->options & NAND_BBT_LASTBLOCK) {
623 startblock = numblocks * (chip + 1) - 1;
624 dir = -1;
625 } else {
626 startblock = chip * numblocks;
627 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200628 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200629
630 for (i = 0; i < td->maxblocks; i++) {
631 int block = startblock + dir * i;
632 /* Check, if the block is bad */
William Juul52c07962007-10-31 13:53:06 +0100633 switch ((this->bbt[block >> 2] >>
634 (2 * (block & 0x03))) & 0x03) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200635 case 0x01:
636 case 0x03:
637 continue;
638 }
William Juul52c07962007-10-31 13:53:06 +0100639 page = block <<
640 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200641 /* Check, if the block is used by the mirror table */
642 if (!md || md->pages[chip] != page)
643 goto write;
644 }
William Juul52c07962007-10-31 13:53:06 +0100645 printk(KERN_ERR "No space left to write bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200646 return -ENOSPC;
William Juul52c07962007-10-31 13:53:06 +0100647 write:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200648
649 /* Set up shift count and masks for the flash table */
650 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juul52c07962007-10-31 13:53:06 +0100651 msk[2] = ~rcode;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200652 switch (bits) {
William Juul52c07962007-10-31 13:53:06 +0100653 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
654 msk[3] = 0x01;
655 break;
656 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
657 msk[3] = 0x03;
658 break;
659 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
660 msk[3] = 0x0f;
661 break;
662 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
663 msk[3] = 0xff;
664 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200665 default: return -EINVAL;
666 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200667
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200668 bbtoffs = chip * (numblocks >> 2);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200669
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200670 to = ((loff_t) page) << this->page_shift;
671
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200672 /* Must we save the block contents ? */
673 if (td->options & NAND_BBT_SAVECONTENT) {
674 /* Make it block aligned */
675 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
676 len = 1 << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100677 res = mtd->read(mtd, to, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200678 if (res < 0) {
679 if (retlen != len) {
William Juul52c07962007-10-31 13:53:06 +0100680 printk(KERN_INFO "nand_bbt: Error "
681 "reading block for writing "
682 "the bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200683 return res;
684 }
William Juul52c07962007-10-31 13:53:06 +0100685 printk(KERN_WARNING "nand_bbt: ECC error "
686 "while reading block for writing "
687 "bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200688 }
William Juul52c07962007-10-31 13:53:06 +0100689 /* Read oob data */
690 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
691 ops.oobbuf = &buf[len];
692 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
693 if (res < 0 || ops.oobretlen != ops.ooblen)
694 goto outerr;
695
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200696 /* Calc the byte offset in the buffer */
697 pageoffs = page - (int)(to >> this->page_shift);
698 offs = pageoffs << this->page_shift;
699 /* Preset the bbt area with 0xff */
William Juul52c07962007-10-31 13:53:06 +0100700 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
701 ooboffs = len + (pageoffs * mtd->oobsize);
702
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200703 } else {
704 /* Calc length */
705 len = (size_t) (numblocks >> sft);
706 /* Make it page aligned ! */
William Juul52c07962007-10-31 13:53:06 +0100707 len = (len + (mtd->writesize - 1)) &
708 ~(mtd->writesize - 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200709 /* Preset the buffer with 0xff */
William Juul52c07962007-10-31 13:53:06 +0100710 memset(buf, 0xff, len +
711 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200712 offs = 0;
William Juul52c07962007-10-31 13:53:06 +0100713 ooboffs = len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200714 /* Pattern is located in oob area of first page */
William Juul52c07962007-10-31 13:53:06 +0100715 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200716 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200717
William Juul52c07962007-10-31 13:53:06 +0100718 if (td->options & NAND_BBT_VERSION)
719 buf[ooboffs + td->veroffs] = td->version[chip];
720
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200721 /* walk through the memory table */
William Juul52c07962007-10-31 13:53:06 +0100722 for (i = 0; i < numblocks;) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200723 uint8_t dat;
724 dat = this->bbt[bbtoffs + (i >> 2)];
William Juul52c07962007-10-31 13:53:06 +0100725 for (j = 0; j < 4; j++, i++) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200726 int sftcnt = (i << (3 - sft)) & sftmsk;
727 /* Do not store the reserved bbt blocks ! */
William Juul52c07962007-10-31 13:53:06 +0100728 buf[offs + (i >> sft)] &=
729 ~(msk[dat & 0x03] << sftcnt);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200730 dat >>= 2;
731 }
732 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200733
William Juul52c07962007-10-31 13:53:06 +0100734 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200735 einfo.mtd = mtd;
William Juul52c07962007-10-31 13:53:06 +0100736 einfo.addr = (unsigned long)to;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200737 einfo.len = 1 << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100738 res = nand_erase_nand(mtd, &einfo, 1);
739 if (res < 0)
740 goto outerr;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200741
William Juul52c07962007-10-31 13:53:06 +0100742 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
743 if (res < 0)
744 goto outerr;
745
746 printk(KERN_DEBUG "Bad block table written to 0x%08x, version "
747 "0x%02X\n", (unsigned int)to, td->version[chip]);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200748
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200749 /* Mark it as used */
750 td->pages[chip] = page;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200751 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200752 return 0;
William Juul52c07962007-10-31 13:53:06 +0100753
754 outerr:
755 printk(KERN_WARNING
756 "nand_bbt: Error while writing bad block table %d\n", res);
757 return res;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200758}
759
760/**
761 * nand_memory_bbt - [GENERIC] create a memory based bad block table
762 * @mtd: MTD device structure
763 * @bd: descriptor for the good/bad block search pattern
764 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200765 * The function creates a memory based bbt by scanning the device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200766 * for manufacturer / software marked good / bad blocks
767*/
William Juul52c07962007-10-31 13:53:06 +0100768static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200769{
770 struct nand_chip *this = mtd->priv;
771
William Juul52c07962007-10-31 13:53:06 +0100772 bd->options &= ~NAND_BBT_SCANEMPTY;
773 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200774}
775
776/**
William Juul52c07962007-10-31 13:53:06 +0100777 * check_create - [GENERIC] create and write bbt(s) if necessary
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200778 * @mtd: MTD device structure
779 * @buf: temporary buffer
780 * @bd: descriptor for the good/bad block search pattern
781 *
782 * The function checks the results of the previous call to read_bbt
William Juul52c07962007-10-31 13:53:06 +0100783 * and creates / updates the bbt(s) if necessary
784 * Creation is necessary if no bbt was found for the chip/device
785 * Update is necessary if one of the tables is missing or the
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200786 * version nr. of one table is less than the other
787*/
William Juul52c07962007-10-31 13:53:06 +0100788static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200789{
790 int i, chips, writeops, chipsel, res;
791 struct nand_chip *this = mtd->priv;
792 struct nand_bbt_descr *td = this->bbt_td;
793 struct nand_bbt_descr *md = this->bbt_md;
794 struct nand_bbt_descr *rd, *rd2;
795
796 /* Do we have a bbt per chip ? */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200797 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200798 chips = this->numchips;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200799 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200800 chips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200801
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200802 for (i = 0; i < chips; i++) {
803 writeops = 0;
804 rd = NULL;
805 rd2 = NULL;
806 /* Per chip or per device ? */
807 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
808 /* Mirrored table avilable ? */
809 if (md) {
810 if (td->pages[i] == -1 && md->pages[i] == -1) {
811 writeops = 0x03;
812 goto create;
813 }
814
815 if (td->pages[i] == -1) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200816 rd = md;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200817 td->version[i] = md->version[i];
818 writeops = 1;
819 goto writecheck;
820 }
821
822 if (md->pages[i] == -1) {
823 rd = td;
824 md->version[i] = td->version[i];
825 writeops = 2;
826 goto writecheck;
827 }
828
829 if (td->version[i] == md->version[i]) {
830 rd = td;
831 if (!(td->options & NAND_BBT_VERSION))
832 rd2 = md;
833 goto writecheck;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200834 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200835
836 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
837 rd = td;
838 md->version[i] = td->version[i];
839 writeops = 2;
840 } else {
841 rd = md;
842 td->version[i] = md->version[i];
843 writeops = 1;
844 }
845
846 goto writecheck;
847
848 } else {
849 if (td->pages[i] == -1) {
850 writeops = 0x01;
851 goto create;
852 }
853 rd = td;
854 goto writecheck;
855 }
William Juul52c07962007-10-31 13:53:06 +0100856 create:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200857 /* Create the bad block table by scanning the device ? */
858 if (!(td->options & NAND_BBT_CREATE))
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200859 continue;
860
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200861 /* Create the table in memory by scanning the chip(s) */
William Juul52c07962007-10-31 13:53:06 +0100862 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200863
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200864 td->version[i] = 1;
865 if (md)
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200866 md->version[i] = 1;
William Juul52c07962007-10-31 13:53:06 +0100867 writecheck:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200868 /* read back first ? */
869 if (rd)
William Juul52c07962007-10-31 13:53:06 +0100870 read_abs_bbt(mtd, buf, rd, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200871 /* If they weren't versioned, read both. */
872 if (rd2)
William Juul52c07962007-10-31 13:53:06 +0100873 read_abs_bbt(mtd, buf, rd2, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200874
875 /* Write the bad block table to the device ? */
876 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100877 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200878 if (res < 0)
879 return res;
880 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200881
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200882 /* Write the mirror bad block table to the device ? */
883 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100884 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200885 if (res < 0)
886 return res;
887 }
888 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200889 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200890}
891
892/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200893 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200894 * @mtd: MTD device structure
895 * @td: bad block table descriptor
896 *
897 * The bad block table regions are marked as "bad" to prevent
898 * accidental erasures / writes. The regions are identified by
899 * the mark 0x02.
900*/
William Juul52c07962007-10-31 13:53:06 +0100901static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200902{
903 struct nand_chip *this = mtd->priv;
904 int i, j, chips, block, nrblocks, update;
905 uint8_t oldval, newval;
906
907 /* Do we have a bbt per chip ? */
908 if (td->options & NAND_BBT_PERCHIP) {
909 chips = this->numchips;
910 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
911 } else {
912 chips = 1;
913 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200914 }
915
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200916 for (i = 0; i < chips; i++) {
917 if ((td->options & NAND_BBT_ABSPAGE) ||
918 !(td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100919 if (td->pages[i] == -1)
920 continue;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200921 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200922 block <<= 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200923 oldval = this->bbt[(block >> 3)];
924 newval = oldval | (0x2 << (block & 0x06));
925 this->bbt[(block >> 3)] = newval;
926 if ((oldval != newval) && td->reserved_block_code)
927 nand_update_bbt(mtd, block << (this->bbt_erase_shift - 1));
928 continue;
929 }
930 update = 0;
931 if (td->options & NAND_BBT_LASTBLOCK)
932 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200933 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200934 block = i * nrblocks;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200935 block <<= 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200936 for (j = 0; j < td->maxblocks; j++) {
937 oldval = this->bbt[(block >> 3)];
938 newval = oldval | (0x2 << (block & 0x06));
939 this->bbt[(block >> 3)] = newval;
William Juul52c07962007-10-31 13:53:06 +0100940 if (oldval != newval)
941 update = 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200942 block += 2;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200943 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200944 /* If we want reserved blocks to be recorded to flash, and some
945 new ones have been marked, then we need to update the stored
946 bbts. This should only happen once. */
947 if (update && td->reserved_block_code)
948 nand_update_bbt(mtd, (block - 2) << (this->bbt_erase_shift - 1));
949 }
950}
951
952/**
953 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
954 * @mtd: MTD device structure
955 * @bd: descriptor for the good/bad block search pattern
956 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200957 * The function checks, if a bad block table(s) is/are already
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200958 * available. If not it scans the device for manufacturer
959 * marked good / bad blocks and writes the bad block table(s) to
960 * the selected place.
961 *
962 * The bad block table memory is allocated here. It must be freed
963 * by calling the nand_free_bbt function.
964 *
965*/
William Juul52c07962007-10-31 13:53:06 +0100966int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200967{
968 struct nand_chip *this = mtd->priv;
969 int len, res = 0;
970 uint8_t *buf;
971 struct nand_bbt_descr *td = this->bbt_td;
972 struct nand_bbt_descr *md = this->bbt_md;
973
974 len = mtd->size >> (this->bbt_erase_shift + 2);
William Juul52c07962007-10-31 13:53:06 +0100975 /* Allocate memory (2bit per block) and clear the memory bad block table */
976 this->bbt = kzalloc(len, GFP_KERNEL);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200977 if (!this->bbt) {
William Juul52c07962007-10-31 13:53:06 +0100978 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200979 return -ENOMEM;
980 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200981
982 /* If no primary table decriptor is given, scan the device
983 * to build a memory based bad block table
984 */
William Juul52c07962007-10-31 13:53:06 +0100985 if (!td) {
986 if ((res = nand_memory_bbt(mtd, bd))) {
987 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
988 kfree(this->bbt);
989 this->bbt = NULL;
990 }
991 return res;
992 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200993
994 /* Allocate a temporary buffer for one eraseblock incl. oob */
995 len = (1 << this->bbt_erase_shift);
996 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +0100997 buf = vmalloc(len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200998 if (!buf) {
William Juul52c07962007-10-31 13:53:06 +0100999 printk(KERN_ERR "nand_bbt: Out of memory\n");
1000 kfree(this->bbt);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001001 this->bbt = NULL;
1002 return -ENOMEM;
1003 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001004
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001005 /* Is the bbt at a given page ? */
1006 if (td->options & NAND_BBT_ABSPAGE) {
William Juul52c07962007-10-31 13:53:06 +01001007 res = read_abs_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001008 } else {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001009 /* Search the bad block table using a pattern in oob */
William Juul52c07962007-10-31 13:53:06 +01001010 res = search_read_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001011 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001012
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001013 if (res)
William Juul52c07962007-10-31 13:53:06 +01001014 res = check_create(mtd, buf, bd);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001015
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001016 /* Prevent the bbt regions from erasing / writing */
William Juul52c07962007-10-31 13:53:06 +01001017 mark_bbt_region(mtd, td);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001018 if (md)
William Juul52c07962007-10-31 13:53:06 +01001019 mark_bbt_region(mtd, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001020
William Juul52c07962007-10-31 13:53:06 +01001021 vfree(buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001022 return res;
1023}
1024
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001025/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001026 * nand_update_bbt - [NAND Interface] update bad block table(s)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001027 * @mtd: MTD device structure
1028 * @offs: the offset of the newly marked block
1029 *
1030 * The function updates the bad block table(s)
1031*/
William Juul52c07962007-10-31 13:53:06 +01001032int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001033{
1034 struct nand_chip *this = mtd->priv;
1035 int len, res = 0, writeops = 0;
1036 int chip, chipsel;
1037 uint8_t *buf;
1038 struct nand_bbt_descr *td = this->bbt_td;
1039 struct nand_bbt_descr *md = this->bbt_md;
1040
1041 if (!this->bbt || !td)
1042 return -EINVAL;
1043
1044 len = mtd->size >> (this->bbt_erase_shift + 2);
1045 /* Allocate a temporary buffer for one eraseblock incl. oob */
1046 len = (1 << this->bbt_erase_shift);
1047 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +01001048 buf = kmalloc(len, GFP_KERNEL);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001049 if (!buf) {
William Juul52c07962007-10-31 13:53:06 +01001050 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001051 return -ENOMEM;
1052 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001053
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001054 writeops = md != NULL ? 0x03 : 0x01;
1055
1056 /* Do we have a bbt per chip ? */
1057 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +01001058 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001059 chipsel = chip;
1060 } else {
1061 chip = 0;
1062 chipsel = -1;
1063 }
1064
1065 td->version[chip]++;
1066 if (md)
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001067 md->version[chip]++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001068
1069 /* Write the bad block table to the device ? */
1070 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +01001071 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001072 if (res < 0)
1073 goto out;
1074 }
1075 /* Write the mirror bad block table to the device ? */
1076 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +01001077 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001078 }
1079
William Juul52c07962007-10-31 13:53:06 +01001080 out:
1081 kfree(buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001082 return res;
1083}
1084
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001085/* Define some generic bad / good block scan pattern which are used
William Juul52c07962007-10-31 13:53:06 +01001086 * while scanning a device for factory marked good / bad blocks. */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001087static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1088
1089static struct nand_bbt_descr smallpage_memorybased = {
William Juul52c07962007-10-31 13:53:06 +01001090 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001091 .offs = 5,
1092 .len = 1,
1093 .pattern = scan_ff_pattern
1094};
1095
1096static struct nand_bbt_descr largepage_memorybased = {
1097 .options = 0,
1098 .offs = 0,
1099 .len = 2,
1100 .pattern = scan_ff_pattern
1101};
1102
1103static struct nand_bbt_descr smallpage_flashbased = {
William Juul52c07962007-10-31 13:53:06 +01001104 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001105 .offs = 5,
1106 .len = 1,
1107 .pattern = scan_ff_pattern
1108};
1109
1110static struct nand_bbt_descr largepage_flashbased = {
William Juul52c07962007-10-31 13:53:06 +01001111 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001112 .offs = 0,
1113 .len = 2,
1114 .pattern = scan_ff_pattern
1115};
1116
1117static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1118
1119static struct nand_bbt_descr agand_flashbased = {
1120 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1121 .offs = 0x20,
1122 .len = 6,
1123 .pattern = scan_agand_pattern
1124};
1125
1126/* Generic flash bbt decriptors
1127*/
1128static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1129static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1130
1131static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001132 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001133 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1134 .offs = 8,
1135 .len = 4,
1136 .veroffs = 12,
1137 .maxblocks = 4,
1138 .pattern = bbt_pattern
1139};
1140
1141static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001142 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001143 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1144 .offs = 8,
1145 .len = 4,
1146 .veroffs = 12,
1147 .maxblocks = 4,
1148 .pattern = mirror_pattern
1149};
1150
1151/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001152 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001153 * @mtd: MTD device structure
1154 *
1155 * This function selects the default bad block table
1156 * support for the device and calls the nand_scan_bbt function
1157 *
1158*/
William Juul52c07962007-10-31 13:53:06 +01001159int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001160{
1161 struct nand_chip *this = mtd->priv;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001162
1163 /* Default for AG-AND. We must use a flash based
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001164 * bad block table as the devices have factory marked
1165 * _good_ blocks. Erasing those blocks leads to loss
1166 * of the good / bad information, so we _must_ store
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001167 * this information in a good / bad table during
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001168 * startup
William Juul52c07962007-10-31 13:53:06 +01001169 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001170 if (this->options & NAND_IS_AND) {
1171 /* Use the default pattern descriptors */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001172 if (!this->bbt_td) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001173 this->bbt_td = &bbt_main_descr;
1174 this->bbt_md = &bbt_mirror_descr;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001175 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001176 this->options |= NAND_USE_FLASH_BBT;
William Juul52c07962007-10-31 13:53:06 +01001177 return nand_scan_bbt(mtd, &agand_flashbased);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001178 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001179
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001180 /* Is a flash based bad block table requested ? */
1181 if (this->options & NAND_USE_FLASH_BBT) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001182 /* Use the default pattern descriptors */
1183 if (!this->bbt_td) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001184 this->bbt_td = &bbt_main_descr;
1185 this->bbt_md = &bbt_mirror_descr;
1186 }
1187 if (!this->badblock_pattern) {
William Juul52c07962007-10-31 13:53:06 +01001188 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001189 }
1190 } else {
1191 this->bbt_td = NULL;
1192 this->bbt_md = NULL;
1193 if (!this->badblock_pattern) {
William Juul52c07962007-10-31 13:53:06 +01001194 this->badblock_pattern = (mtd->writesize > 512) ?
1195 &largepage_memorybased : &smallpage_memorybased;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001196 }
1197 }
William Juul52c07962007-10-31 13:53:06 +01001198 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001199}
1200
1201/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001202 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001203 * @mtd: MTD device structure
1204 * @offs: offset in the device
1205 * @allowbbt: allow access to bad block table region
1206 *
William Juul52c07962007-10-31 13:53:06 +01001207*/
1208int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001209{
1210 struct nand_chip *this = mtd->priv;
1211 int block;
William Juul52c07962007-10-31 13:53:06 +01001212 uint8_t res;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001213
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001214 /* Get block number * 2 */
William Juul52c07962007-10-31 13:53:06 +01001215 block = (int)(offs >> (this->bbt_erase_shift - 1));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001216 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1217
Scott Wooddf83c472008-06-20 12:38:57 -05001218 MTDDEBUG (MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: "
1219 "(block %d) 0x%02x\n", (unsigned int)offs, res, block >> 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001220
1221 switch ((int)res) {
William Juul52c07962007-10-31 13:53:06 +01001222 case 0x00:
1223 return 0;
1224 case 0x01:
1225 return 1;
1226 case 0x02:
1227 return allowbbt ? 0 : 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001228 }
1229 return 1;
1230}
1231
William Juul52c07962007-10-31 13:53:06 +01001232/* XXX U-BOOT XXX */
1233#if 0
1234EXPORT_SYMBOL(nand_scan_bbt);
1235EXPORT_SYMBOL(nand_default_bbt);
1236#endif