blob: a2a4e179a3556707ceb299f809f90b953c5b9943 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/bitops.h>
59#include <linux/delay.h>
David Woodhousec3f8abf2006-05-13 04:03:42 +010060#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000062/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * check_pattern - [GENERIC] check if a pattern is in the buffer
64 * @buf: the buffer to search
65 * @len: the length of buffer to search
66 * @paglen: the pagelength
67 * @td: search pattern descriptor
68 *
69 * Check for a pattern at the given place. Used to search bad block
70 * tables and good / bad block identifiers.
71 * If the SCAN_EMPTY option is set then check, if all bytes except the
72 * pattern area contain 0xff
73 *
74*/
David Woodhousee0c7d762006-05-13 18:07:53 +010075static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +000077 int i, end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 uint8_t *p = buf;
79
Thomas Gleixnerc9e053652005-06-14 16:39:57 +010080 end = paglen + td->offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (td->options & NAND_BBT_SCANEMPTY) {
82 for (i = 0; i < end; i++) {
83 if (p[i] != 0xff)
84 return -1;
85 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000086 }
Thomas Gleixnerc9e053652005-06-14 16:39:57 +010087 p += end;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* Compare the pattern */
90 for (i = 0; i < td->len; i++) {
91 if (p[i] != td->pattern[i])
92 return -1;
93 }
94
Brian Norris58373ff2010-07-15 12:15:44 -070095 /* Check both positions 1 and 6 for pattern? */
96 if (td->options & NAND_BBT_SCANBYTE1AND6) {
97 if (td->options & NAND_BBT_SCANEMPTY) {
98 p += td->len;
99 end += NAND_SMALL_BADBLOCK_POS - td->offs;
100 /* Check region between positions 1 and 6 */
101 for (i = 0; i < NAND_SMALL_BADBLOCK_POS - td->offs - td->len;
102 i++) {
103 if (*p++ != 0xff)
104 return -1;
105 }
106 }
107 else {
108 p += NAND_SMALL_BADBLOCK_POS - td->offs;
109 }
110 /* Compare the pattern */
111 for (i = 0; i < td->len; i++) {
112 if (p[i] != td->pattern[i])
113 return -1;
114 }
115 }
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (td->options & NAND_BBT_SCANEMPTY) {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000118 p += td->len;
119 end += td->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 for (i = end; i < len; i++) {
121 if (*p++ != 0xff)
122 return -1;
123 }
124 }
125 return 0;
126}
127
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000128/**
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100129 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
130 * @buf: the buffer to search
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100131 * @td: search pattern descriptor
132 *
133 * Check for a pattern at the given place. Used to search bad block
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000134 * tables and good / bad block identifiers. Same as check_pattern, but
Thomas Gleixner19870da2005-07-15 14:53:51 +0100135 * no optional empty check
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100136 *
137*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100138static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100139{
140 int i;
141 uint8_t *p = buf;
142
143 /* Compare the pattern */
144 for (i = 0; i < td->len; i++) {
Thomas Gleixner19870da2005-07-15 14:53:51 +0100145 if (p[td->offs + i] != td->pattern[i])
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100146 return -1;
147 }
Brian Norris58373ff2010-07-15 12:15:44 -0700148 /* Need to check location 1 AND 6? */
149 if (td->options & NAND_BBT_SCANBYTE1AND6) {
150 for (i = 0; i < td->len; i++) {
151 if (p[NAND_SMALL_BADBLOCK_POS + i] != td->pattern[i])
152 return -1;
153 }
154 }
Thomas Gleixnerc9e053652005-06-14 16:39:57 +0100155 return 0;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/**
159 * read_bbt - [GENERIC] Read the bad block table starting from page
160 * @mtd: MTD device structure
161 * @buf: temporary buffer
162 * @page: the starting page
163 * @num: the number of bbt descriptors to read
164 * @bits: number of bits per block
165 * @offs: offset in the memory table
166 * @reserved_block_code: Pattern to identify reserved blocks
167 *
168 * Read the bad block table starting from page.
169 *
170 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100171static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
172 int bits, int offs, int reserved_block_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 int res, i, j, act = 0;
175 struct nand_chip *this = mtd->priv;
176 size_t retlen, len, totlen;
177 loff_t from;
178 uint8_t msk = (uint8_t) ((1 << bits) - 1);
179
180 totlen = (num * bits) >> 3;
David Woodhousee0c7d762006-05-13 18:07:53 +0100181 from = ((loff_t) page) << this->page_shift;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 while (totlen) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100184 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200185 res = mtd->read(mtd, from, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (res < 0) {
187 if (retlen != len) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100188 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return res;
190 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100191 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* Analyse data */
195 for (i = 0; i < len; i++) {
196 uint8_t dat = buf[i];
197 for (j = 0; j < 8; j += bits, act += 2) {
198 uint8_t tmp = (dat >> j) & msk;
199 if (tmp == msk)
200 continue;
David Woodhousee0c7d762006-05-13 18:07:53 +0100201 if (reserved_block_code && (tmp == reserved_block_code)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000202 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%012llx\n",
203 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200205 mtd->ecc_stats.bbtblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 continue;
207 }
208 /* Leave it for now, if its matured we can move this
209 * message to MTD_DEBUG_LEVEL0 */
Adrian Hunter69423d92008-12-10 13:37:21 +0000210 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%012llx\n",
211 (loff_t)((offs << 2) + (act >> 1)) << this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000212 /* Factory marked bad or worn out ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (tmp == 0)
214 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
215 else
216 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200217 mtd->ecc_stats.badblocks++;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220 totlen -= len;
221 from += len;
222 }
223 return 0;
224}
225
226/**
227 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
228 * @mtd: MTD device structure
229 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000230 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * @chip: read the table for a specific chip, -1 read all chips.
232 * Applies only if NAND_BBT_PERCHIP option is set
233 *
234 * Read the bad block table for all chips starting at a given page
235 * We assume that the bbt bits are in consecutive order.
236*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100237static 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 -0700238{
239 struct nand_chip *this = mtd->priv;
240 int res = 0, i;
241 int bits;
242
243 bits = td->options & NAND_BBT_NRBITS_MSK;
244 if (td->options & NAND_BBT_PERCHIP) {
245 int offs = 0;
246 for (i = 0; i < this->numchips; i++) {
247 if (chip == -1 || chip == i)
248 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
249 if (res)
250 return res;
251 offs += this->chipsize >> (this->bbt_erase_shift + 2);
252 }
253 } else {
254 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
255 if (res)
256 return res;
257 }
258 return 0;
259}
260
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200261/*
262 * Scan read raw data from flash
263 */
264static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
265 size_t len)
266{
267 struct mtd_oob_ops ops;
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200268 int res;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200269
270 ops.mode = MTD_OOB_RAW;
271 ops.ooboffs = 0;
272 ops.ooblen = mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200273
Maxim Levitskyb64d39d2010-02-22 20:39:37 +0200274
275 while (len > 0) {
276 if (len <= mtd->writesize) {
277 ops.oobbuf = buf + len;
278 ops.datbuf = buf;
279 ops.len = len;
280 return mtd->read_oob(mtd, offs, &ops);
281 } else {
282 ops.oobbuf = buf + mtd->writesize;
283 ops.datbuf = buf;
284 ops.len = mtd->writesize;
285 res = mtd->read_oob(mtd, offs, &ops);
286
287 if (res)
288 return res;
289 }
290
291 buf += mtd->oobsize + mtd->writesize;
292 len -= mtd->writesize;
293 }
294 return 0;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200295}
296
297/*
298 * Scan write data with oob to flash
299 */
300static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
301 uint8_t *buf, uint8_t *oob)
302{
303 struct mtd_oob_ops ops;
304
305 ops.mode = MTD_OOB_PLACE;
306 ops.ooboffs = 0;
307 ops.ooblen = mtd->oobsize;
308 ops.datbuf = buf;
309 ops.oobbuf = oob;
310 ops.len = len;
311
312 return mtd->write_oob(mtd, offs, &ops);
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/**
316 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
317 * @mtd: MTD device structure
318 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000319 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * @md: descriptor for the bad block table mirror
321 *
322 * Read the bad block table(s) for all chips starting at a given page
323 * We assume that the bbt bits are in consecutive order.
324 *
325*/
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200326static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
327 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct nand_chip *this = mtd->priv;
330
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000331 /* Read the primary version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (td->options & NAND_BBT_VERSION) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000333 scan_read_raw(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200334 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200335 td->version[0] = buf[mtd->writesize + td->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200336 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
337 td->pages[0], td->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000340 /* Read the mirror version, if available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (md && (md->options & NAND_BBT_VERSION)) {
Adrian Hunter69423d92008-12-10 13:37:21 +0000342 scan_read_raw(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200343 mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200344 md->version[0] = buf[mtd->writesize + md->veroffs];
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200345 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
346 md->pages[0], md->version[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 1;
349}
350
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200351/*
352 * Scan a given block full
353 */
354static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
355 loff_t offs, uint8_t *buf, size_t readlen,
356 int scanlen, int len)
357{
358 int ret, j;
359
360 ret = scan_read_raw(mtd, buf, offs, readlen);
361 if (ret)
362 return ret;
363
364 for (j = 0; j < len; j++, buf += scanlen) {
365 if (check_pattern(buf, scanlen, mtd->writesize, bd))
366 return 1;
367 }
368 return 0;
369}
370
371/*
372 * Scan a given block partially
373 */
374static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
375 loff_t offs, uint8_t *buf, int len)
376{
377 struct mtd_oob_ops ops;
378 int j, ret;
379
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200380 ops.ooblen = mtd->oobsize;
381 ops.oobbuf = buf;
382 ops.ooboffs = 0;
383 ops.datbuf = NULL;
384 ops.mode = MTD_OOB_PLACE;
385
386 for (j = 0; j < len; j++) {
387 /*
388 * Read the full oob until read_oob is fixed to
389 * handle single byte reads for 16 bit
390 * buswidth
391 */
392 ret = mtd->read_oob(mtd, offs, &ops);
393 if (ret)
394 return ret;
395
396 if (check_short_pattern(buf, bd))
397 return 1;
398
399 offs += mtd->writesize;
400 }
401 return 0;
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/**
405 * create_bbt - [GENERIC] Create a bad block table by scanning the device
406 * @mtd: MTD device structure
407 * @buf: temporary buffer
408 * @bd: descriptor for the good/bad block search pattern
409 * @chip: create the table for a specific chip, -1 read all chips.
410 * Applies only if NAND_BBT_PERCHIP option is set
411 *
412 * Create a bad block table by scanning the device
413 * for the given good/bad block identify pattern
414 */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200415static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
416 struct nand_bbt_descr *bd, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 struct nand_chip *this = mtd->priv;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200419 int i, numblocks, len, scanlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int startblock;
421 loff_t from;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200422 size_t readlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
David Woodhousee0c7d762006-05-13 18:07:53 +0100424 printk(KERN_INFO "Scanning device for bad blocks\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (bd->options & NAND_BBT_SCANALLPAGES)
427 len = 1 << (this->bbt_erase_shift - this->page_shift);
Brian Norris58373ff2010-07-15 12:15:44 -0700428 else if (bd->options & NAND_BBT_SCAN2NDPAGE)
429 len = 2;
430 else
431 len = 1;
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000432
433 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
434 /* We need only read few bytes from the OOB area */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200435 scanlen = 0;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000436 readlen = bd->len;
437 } else {
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000438 /* Full page content should be read */
Joern Engel28318772006-05-22 23:18:05 +0200439 scanlen = mtd->writesize + mtd->oobsize;
440 readlen = len * mtd->writesize;
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 if (chip == -1) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200444 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
445 * below as it makes shifting and masking less painful */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
447 startblock = 0;
448 from = 0;
449 } else {
450 if (chip >= this->numchips) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100451 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
452 chip + 1, this->numchips);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000453 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
456 startblock = chip * numblocks;
457 numblocks += startblock;
Adrian Hunter69423d92008-12-10 13:37:21 +0000458 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000460
Brian Norris30fe8112010-06-23 13:36:02 -0700461 if (this->options & NAND_BBT_SCANLASTPAGE)
Kevin Cernekeeb60b08b2010-05-04 20:58:10 -0700462 from += mtd->erasesize - (mtd->writesize * len);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 for (i = startblock; i < numblocks;) {
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000465 int ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000466
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200467 if (bd->options & NAND_BBT_SCANALLPAGES)
468 ret = scan_block_full(mtd, bd, from, buf, readlen,
469 scanlen, len);
470 else
471 ret = scan_block_fast(mtd, bd, from, buf, len);
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000472
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200473 if (ret < 0)
474 return ret;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000475
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200476 if (ret) {
477 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Adrian Hunter69423d92008-12-10 13:37:21 +0000478 printk(KERN_WARNING "Bad eraseblock %d at 0x%012llx\n",
479 i >> 1, (unsigned long long)from);
Thomas Gleixnerf1a28c02006-05-30 00:37:34 +0200480 mtd->ecc_stats.badblocks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 i += 2;
484 from += (1 << this->bbt_erase_shift);
485 }
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +0000486 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489/**
490 * search_bbt - [GENERIC] scan the device for a specific bad block table
491 * @mtd: MTD device structure
492 * @buf: temporary buffer
493 * @td: descriptor for the bad block table
494 *
495 * Read the bad block table by searching for a given ident pattern.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000496 * Search is preformed either from the beginning up or from the end of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * the device downwards. The search starts always at the start of a
498 * block.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000499 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * for a bbt, which contains the bad block information of this chip.
David Woodhousee0c7d762006-05-13 18:07:53 +0100501 * This is necessary to provide support for certain DOC devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000503 * The bbt ident pattern resides in the oob area of the first page
504 * in a block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100506static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 struct nand_chip *this = mtd->priv;
509 int i, chips;
510 int bits, startblock, block, dir;
Joern Engel28318772006-05-22 23:18:05 +0200511 int scanlen = mtd->writesize + mtd->oobsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int bbtblocks;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200513 int blocktopage = this->bbt_erase_shift - this->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /* Search direction top -> down ? */
516 if (td->options & NAND_BBT_LASTBLOCK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100517 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 dir = -1;
519 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000520 startblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000522 }
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* Do we have a bbt per chip ? */
525 if (td->options & NAND_BBT_PERCHIP) {
526 chips = this->numchips;
527 bbtblocks = this->chipsize >> this->bbt_erase_shift;
528 startblock &= bbtblocks - 1;
529 } else {
530 chips = 1;
531 bbtblocks = mtd->size >> this->bbt_erase_shift;
532 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* Number of bits for each erase block in the bbt */
535 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 for (i = 0; i < chips; i++) {
538 /* Reset version information */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000539 td->version[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 td->pages[i] = -1;
541 /* Scan the maximum number of blocks */
542 for (block = 0; block < td->maxblocks; block++) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int actblock = startblock + dir * block;
Adrian Hunter69423d92008-12-10 13:37:21 +0000545 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* Read first page */
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200548 scan_read_raw(mtd, buf, offs, mtd->writesize);
Joern Engel28318772006-05-22 23:18:05 +0200549 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200550 td->pages[i] = actblock << blocktopage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (td->options & NAND_BBT_VERSION) {
Joern Engel28318772006-05-22 23:18:05 +0200552 td->version[i] = buf[mtd->writesize + td->veroffs];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554 break;
555 }
556 }
557 startblock += this->chipsize >> this->bbt_erase_shift;
558 }
559 /* Check, if we found a bbt for each requested chip */
560 for (i = 0; i < chips; i++) {
561 if (td->pages[i] == -1)
David Woodhousee0c7d762006-05-13 18:07:53 +0100562 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 else
David Woodhousee0c7d762006-05-13 18:07:53 +0100564 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
565 td->version[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000567 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570/**
571 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
572 * @mtd: MTD device structure
573 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000574 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * @md: descriptor for the bad block table mirror
576 *
577 * Search and read the bad block table(s)
578*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100579static 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 -0700580{
581 /* Search the primary table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100582 search_bbt(mtd, buf, td);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* Search the mirror table */
585 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +0100586 search_bbt(mtd, buf, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000588 /* Force result check */
589 return 1;
590}
591
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000592/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * write_bbt - [GENERIC] (Re)write the bad block table
594 *
595 * @mtd: MTD device structure
596 * @buf: temporary buffer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000597 * @td: descriptor for the bad block table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * @md: descriptor for the bad block table mirror
599 * @chipsel: selector for a specific chip, -1 for all
600 *
601 * (Re)write the bad block table
602 *
603*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100604static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
Thomas Gleixner9223a452006-05-23 17:21:03 +0200605 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
606 int chipsel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
608 struct nand_chip *this = mtd->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct erase_info einfo;
610 int i, j, res, chip = 0;
611 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200612 int nrchips, bbtoffs, pageoffs, ooboffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 uint8_t msk[4];
614 uint8_t rcode = td->reserved_block_code;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200615 size_t retlen, len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 loff_t to;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200617 struct mtd_oob_ops ops;
618
619 ops.ooblen = mtd->oobsize;
620 ops.ooboffs = 0;
621 ops.datbuf = NULL;
622 ops.mode = MTD_OOB_PLACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 if (!rcode)
625 rcode = 0xff;
626 /* Write bad block table per chip rather than per device ? */
627 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100628 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000629 /* Full device write or specific chip ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (chipsel == -1) {
631 nrchips = this->numchips;
632 } else {
633 nrchips = chipsel + 1;
634 chip = chipsel;
635 }
636 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100637 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 nrchips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000639 }
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* Loop through the chips */
642 for (; chip < nrchips; chip++) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000643
644 /* There was already a version of the table, reuse the page
645 * This applies for absolute placement too, as we have the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * page nr. in td->pages.
647 */
648 if (td->pages[chip] != -1) {
649 page = td->pages[chip];
650 goto write;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Automatic placement of the bad block table */
654 /* Search direction top -> down ? */
655 if (td->options & NAND_BBT_LASTBLOCK) {
656 startblock = numblocks * (chip + 1) - 1;
657 dir = -1;
658 } else {
659 startblock = chip * numblocks;
660 dir = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 for (i = 0; i < td->maxblocks; i++) {
664 int block = startblock + dir * i;
665 /* Check, if the block is bad */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200666 switch ((this->bbt[block >> 2] >>
667 (2 * (block & 0x03))) & 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 case 0x01:
669 case 0x03:
670 continue;
671 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200672 page = block <<
673 (this->bbt_erase_shift - this->page_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* Check, if the block is used by the mirror table */
675 if (!md || md->pages[chip] != page)
676 goto write;
677 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100678 printk(KERN_ERR "No space left to write bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -ENOSPC;
David Woodhousee0c7d762006-05-13 18:07:53 +0100680 write:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 /* Set up shift count and masks for the flash table */
683 bits = td->options & NAND_BBT_NRBITS_MSK;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200684 msk[2] = ~rcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 switch (bits) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200686 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
687 msk[3] = 0x01;
688 break;
689 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
690 msk[3] = 0x03;
691 break;
692 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
693 msk[3] = 0x0f;
694 break;
695 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
696 msk[3] = 0xff;
697 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 default: return -EINVAL;
699 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 bbtoffs = chip * (numblocks >> 2);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 to = ((loff_t) page) << this->page_shift;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* Must we save the block contents ? */
706 if (td->options & NAND_BBT_SAVECONTENT) {
707 /* Make it block aligned */
708 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
709 len = 1 << this->bbt_erase_shift;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200710 res = mtd->read(mtd, to, len, &retlen, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (res < 0) {
712 if (retlen != len) {
Thomas Gleixner9223a452006-05-23 17:21:03 +0200713 printk(KERN_INFO "nand_bbt: Error "
714 "reading block for writing "
715 "the bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return res;
717 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200718 printk(KERN_WARNING "nand_bbt: ECC error "
719 "while reading block for writing "
720 "bad block table\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
Thomas Gleixner9223a452006-05-23 17:21:03 +0200722 /* Read oob data */
Vitaly Wool70145682006-11-03 18:20:38 +0300723 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200724 ops.oobbuf = &buf[len];
725 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
Vitaly Wool70145682006-11-03 18:20:38 +0300726 if (res < 0 || ops.oobretlen != ops.ooblen)
Thomas Gleixner9223a452006-05-23 17:21:03 +0200727 goto outerr;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 /* Calc the byte offset in the buffer */
730 pageoffs = page - (int)(to >> this->page_shift);
731 offs = pageoffs << this->page_shift;
732 /* Preset the bbt area with 0xff */
David Woodhousee0c7d762006-05-13 18:07:53 +0100733 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
Thomas Gleixner9223a452006-05-23 17:21:03 +0200734 ooboffs = len + (pageoffs * mtd->oobsize);
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 } else {
737 /* Calc length */
738 len = (size_t) (numblocks >> sft);
739 /* Make it page aligned ! */
Sebastian Andrzej Siewiorcda32092010-09-29 19:43:50 +0200740 len = ALIGN(len, mtd->writesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /* Preset the buffer with 0xff */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200742 memset(buf, 0xff, len +
743 (len >> this->page_shift)* mtd->oobsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 offs = 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200745 ooboffs = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 /* Pattern is located in oob area of first page */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200747 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000749
Thomas Gleixner9223a452006-05-23 17:21:03 +0200750 if (td->options & NAND_BBT_VERSION)
751 buf[ooboffs + td->veroffs] = td->version[chip];
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* walk through the memory table */
David Woodhousee0c7d762006-05-13 18:07:53 +0100754 for (i = 0; i < numblocks;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 uint8_t dat;
756 dat = this->bbt[bbtoffs + (i >> 2)];
David Woodhousee0c7d762006-05-13 18:07:53 +0100757 for (j = 0; j < 4; j++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 int sftcnt = (i << (3 - sft)) & sftmsk;
759 /* Do not store the reserved bbt blocks ! */
Thomas Gleixner9223a452006-05-23 17:21:03 +0200760 buf[offs + (i >> sft)] &=
761 ~(msk[dat & 0x03] << sftcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 dat >>= 2;
763 }
764 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000765
David Woodhousee0c7d762006-05-13 18:07:53 +0100766 memset(&einfo, 0, sizeof(einfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 einfo.mtd = mtd;
Adrian Hunter69423d92008-12-10 13:37:21 +0000768 einfo.addr = to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 einfo.len = 1 << this->bbt_erase_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +0100770 res = nand_erase_nand(mtd, &einfo, 1);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200771 if (res < 0)
772 goto outerr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000773
Thomas Gleixner8593fbc2006-05-29 03:26:58 +0200774 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
Thomas Gleixner9223a452006-05-23 17:21:03 +0200775 if (res < 0)
776 goto outerr;
777
Adrian Hunter69423d92008-12-10 13:37:21 +0000778 printk(KERN_DEBUG "Bad block table written to 0x%012llx, version "
779 "0x%02X\n", (unsigned long long)to, td->version[chip]);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 /* Mark it as used */
782 td->pages[chip] = page;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
Thomas Gleixner9223a452006-05-23 17:21:03 +0200785
786 outerr:
787 printk(KERN_WARNING
788 "nand_bbt: Error while writing bad block table %d\n", res);
789 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792/**
793 * nand_memory_bbt - [GENERIC] create a memory based bad block table
794 * @mtd: MTD device structure
795 * @bd: descriptor for the good/bad block search pattern
796 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000797 * The function creates a memory based bbt by scanning the device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 * for manufacturer / software marked good / bad blocks
799*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100800static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 struct nand_chip *this = mtd->priv;
803
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +0000804 bd->options &= ~NAND_BBT_SCANEMPTY;
David Woodhouse4bf63fc2006-09-25 17:08:04 +0100805 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/**
David Woodhousee0c7d762006-05-13 18:07:53 +0100809 * check_create - [GENERIC] create and write bbt(s) if necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * @mtd: MTD device structure
811 * @buf: temporary buffer
812 * @bd: descriptor for the good/bad block search pattern
813 *
814 * The function checks the results of the previous call to read_bbt
David Woodhousee0c7d762006-05-13 18:07:53 +0100815 * and creates / updates the bbt(s) if necessary
816 * Creation is necessary if no bbt was found for the chip/device
817 * Update is necessary if one of the tables is missing or the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * version nr. of one table is less than the other
819*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100820static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 int i, chips, writeops, chipsel, res;
823 struct nand_chip *this = mtd->priv;
824 struct nand_bbt_descr *td = this->bbt_td;
825 struct nand_bbt_descr *md = this->bbt_md;
826 struct nand_bbt_descr *rd, *rd2;
827
828 /* Do we have a bbt per chip ? */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000829 if (td->options & NAND_BBT_PERCHIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 chips = this->numchips;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000831 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 chips = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 for (i = 0; i < chips; i++) {
835 writeops = 0;
836 rd = NULL;
837 rd2 = NULL;
838 /* Per chip or per device ? */
839 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
840 /* Mirrored table avilable ? */
841 if (md) {
842 if (td->pages[i] == -1 && md->pages[i] == -1) {
843 writeops = 0x03;
844 goto create;
845 }
846
847 if (td->pages[i] == -1) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000848 rd = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 td->version[i] = md->version[i];
850 writeops = 1;
851 goto writecheck;
852 }
853
854 if (md->pages[i] == -1) {
855 rd = td;
856 md->version[i] = td->version[i];
857 writeops = 2;
858 goto writecheck;
859 }
860
861 if (td->version[i] == md->version[i]) {
862 rd = td;
863 if (!(td->options & NAND_BBT_VERSION))
864 rd2 = md;
865 goto writecheck;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
869 rd = td;
870 md->version[i] = td->version[i];
871 writeops = 2;
872 } else {
873 rd = md;
874 td->version[i] = md->version[i];
875 writeops = 1;
876 }
877
878 goto writecheck;
879
880 } else {
881 if (td->pages[i] == -1) {
882 writeops = 0x01;
883 goto create;
884 }
885 rd = td;
886 goto writecheck;
887 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100888 create:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* Create the bad block table by scanning the device ? */
890 if (!(td->options & NAND_BBT_CREATE))
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000891 continue;
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /* Create the table in memory by scanning the chip(s) */
David Woodhousee0c7d762006-05-13 18:07:53 +0100894 create_bbt(mtd, buf, bd, chipsel);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 td->version[i] = 1;
897 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000898 md->version[i] = 1;
David Woodhousee0c7d762006-05-13 18:07:53 +0100899 writecheck:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* read back first ? */
901 if (rd)
David Woodhousee0c7d762006-05-13 18:07:53 +0100902 read_abs_bbt(mtd, buf, rd, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /* If they weren't versioned, read both. */
904 if (rd2)
David Woodhousee0c7d762006-05-13 18:07:53 +0100905 read_abs_bbt(mtd, buf, rd2, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /* Write the bad block table to the device ? */
908 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100909 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (res < 0)
911 return res;
912 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /* Write the mirror bad block table to the device ? */
915 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100916 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (res < 0)
918 return res;
919 }
920 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000925 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 * @mtd: MTD device structure
927 * @td: bad block table descriptor
928 *
929 * The bad block table regions are marked as "bad" to prevent
930 * accidental erasures / writes. The regions are identified by
931 * the mark 0x02.
932*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100933static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 struct nand_chip *this = mtd->priv;
936 int i, j, chips, block, nrblocks, update;
937 uint8_t oldval, newval;
938
939 /* Do we have a bbt per chip ? */
940 if (td->options & NAND_BBT_PERCHIP) {
941 chips = this->numchips;
942 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
943 } else {
944 chips = 1;
945 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000946 }
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 for (i = 0; i < chips; i++) {
949 if ((td->options & NAND_BBT_ABSPAGE) ||
950 !(td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100951 if (td->pages[i] == -1)
952 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000954 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 oldval = this->bbt[(block >> 3)];
956 newval = oldval | (0x2 << (block & 0x06));
957 this->bbt[(block >> 3)] = newval;
958 if ((oldval != newval) && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +0000959 nand_update_bbt(mtd, (loff_t)block << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 continue;
961 }
962 update = 0;
963 if (td->options & NAND_BBT_LASTBLOCK)
964 block = ((i + 1) * nrblocks) - td->maxblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000965 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 block = i * nrblocks;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000967 block <<= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 for (j = 0; j < td->maxblocks; j++) {
969 oldval = this->bbt[(block >> 3)];
970 newval = oldval | (0x2 << (block & 0x06));
971 this->bbt[(block >> 3)] = newval;
David Woodhousee0c7d762006-05-13 18:07:53 +0100972 if (oldval != newval)
973 update = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 block += 2;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* If we want reserved blocks to be recorded to flash, and some
977 new ones have been marked, then we need to update the stored
978 bbts. This should only happen once. */
979 if (update && td->reserved_block_code)
Adrian Hunter69423d92008-12-10 13:37:21 +0000980 nand_update_bbt(mtd, (loff_t)(block - 2) << (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982}
983
984/**
985 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
986 * @mtd: MTD device structure
987 * @bd: descriptor for the good/bad block search pattern
988 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000989 * The function checks, if a bad block table(s) is/are already
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * available. If not it scans the device for manufacturer
991 * marked good / bad blocks and writes the bad block table(s) to
992 * the selected place.
993 *
994 * The bad block table memory is allocated here. It must be freed
995 * by calling the nand_free_bbt function.
996 *
997*/
David Woodhousee0c7d762006-05-13 18:07:53 +0100998int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 struct nand_chip *this = mtd->priv;
1001 int len, res = 0;
1002 uint8_t *buf;
1003 struct nand_bbt_descr *td = this->bbt_td;
1004 struct nand_bbt_descr *md = this->bbt_md;
1005
1006 len = mtd->size >> (this->bbt_erase_shift + 2);
Burman Yan95b93a02006-11-15 21:10:29 +02001007 /* Allocate memory (2bit per block) and clear the memory bad block table */
1008 this->bbt = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (!this->bbt) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001010 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return -ENOMEM;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /* If no primary table decriptor is given, scan the device
1015 * to build a memory based bad block table
1016 */
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001017 if (!td) {
1018 if ((res = nand_memory_bbt(mtd, bd))) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001019 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
1020 kfree(this->bbt);
Artem B. Bityuckiyeeada242005-02-11 10:14:15 +00001021 this->bbt = NULL;
1022 }
1023 return res;
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 /* Allocate a temporary buffer for one eraseblock incl. oob */
1027 len = (1 << this->bbt_erase_shift);
1028 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousec3f8abf2006-05-13 04:03:42 +01001029 buf = vmalloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001031 printk(KERN_ERR "nand_bbt: Out of memory\n");
1032 kfree(this->bbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 this->bbt = NULL;
1034 return -ENOMEM;
1035 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* Is the bbt at a given page ? */
1038 if (td->options & NAND_BBT_ABSPAGE) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001039 res = read_abs_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001040 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /* Search the bad block table using a pattern in oob */
David Woodhousee0c7d762006-05-13 18:07:53 +01001042 res = search_read_bbts(mtd, buf, td, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001045 if (res)
David Woodhousee0c7d762006-05-13 18:07:53 +01001046 res = check_create(mtd, buf, bd);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /* Prevent the bbt regions from erasing / writing */
David Woodhousee0c7d762006-05-13 18:07:53 +01001049 mark_bbt_region(mtd, td);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (md)
David Woodhousee0c7d762006-05-13 18:07:53 +01001051 mark_bbt_region(mtd, md);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001052
David Woodhousee0c7d762006-05-13 18:07:53 +01001053 vfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return res;
1055}
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001058 * nand_update_bbt - [NAND Interface] update bad block table(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 * @mtd: MTD device structure
1060 * @offs: the offset of the newly marked block
1061 *
1062 * The function updates the bad block table(s)
1063*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001064int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct nand_chip *this = mtd->priv;
1067 int len, res = 0, writeops = 0;
1068 int chip, chipsel;
1069 uint8_t *buf;
1070 struct nand_bbt_descr *td = this->bbt_td;
1071 struct nand_bbt_descr *md = this->bbt_md;
1072
1073 if (!this->bbt || !td)
1074 return -EINVAL;
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* Allocate a temporary buffer for one eraseblock incl. oob */
1077 len = (1 << this->bbt_erase_shift);
1078 len += (len >> this->page_shift) * mtd->oobsize;
David Woodhousee0c7d762006-05-13 18:07:53 +01001079 buf = kmalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!buf) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001081 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -ENOMEM;
1083 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 writeops = md != NULL ? 0x03 : 0x01;
1086
1087 /* Do we have a bbt per chip ? */
1088 if (td->options & NAND_BBT_PERCHIP) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001089 chip = (int)(offs >> this->chip_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 chipsel = chip;
1091 } else {
1092 chip = 0;
1093 chipsel = -1;
1094 }
1095
1096 td->version[chip]++;
1097 if (md)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001098 md->version[chip]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 /* Write the bad block table to the device ? */
1101 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001102 res = write_bbt(mtd, buf, td, md, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (res < 0)
1104 goto out;
1105 }
1106 /* Write the mirror bad block table to the device ? */
1107 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001108 res = write_bbt(mtd, buf, md, td, chipsel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
David Woodhousee0c7d762006-05-13 18:07:53 +01001111 out:
1112 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return res;
1114}
1115
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001116/* Define some generic bad / good block scan pattern which are used
Artem B. Bityuckiy171650a2005-02-16 17:09:39 +00001117 * while scanning a device for factory marked good / bad blocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120static struct nand_bbt_descr smallpage_flashbased = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001121 .options = NAND_BBT_SCAN2NDPAGE,
Brian Norrisc7b28e22010-07-13 15:13:00 -07001122 .offs = NAND_SMALL_BADBLOCK_POS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 .len = 1,
1124 .pattern = scan_ff_pattern
1125};
1126
1127static struct nand_bbt_descr largepage_flashbased = {
David Woodhouse6943f8a2006-05-13 16:14:26 +01001128 .options = NAND_BBT_SCAN2NDPAGE,
Brian Norrisc7b28e22010-07-13 15:13:00 -07001129 .offs = NAND_LARGE_BADBLOCK_POS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .len = 2,
1131 .pattern = scan_ff_pattern
1132};
1133
1134static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1135
1136static struct nand_bbt_descr agand_flashbased = {
1137 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1138 .offs = 0x20,
1139 .len = 6,
1140 .pattern = scan_agand_pattern
1141};
1142
1143/* Generic flash bbt decriptors
1144*/
1145static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1146static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1147
1148static struct nand_bbt_descr bbt_main_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001149 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1151 .offs = 8,
1152 .len = 4,
1153 .veroffs = 12,
1154 .maxblocks = 4,
1155 .pattern = bbt_pattern
1156};
1157
1158static struct nand_bbt_descr bbt_mirror_descr = {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001159 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1161 .offs = 8,
1162 .len = 4,
1163 .veroffs = 12,
1164 .maxblocks = 4,
1165 .pattern = mirror_pattern
1166};
1167
Brian Norris58373ff2010-07-15 12:15:44 -07001168#define BBT_SCAN_OPTIONS (NAND_BBT_SCANLASTPAGE | NAND_BBT_SCAN2NDPAGE | \
1169 NAND_BBT_SCANBYTE1AND6)
1170/**
1171 * nand_create_default_bbt_descr - [Internal] Creates a BBT descriptor structure
1172 * @this: NAND chip to create descriptor for
1173 *
1174 * This function allocates and initializes a nand_bbt_descr for BBM detection
1175 * based on the properties of "this". The new descriptor is stored in
1176 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1177 * passed to this function.
1178 *
1179 * TODO: Handle other flags, replace other static structs
1180 * (e.g. handle NAND_BBT_FLASH for flash-based BBT,
1181 * replace smallpage_flashbased)
1182 *
1183 */
1184static int nand_create_default_bbt_descr(struct nand_chip *this)
1185{
1186 struct nand_bbt_descr *bd;
1187 if (this->badblock_pattern) {
1188 printk(KERN_WARNING "BBT descr already allocated; not replacing.\n");
1189 return -EINVAL;
1190 }
1191 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
1192 if (!bd) {
1193 printk(KERN_ERR "nand_create_default_bbt_descr: Out of memory\n");
1194 return -ENOMEM;
1195 }
1196 bd->options = this->options & BBT_SCAN_OPTIONS;
1197 bd->offs = this->badblockpos;
1198 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1199 bd->pattern = scan_ff_pattern;
1200 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1201 this->badblock_pattern = bd;
1202 return 0;
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001206 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * @mtd: MTD device structure
1208 *
1209 * This function selects the default bad block table
1210 * support for the device and calls the nand_scan_bbt function
1211 *
1212*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001213int nand_default_bbt(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 struct nand_chip *this = mtd->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001216
1217 /* Default for AG-AND. We must use a flash based
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 * bad block table as the devices have factory marked
1219 * _good_ blocks. Erasing those blocks leads to loss
1220 * of the good / bad information, so we _must_ store
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001221 * this information in a good / bad table during
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * startup
David Woodhousee0c7d762006-05-13 18:07:53 +01001223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (this->options & NAND_IS_AND) {
1225 /* Use the default pattern descriptors */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001226 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 this->bbt_td = &bbt_main_descr;
1228 this->bbt_md = &bbt_mirror_descr;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 this->options |= NAND_USE_FLASH_BBT;
David Woodhousee0c7d762006-05-13 18:07:53 +01001231 return nand_scan_bbt(mtd, &agand_flashbased);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /* Is a flash based bad block table requested ? */
1235 if (this->options & NAND_USE_FLASH_BBT) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001236 /* Use the default pattern descriptors */
1237 if (!this->bbt_td) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 this->bbt_td = &bbt_main_descr;
1239 this->bbt_md = &bbt_mirror_descr;
1240 }
1241 if (!this->badblock_pattern) {
Joern Engel28318772006-05-22 23:18:05 +02001242 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244 } else {
1245 this->bbt_td = NULL;
1246 this->bbt_md = NULL;
Brian Norris58373ff2010-07-15 12:15:44 -07001247 if (!this->badblock_pattern)
1248 nand_create_default_bbt_descr(this);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
David Woodhousee0c7d762006-05-13 18:07:53 +01001250 return nand_scan_bbt(mtd, this->badblock_pattern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
1253/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001254 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 * @mtd: MTD device structure
1256 * @offs: offset in the device
1257 * @allowbbt: allow access to bad block table region
1258 *
1259*/
David Woodhousee0c7d762006-05-13 18:07:53 +01001260int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct nand_chip *this = mtd->priv;
1263 int block;
David Woodhousee0c7d762006-05-13 18:07:53 +01001264 uint8_t res;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /* Get block number * 2 */
David Woodhousee0c7d762006-05-13 18:07:53 +01001267 block = (int)(offs >> (this->bbt_erase_shift - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1269
David Woodhousee0c7d762006-05-13 18:07:53 +01001270 DEBUG(MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1271 (unsigned int)offs, block >> 1, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 switch ((int)res) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001274 case 0x00:
1275 return 0;
1276 case 0x01:
1277 return 1;
1278 case 0x02:
1279 return allowbbt ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281 return 1;
1282}
1283
David Woodhousee0c7d762006-05-13 18:07:53 +01001284EXPORT_SYMBOL(nand_scan_bbt);
1285EXPORT_SYMBOL(nand_default_bbt);