blob: 387c45c366fe5ed3a53b50445514f2f8e13bd1d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de)
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Description:
14 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000015 * When nand_scan_bbt is called, then it tries to find the bad block table
16 * depending on the options in the bbt descriptor(s). If a bbt is found
17 * then the contents are read and the memory based bbt is created. If a
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * mirrored bbt is selected then the mirror is searched too and the
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000019 * versions are compared. If the mirror has a greater version number
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * than the mirror bbt is used to build the memory based bbt.
21 * If the tables are not versioned, then we "or" the bad block information.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000022 * If one of the bbt's is out of date or does not exist it is (re)created.
23 * If no bbt exists at all then the device is scanned for factory marked
24 * good / bad blocks and the bad block tables are created.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000026 * For manufacturer created bbts like the one found on M-SYS DOC devices
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * the bbt is searched and read but never created
28 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000029 * The autogenerated bad block table is located in the last good blocks
30 * of the device. The table is mirrored, so it can be updated eventually.
31 * The table is marked in the oob area with an ident pattern and a version
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * number which indicates which of both tables is more up to date.
33 *
34 * The table uses 2 bits per block
35 * 11b: block is good
36 * 00b: block is factory marked bad
37 * 01b, 10b: block is marked bad due to wear
38 *
39 * The memory bad block table uses the following scheme:
40 * 00b: block is good
41 * 01b: block is marked bad due to wear
42 * 10b: block is reserved (to protect the bbt area)
43 * 11b: block is factory marked bad
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000044 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * Multichip devices like DOC store the bad block info per floor.
46 *
47 * Following assumptions are made:
48 * - bbts start at a page boundary, if autolocated on a block boundary
David Woodhousee0c7d762006-05-13 18:07:53 +010049 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000050 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
53#include <linux/slab.h>
54#include <linux/types.h>
55#include <linux/mtd/mtd.h>
56#include <linux/mtd/nand.h>
57#include <linux/mtd/nand_ecc.h>
58#include <linux/mtd/compatmac.h>
59#include <linux/bitops.h>
60#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010061#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000063/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * check_pattern - [GENERIC] check if a pattern is in the buffer
65 * @buf: the buffer to search
66 * @len: the length of buffer to search
67 * @paglen: the pagelength
68 * @td: search pattern descriptor
69 *
70 * Check for a pattern at the given place. Used to search bad block
71 * tables and good / bad block identifiers.
72 * If the SCAN_EMPTY option is set then check, if all bytes except the
73 * pattern area contain 0xff
74 *
75*/
David Woodhousee0c7d762006-05-13 18:07:53 +010076static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000078 int i, end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 uint8_t *p = buf;
80
Thomas Gleixnerc9e05362005-06-14 16:39:57 +010081 end = paglen + td->offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (td->options & NAND_BBT_SCANEMPTY) {
83 for (i = 0; i < end; i++) {
84 if (p[i] != 0xff)
85 return -1;
86 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000087 }
Thomas Gleixnerc9e05362005-06-14 16:39:57 +010088 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* Compare the pattern */
91 for (i = 0; i < td->len; i++) {
92 if (p[i] != td->pattern[i])
93 return -1;
94 }
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000097 p += td->len;
98 end += td->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 for (i = end; i < len; i++) {
100 if (*p++ != 0xff)
101 return -1;
102 }
103 }
104 return 0;
105}
106
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000107/**
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100108 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
109 * @buf: the buffer to search
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100110 * @td: search pattern descriptor
111 *
112 * Check for a pattern at the given place. Used to search bad block
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000113 * tables and good / bad block identifiers. Same as check_pattern, but
Thomas Gleixner19870da2005-07-15 14:53:51 +0100114 * no optional empty check
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100115 *
116*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100117static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100118{
119 int i;
120 uint8_t *p = buf;
121
122 /* Compare the pattern */
123 for (i = 0; i < td->len; i++) {
Thomas Gleixner19870da2005-07-15 14:53:51 +0100124 if (p[td->offs + i] != td->pattern[i])
Thomas Gleixnerc9e05362005-06-14 16:39:57 +0100125 return -1;
126 }
127 return 0;
128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/**
131 * read_bbt - [GENERIC] Read the bad block table starting from page
132 * @mtd: MTD device structure
133 * @buf: temporary buffer
134 * @page: the starting page
135 * @num: the number of bbt descriptors to read
136 * @bits: number of bits per block
137 * @offs: offset in the memory table
138 * @reserved_block_code: Pattern to identify reserved blocks
139 *
140 * Read the bad block table starting from page.
141 *
142 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100143static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
144 int bits, int offs, int reserved_block_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 int res, i, j, act = 0;
147 struct nand_chip *this = mtd->priv;
148 size_t retlen, len, totlen;
149 loff_t from;
150 uint8_t msk = (uint8_t) ((1 << bits) - 1);
151
152 totlen = (num * bits) >> 3;
David Woodhousee0c7d762006-05-13 18:07:53 +0100153 from = ((loff_t) page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 while (totlen) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100156 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200157 res = mtd->read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (res < 0) {
159 if (retlen != len) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100160 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return res;
162 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100163 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* Analyse data */
167 for (i = 0; i < len; i++) {
168 uint8_t dat = buf[i];
169 for (j = 0; j < 8; j += bits, act += 2) {
170 uint8_t tmp = (dat >> j) & msk;
171 if (tmp == msk)
172 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100173 if (reserved_block_code && (tmp == reserved_block_code)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000174 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%012llx\n",
175 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200177 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 continue;
179 }
180 /* Leave it for now, if its matured we can move this
181 * message to MTD_DEBUG_LEVEL0 */
Adrian Hunter69423d92008-12-10 13:37:21 +0000182 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%012llx\n",
183 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000184 /* Factory marked bad or worn out ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (tmp == 0)
186 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
187 else
188 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200189 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 totlen -= len;
193 from += len;
194 }
195 return 0;
196}
197
198/**
199 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
200 * @mtd: MTD device structure
201 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000202 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * @chip: read the table for a specific chip, -1 read all chips.
204 * Applies only if NAND_BBT_PERCHIP option is set
205 *
206 * Read the bad block table for all chips starting at a given page
207 * We assume that the bbt bits are in consecutive order.
208*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100209static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct nand_chip *this = mtd->priv;
212 int res = 0, i;
213 int bits;
214
215 bits = td->options & NAND_BBT_NRBITS_MSK;
216 if (td->options & NAND_BBT_PERCHIP) {
217 int offs = 0;
218 for (i = 0; i < this->numchips; i++) {
219 if (chip == -1 || chip == i)
220 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
221 if (res)
222 return res;
223 offs += this->chipsize >> (this->bbt_erase_shift + 2);
224 }
225 } else {
226 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
227 if (res)
228 return res;
229 }
230 return 0;
231}
232
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200233/*
234 * Scan read raw data from flash
235 */
236static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
237 size_t len)
238{
239 struct mtd_oob_ops ops;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200240 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200241
242 ops.mode = MTD_OOB_RAW;
243 ops.ooboffs = 0;
244 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200245
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200246
247 while (len > 0) {
248 if (len <= mtd->writesize) {
249 ops.oobbuf = buf + len;
250 ops.datbuf = buf;
251 ops.len = len;
252 return mtd->read_oob(mtd, offs, &ops);
253 } else {
254 ops.oobbuf = buf + mtd->writesize;
255 ops.datbuf = buf;
256 ops.len = mtd->writesize;
257 res = mtd->read_oob(mtd, offs, &ops);
258
259 if (res)
260 return res;
261 }
262
263 buf += mtd->oobsize + mtd->writesize;
264 len -= mtd->writesize;
265 }
266 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200267}
268
269/*
270 * Scan write data with oob to flash
271 */
272static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
273 uint8_t *buf, uint8_t *oob)
274{
275 struct mtd_oob_ops ops;
276
277 ops.mode = MTD_OOB_PLACE;
278 ops.ooboffs = 0;
279 ops.ooblen = mtd->oobsize;
280 ops.datbuf = buf;
281 ops.oobbuf = oob;
282 ops.len = len;
283
284 return mtd->write_oob(mtd, offs, &ops);
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/**
288 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
289 * @mtd: MTD device structure
290 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000291 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * @md: descriptor for the bad block table mirror
293 *
294 * Read the bad block table(s) for all chips starting at a given page
295 * We assume that the bbt bits are in consecutive order.
296 *
297*/
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200298static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
299 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct nand_chip *this = mtd->priv;
302
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000303 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (td->options & NAND_BBT_VERSION) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000305 scan_read_raw(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200306 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200307 td->version[0] = buf[mtd->writesize + td->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200308 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
309 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000312 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (md && (md->options & NAND_BBT_VERSION)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000314 scan_read_raw(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200315 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200316 md->version[0] = buf[mtd->writesize + md->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200317 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
318 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return 1;
321}
322
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200323/*
324 * Scan a given block full
325 */
326static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
327 loff_t offs, uint8_t *buf, size_t readlen,
328 int scanlen, int len)
329{
330 int ret, j;
331
332 ret = scan_read_raw(mtd, buf, offs, readlen);
333 if (ret)
334 return ret;
335
336 for (j = 0; j < len; j++, buf += scanlen) {
337 if (check_pattern(buf, scanlen, mtd->writesize, bd))
338 return 1;
339 }
340 return 0;
341}
342
343/*
344 * Scan a given block partially
345 */
346static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
347 loff_t offs, uint8_t *buf, int len)
348{
349 struct mtd_oob_ops ops;
350 int j, ret;
351
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200352 ops.ooblen = mtd->oobsize;
353 ops.oobbuf = buf;
354 ops.ooboffs = 0;
355 ops.datbuf = NULL;
356 ops.mode = MTD_OOB_PLACE;
357
358 for (j = 0; j < len; j++) {
359 /*
360 * Read the full oob until read_oob is fixed to
361 * handle single byte reads for 16 bit
362 * buswidth
363 */
364 ret = mtd->read_oob(mtd, offs, &ops);
365 if (ret)
366 return ret;
367
368 if (check_short_pattern(buf, bd))
369 return 1;
370
371 offs += mtd->writesize;
372 }
373 return 0;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/**
377 * create_bbt - [GENERIC] Create a bad block table by scanning the device
378 * @mtd: MTD device structure
379 * @buf: temporary buffer
380 * @bd: descriptor for the good/bad block search pattern
381 * @chip: create the table for a specific chip, -1 read all chips.
382 * Applies only if NAND_BBT_PERCHIP option is set
383 *
384 * Create a bad block table by scanning the device
385 * for the given good/bad block identify pattern
386 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200387static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
388 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct nand_chip *this = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200391 int i, numblocks, len, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int startblock;
393 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200394 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
David Woodhousee0c7d762006-05-13 18:07:53 +0100396 printk(KERN_INFO "Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (bd->options & NAND_BBT_SCANALLPAGES)
399 len = 1 << (this->bbt_erase_shift - this->page_shift);
400 else {
401 if (bd->options & NAND_BBT_SCAN2NDPAGE)
402 len = 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000403 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 len = 1;
405 }
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000406
407 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
408 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200409 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000410 readlen = bd->len;
411 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000412 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200413 scanlen = mtd->writesize + mtd->oobsize;
414 readlen = len * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 if (chip == -1) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200418 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
419 * below as it makes shifting and masking less painful */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
421 startblock = 0;
422 from = 0;
423 } else {
424 if (chip >= this->numchips) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100425 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
426 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000427 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
429 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
430 startblock = chip * numblocks;
431 numblocks += startblock;
Adrian Hunter69423d92008-12-10 13:37:21 +0000432 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000436 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000437
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200438 if (bd->options & NAND_BBT_SCANALLPAGES)
439 ret = scan_block_full(mtd, bd, from, buf, readlen,
440 scanlen, len);
441 else
442 ret = scan_block_fast(mtd, bd, from, buf, len);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000443
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200444 if (ret < 0)
445 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000446
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200447 if (ret) {
448 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Adrian Hunter69423d92008-12-10 13:37:21 +0000449 printk(KERN_WARNING "Bad eraseblock %d at 0x%012llx\n",
450 i >> 1, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200451 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 i += 2;
455 from += (1 << this->bbt_erase_shift);
456 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/**
461 * search_bbt - [GENERIC] scan the device for a specific bad block table
462 * @mtd: MTD device structure
463 * @buf: temporary buffer
464 * @td: descriptor for the bad block table
465 *
466 * Read the bad block table by searching for a given ident pattern.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000467 * Search is preformed either from the beginning up or from the end of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * the device downwards. The search starts always at the start of a
469 * block.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000470 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * for a bbt, which contains the bad block information of this chip.
David Woodhousee0c7d762006-05-13 18:07:53 +0100472 * This is necessary to provide support for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000474 * The bbt ident pattern resides in the oob area of the first page
475 * in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100477static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 struct nand_chip *this = mtd->priv;
480 int i, chips;
481 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200482 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200484 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* Search direction top -> down ? */
487 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100488 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 dir = -1;
490 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000491 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000493 }
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* Do we have a bbt per chip ? */
496 if (td->options & NAND_BBT_PERCHIP) {
497 chips = this->numchips;
498 bbtblocks = this->chipsize >> this->bbt_erase_shift;
499 startblock &= bbtblocks - 1;
500 } else {
501 chips = 1;
502 bbtblocks = mtd->size >> this->bbt_erase_shift;
503 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* Number of bits for each erase block in the bbt */
506 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 for (i = 0; i < chips; i++) {
509 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000510 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 td->pages[i] = -1;
512 /* Scan the maximum number of blocks */
513 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000516 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Read first page */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200519 scan_read_raw(mtd, buf, offs, mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200520 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200521 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (td->options & NAND_BBT_VERSION) {
Joern Engel28318772006-05-22 23:18:05 +0200523 td->version[i] = buf[mtd->writesize + td->veroffs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 break;
526 }
527 }
528 startblock += this->chipsize >> this->bbt_erase_shift;
529 }
530 /* Check, if we found a bbt for each requested chip */
531 for (i = 0; i < chips; i++) {
532 if (td->pages[i] == -1)
David Woodhousee0c7d762006-05-13 18:07:53 +0100533 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100535 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
536 td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/**
542 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
543 * @mtd: MTD device structure
544 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000545 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * @md: descriptor for the bad block table mirror
547 *
548 * Search and read the bad block table(s)
549*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100550static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
552 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100553 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* Search the mirror table */
556 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100557 search_bbt(mtd, buf, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000559 /* Force result check */
560 return 1;
561}
562
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000563/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * write_bbt - [GENERIC] (Re)write the bad block table
565 *
566 * @mtd: MTD device structure
567 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000568 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * @md: descriptor for the bad block table mirror
570 * @chipsel: selector for a specific chip, -1 for all
571 *
572 * (Re)write the bad block table
573 *
574*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100575static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200576 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
577 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct erase_info einfo;
581 int i, j, res, chip = 0;
582 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200583 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 uint8_t msk[4];
585 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200586 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200588 struct mtd_oob_ops ops;
589
590 ops.ooblen = mtd->oobsize;
591 ops.ooboffs = 0;
592 ops.datbuf = NULL;
593 ops.mode = MTD_OOB_PLACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (!rcode)
596 rcode = 0xff;
597 /* Write bad block table per chip rather than per device ? */
598 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100599 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000600 /* Full device write or specific chip ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (chipsel == -1) {
602 nrchips = this->numchips;
603 } else {
604 nrchips = chipsel + 1;
605 chip = chipsel;
606 }
607 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100608 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000610 }
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Loop through the chips */
613 for (; chip < nrchips; chip++) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000614
615 /* There was already a version of the table, reuse the page
616 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * page nr. in td->pages.
618 */
619 if (td->pages[chip] != -1) {
620 page = td->pages[chip];
621 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /* Automatic placement of the bad block table */
625 /* Search direction top -> down ? */
626 if (td->options & NAND_BBT_LASTBLOCK) {
627 startblock = numblocks * (chip + 1) - 1;
628 dir = -1;
629 } else {
630 startblock = chip * numblocks;
631 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 for (i = 0; i < td->maxblocks; i++) {
635 int block = startblock + dir * i;
636 /* Check, if the block is bad */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200637 switch ((this->bbt[block >> 2] >>
638 (2 * (block & 0x03))) & 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 case 0x01:
640 case 0x03:
641 continue;
642 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200643 page = block <<
644 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /* Check, if the block is used by the mirror table */
646 if (!md || md->pages[chip] != page)
647 goto write;
648 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100649 printk(KERN_ERR "No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100651 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Set up shift count and masks for the flash table */
654 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200655 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200657 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
658 msk[3] = 0x01;
659 break;
660 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
661 msk[3] = 0x03;
662 break;
663 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
664 msk[3] = 0x0f;
665 break;
666 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
667 msk[3] = 0xff;
668 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 default: return -EINVAL;
670 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 to = ((loff_t) page) << this->page_shift;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* Must we save the block contents ? */
677 if (td->options & NAND_BBT_SAVECONTENT) {
678 /* Make it block aligned */
679 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
680 len = 1 << this->bbt_erase_shift;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200681 res = mtd->read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (res < 0) {
683 if (retlen != len) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200684 printk(KERN_INFO "nand_bbt: Error "
685 "reading block for writing "
686 "the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return res;
688 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200689 printk(KERN_WARNING "nand_bbt: ECC error "
690 "while reading block for writing "
691 "bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200693 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300694 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200695 ops.oobbuf = &buf[len];
696 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300697 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200698 goto outerr;
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* Calc the byte offset in the buffer */
701 pageoffs = page - (int)(to >> this->page_shift);
702 offs = pageoffs << this->page_shift;
703 /* Preset the bbt area with 0xff */
David Woodhousee0c7d762006-05-13 18:07:53 +0100704 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200705 ooboffs = len + (pageoffs * mtd->oobsize);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 } else {
708 /* Calc length */
709 len = (size_t) (numblocks >> sft);
710 /* Make it page aligned ! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200711 len = (len + (mtd->writesize - 1)) &
712 ~(mtd->writesize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200714 memset(buf, 0xff, len +
715 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200717 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200719 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000721
Thomas Gleixner9223a452006-05-23 17:21:03 +0200722 if (td->options & NAND_BBT_VERSION)
723 buf[ooboffs + td->veroffs] = td->version[chip];
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* walk through the memory table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100726 for (i = 0; i < numblocks;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 uint8_t dat;
728 dat = this->bbt[bbtoffs + (i >> 2)];
David Woodhousee0c7d762006-05-13 18:07:53 +0100729 for (j = 0; j < 4; j++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 int sftcnt = (i << (3 - sft)) & sftmsk;
731 /* Do not store the reserved bbt blocks ! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200732 buf[offs + (i >> sft)] &=
733 ~(msk[dat & 0x03] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 dat >>= 2;
735 }
736 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000737
David Woodhousee0c7d762006-05-13 18:07:53 +0100738 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000740 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100742 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200743 if (res < 0)
744 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000745
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200746 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200747 if (res < 0)
748 goto outerr;
749
Adrian Hunter69423d92008-12-10 13:37:21 +0000750 printk(KERN_DEBUG "Bad block table written to 0x%012llx, version "
751 "0x%02X\n", (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* Mark it as used */
754 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200757
758 outerr:
759 printk(KERN_WARNING
760 "nand_bbt: Error while writing bad block table %d\n", res);
761 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764/**
765 * nand_memory_bbt - [GENERIC] create a memory based bad block table
766 * @mtd: MTD device structure
767 * @bd: descriptor for the good/bad block search pattern
768 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000769 * The function creates a memory based bbt by scanning the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * for manufacturer / software marked good / bad blocks
771*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100772static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct nand_chip *this = mtd->priv;
775
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000776 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100777 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100781 * check_create - [GENERIC] create and write bbt(s) if necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * @mtd: MTD device structure
783 * @buf: temporary buffer
784 * @bd: descriptor for the good/bad block search pattern
785 *
786 * The function checks the results of the previous call to read_bbt
David Woodhousee0c7d762006-05-13 18:07:53 +0100787 * and creates / updates the bbt(s) if necessary
788 * Creation is necessary if no bbt was found for the chip/device
789 * Update is necessary if one of the tables is missing or the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 * version nr. of one table is less than the other
791*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100792static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 int i, chips, writeops, chipsel, res;
795 struct nand_chip *this = mtd->priv;
796 struct nand_bbt_descr *td = this->bbt_td;
797 struct nand_bbt_descr *md = this->bbt_md;
798 struct nand_bbt_descr *rd, *rd2;
799
800 /* Do we have a bbt per chip ? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000801 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000803 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 for (i = 0; i < chips; i++) {
807 writeops = 0;
808 rd = NULL;
809 rd2 = NULL;
810 /* Per chip or per device ? */
811 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
812 /* Mirrored table avilable ? */
813 if (md) {
814 if (td->pages[i] == -1 && md->pages[i] == -1) {
815 writeops = 0x03;
816 goto create;
817 }
818
819 if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000820 rd = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 td->version[i] = md->version[i];
822 writeops = 1;
823 goto writecheck;
824 }
825
826 if (md->pages[i] == -1) {
827 rd = td;
828 md->version[i] = td->version[i];
829 writeops = 2;
830 goto writecheck;
831 }
832
833 if (td->version[i] == md->version[i]) {
834 rd = td;
835 if (!(td->options & NAND_BBT_VERSION))
836 rd2 = md;
837 goto writecheck;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
841 rd = td;
842 md->version[i] = td->version[i];
843 writeops = 2;
844 } else {
845 rd = md;
846 td->version[i] = md->version[i];
847 writeops = 1;
848 }
849
850 goto writecheck;
851
852 } else {
853 if (td->pages[i] == -1) {
854 writeops = 0x01;
855 goto create;
856 }
857 rd = td;
858 goto writecheck;
859 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100860 create:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /* Create the bad block table by scanning the device ? */
862 if (!(td->options & NAND_BBT_CREATE))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000863 continue;
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /* Create the table in memory by scanning the chip(s) */
David Woodhousee0c7d762006-05-13 18:07:53 +0100866 create_bbt(mtd, buf, bd, chipsel);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 td->version[i] = 1;
869 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000870 md->version[i] = 1;
David Woodhousee0c7d762006-05-13 18:07:53 +0100871 writecheck:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* read back first ? */
873 if (rd)
David Woodhousee0c7d762006-05-13 18:07:53 +0100874 read_abs_bbt(mtd, buf, rd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* If they weren't versioned, read both. */
876 if (rd2)
David Woodhousee0c7d762006-05-13 18:07:53 +0100877 read_abs_bbt(mtd, buf, rd2, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* Write the bad block table to the device ? */
880 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100881 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (res < 0)
883 return res;
884 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* Write the mirror bad block table to the device ? */
887 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100888 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (res < 0)
890 return res;
891 }
892 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000897 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * @mtd: MTD device structure
899 * @td: bad block table descriptor
900 *
901 * The bad block table regions are marked as "bad" to prevent
902 * accidental erasures / writes. The regions are identified by
903 * the mark 0x02.
904*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100905static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct nand_chip *this = mtd->priv;
908 int i, j, chips, block, nrblocks, update;
909 uint8_t oldval, newval;
910
911 /* Do we have a bbt per chip ? */
912 if (td->options & NAND_BBT_PERCHIP) {
913 chips = this->numchips;
914 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
915 } else {
916 chips = 1;
917 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000918 }
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 for (i = 0; i < chips; i++) {
921 if ((td->options & NAND_BBT_ABSPAGE) ||
922 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100923 if (td->pages[i] == -1)
924 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000926 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 oldval = this->bbt[(block >> 3)];
928 newval = oldval | (0x2 << (block & 0x06));
929 this->bbt[(block >> 3)] = newval;
930 if ((oldval != newval) && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +0000931 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 continue;
933 }
934 update = 0;
935 if (td->options & NAND_BBT_LASTBLOCK)
936 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000937 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000939 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 for (j = 0; j < td->maxblocks; j++) {
941 oldval = this->bbt[(block >> 3)];
942 newval = oldval | (0x2 << (block & 0x06));
943 this->bbt[(block >> 3)] = newval;
David Woodhousee0c7d762006-05-13 18:07:53 +0100944 if (oldval != newval)
945 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* If we want reserved blocks to be recorded to flash, and some
949 new ones have been marked, then we need to update the stored
950 bbts. This should only happen once. */
951 if (update && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +0000952 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954}
955
956/**
957 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
958 * @mtd: MTD device structure
959 * @bd: descriptor for the good/bad block search pattern
960 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000961 * The function checks, if a bad block table(s) is/are already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 * available. If not it scans the device for manufacturer
963 * marked good / bad blocks and writes the bad block table(s) to
964 * the selected place.
965 *
966 * The bad block table memory is allocated here. It must be freed
967 * by calling the nand_free_bbt function.
968 *
969*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100970int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 struct nand_chip *this = mtd->priv;
973 int len, res = 0;
974 uint8_t *buf;
975 struct nand_bbt_descr *td = this->bbt_td;
976 struct nand_bbt_descr *md = this->bbt_md;
977
978 len = mtd->size >> (this->bbt_erase_shift + 2);
Burman Yan95b93a02006-11-15 21:10:29 +0200979 /* Allocate memory (2bit per block) and clear the memory bad block table */
980 this->bbt = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (!this->bbt) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100982 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return -ENOMEM;
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 /* If no primary table decriptor is given, scan the device
987 * to build a memory based bad block table
988 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000989 if (!td) {
990 if ((res = nand_memory_bbt(mtd, bd))) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100991 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
992 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000993 this->bbt = NULL;
994 }
995 return res;
996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /* Allocate a temporary buffer for one eraseblock incl. oob */
999 len = (1 << this->bbt_erase_shift);
1000 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001001 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001003 printk(KERN_ERR "nand_bbt: Out of memory\n");
1004 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 this->bbt = NULL;
1006 return -ENOMEM;
1007 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* Is the bbt at a given page ? */
1010 if (td->options & NAND_BBT_ABSPAGE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001011 res = read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001012 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* Search the bad block table using a pattern in oob */
David Woodhousee0c7d762006-05-13 18:07:53 +01001014 res = search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001017 if (res)
David Woodhousee0c7d762006-05-13 18:07:53 +01001018 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001021 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001023 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001024
David Woodhousee0c7d762006-05-13 18:07:53 +01001025 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return res;
1027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001030 * nand_update_bbt - [NAND Interface] update bad block table(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * @mtd: MTD device structure
1032 * @offs: the offset of the newly marked block
1033 *
1034 * The function updates the bad block table(s)
1035*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001036int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 struct nand_chip *this = mtd->priv;
1039 int len, res = 0, writeops = 0;
1040 int chip, chipsel;
1041 uint8_t *buf;
1042 struct nand_bbt_descr *td = this->bbt_td;
1043 struct nand_bbt_descr *md = this->bbt_md;
1044
1045 if (!this->bbt || !td)
1046 return -EINVAL;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /* Allocate a temporary buffer for one eraseblock incl. oob */
1049 len = (1 << this->bbt_erase_shift);
1050 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001051 buf = kmalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001053 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return -ENOMEM;
1055 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 writeops = md != NULL ? 0x03 : 0x01;
1058
1059 /* Do we have a bbt per chip ? */
1060 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001061 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 chipsel = chip;
1063 } else {
1064 chip = 0;
1065 chipsel = -1;
1066 }
1067
1068 td->version[chip]++;
1069 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001070 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /* Write the bad block table to the device ? */
1073 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001074 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 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)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001080 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
David Woodhousee0c7d762006-05-13 18:07:53 +01001083 out:
1084 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return res;
1086}
1087
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001088/* Define some generic bad / good block scan pattern which are used
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +00001089 * while scanning a device for factory marked good / bad blocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1091
1092static struct nand_bbt_descr smallpage_memorybased = {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +00001093 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 .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 = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001107 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 .offs = 5,
1109 .len = 1,
1110 .pattern = scan_ff_pattern
1111};
1112
1113static struct nand_bbt_descr largepage_flashbased = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001114 .options = NAND_BBT_SCAN2NDPAGE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 .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 = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001135 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 | 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 = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001145 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 | 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/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001155 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 * @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*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001162int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001165
1166 /* Default for AG-AND. We must use a flash based
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * 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
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001170 * this information in a good / bad table during
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 * startup
David Woodhousee0c7d762006-05-13 18:07:53 +01001172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (this->options & NAND_IS_AND) {
1174 /* Use the default pattern descriptors */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001175 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 this->bbt_td = &bbt_main_descr;
1177 this->bbt_md = &bbt_mirror_descr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 this->options |= NAND_USE_FLASH_BBT;
David Woodhousee0c7d762006-05-13 18:07:53 +01001180 return nand_scan_bbt(mtd, &agand_flashbased);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Is a flash based bad block table requested ? */
1184 if (this->options & NAND_USE_FLASH_BBT) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001185 /* Use the default pattern descriptors */
1186 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 this->bbt_td = &bbt_main_descr;
1188 this->bbt_md = &bbt_mirror_descr;
1189 }
1190 if (!this->badblock_pattern) {
Joern Engel28318772006-05-22 23:18:05 +02001191 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 } else {
1194 this->bbt_td = NULL;
1195 this->bbt_md = NULL;
1196 if (!this->badblock_pattern) {
Joern Engel28318772006-05-22 23:18:05 +02001197 this->badblock_pattern = (mtd->writesize > 512) ?
David Woodhousee0c7d762006-05-13 18:07:53 +01001198 &largepage_memorybased : &smallpage_memorybased;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 }
David Woodhousee0c7d762006-05-13 18:07:53 +01001201 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
1204/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001205 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 * @mtd: MTD device structure
1207 * @offs: offset in the device
1208 * @allowbbt: allow access to bad block table region
1209 *
1210*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001211int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 struct nand_chip *this = mtd->priv;
1214 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001215 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001218 block = (int)(offs >> (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1220
David Woodhousee0c7d762006-05-13 18:07:53 +01001221 DEBUG(MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1222 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 switch ((int)res) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001225 case 0x00:
1226 return 0;
1227 case 0x01:
1228 return 1;
1229 case 0x02:
1230 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232 return 1;
1233}
1234
David Woodhousee0c7d762006-05-13 18:07:53 +01001235EXPORT_SYMBOL(nand_scan_bbt);
1236EXPORT_SYMBOL(nand_default_bbt);