blob: 521dddec2784202568b45f7b8a02fc20fcfd8338 [file] [log] [blame]
Wolfgang Denk932394a2005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02006 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02007 * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de)
8 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02009 * 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 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020015 * 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
Wolfgang Denk932394a2005-08-17 12:55:25 +020018 * mirrored bbt is selected then the mirror is searched too and the
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020019 * versions are compared. If the mirror has a greater version number
Wolfgang Denk932394a2005-08-17 12:55:25 +020020 * 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.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020022 * 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.
Wolfgang Denk932394a2005-08-17 12:55:25 +020025 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020026 * For manufacturer created bbts like the one found on M-SYS DOC devices
Wolfgang Denk932394a2005-08-17 12:55:25 +020027 * the bbt is searched and read but never created
28 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020029 * 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
Wolfgang Denk932394a2005-08-17 12:55:25 +020032 * number which indicates which of both tables is more up to date.
33 *
34 * The table uses 2 bits per block
Wolfgang Denk53677ef2008-05-20 16:00:29 +020035 * 11b: block is good
36 * 00b: block is factory marked bad
37 * 01b, 10b: block is marked bad due to wear
Wolfgang Denk932394a2005-08-17 12:55:25 +020038 *
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
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020044 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020045 * 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
William Juulcfa460a2007-10-31 13:53:06 +010049 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020050 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020051 */
52
53#include <common.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020054#include <malloc.h>
55#include <linux/mtd/compat.h>
56#include <linux/mtd/mtd.h>
57#include <linux/mtd/nand.h>
58
59#include <asm/errno.h>
60
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020061/**
Wolfgang Denk932394a2005-08-17 12:55:25 +020062 * check_pattern - [GENERIC] check if a pattern is in the buffer
63 * @buf: the buffer to search
64 * @len: the length of buffer to search
65 * @paglen: the pagelength
66 * @td: search pattern descriptor
67 *
68 * Check for a pattern at the given place. Used to search bad block
69 * tables and good / bad block identifiers.
70 * If the SCAN_EMPTY option is set then check, if all bytes except the
71 * pattern area contain 0xff
72 *
73*/
William Juulcfa460a2007-10-31 13:53:06 +010074static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +020075{
William Juulcfa460a2007-10-31 13:53:06 +010076 int i, end = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +020077 uint8_t *p = buf;
78
79 end = paglen + td->offs;
80 if (td->options & NAND_BBT_SCANEMPTY) {
81 for (i = 0; i < end; i++) {
82 if (p[i] != 0xff)
83 return -1;
84 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020085 }
Wolfgang Denk932394a2005-08-17 12:55:25 +020086 p += end;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020087
Wolfgang Denk932394a2005-08-17 12:55:25 +020088 /* Compare the pattern */
89 for (i = 0; i < td->len; i++) {
90 if (p[i] != td->pattern[i])
91 return -1;
92 }
93
Wolfgang Denk932394a2005-08-17 12:55:25 +020094 if (td->options & NAND_BBT_SCANEMPTY) {
William Juulcfa460a2007-10-31 13:53:06 +010095 p += td->len;
96 end += td->len;
Wolfgang Denk932394a2005-08-17 12:55:25 +020097 for (i = end; i < len; i++) {
98 if (*p++ != 0xff)
99 return -1;
100 }
101 }
102 return 0;
103}
104
105/**
William Juulcfa460a2007-10-31 13:53:06 +0100106 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
107 * @buf: the buffer to search
108 * @td: search pattern descriptor
109 *
110 * Check for a pattern at the given place. Used to search bad block
111 * tables and good / bad block identifiers. Same as check_pattern, but
112 * no optional empty check
113 *
114*/
115static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
116{
117 int i;
118 uint8_t *p = buf;
119
120 /* Compare the pattern */
121 for (i = 0; i < td->len; i++) {
122 if (p[td->offs + i] != td->pattern[i])
123 return -1;
124 }
125 return 0;
126}
127
128/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200129 * read_bbt - [GENERIC] Read the bad block table starting from page
130 * @mtd: MTD device structure
131 * @buf: temporary buffer
132 * @page: the starting page
133 * @num: the number of bbt descriptors to read
134 * @bits: number of bits per block
135 * @offs: offset in the memory table
136 * @reserved_block_code: Pattern to identify reserved blocks
137 *
138 * Read the bad block table starting from page.
139 *
140 */
William Juulcfa460a2007-10-31 13:53:06 +0100141static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
142 int bits, int offs, int reserved_block_code)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200143{
144 int res, i, j, act = 0;
145 struct nand_chip *this = mtd->priv;
146 size_t retlen, len, totlen;
147 loff_t from;
148 uint8_t msk = (uint8_t) ((1 << bits) - 1);
149
150 totlen = (num * bits) >> 3;
William Juulcfa460a2007-10-31 13:53:06 +0100151 from = ((loff_t) page) << this->page_shift;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200152
Wolfgang Denk932394a2005-08-17 12:55:25 +0200153 while (totlen) {
William Juulcfa460a2007-10-31 13:53:06 +0100154 len = min(totlen, (size_t) (1 << this->bbt_erase_shift));
155 res = mtd->read(mtd, from, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200156 if (res < 0) {
157 if (retlen != len) {
William Juulcfa460a2007-10-31 13:53:06 +0100158 printk(KERN_INFO "nand_bbt: Error reading bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200159 return res;
160 }
William Juulcfa460a2007-10-31 13:53:06 +0100161 printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n");
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200162 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200163
164 /* Analyse data */
165 for (i = 0; i < len; i++) {
166 uint8_t dat = buf[i];
167 for (j = 0; j < 8; j += bits, act += 2) {
168 uint8_t tmp = (dat >> j) & msk;
169 if (tmp == msk)
170 continue;
William Juulcfa460a2007-10-31 13:53:06 +0100171 if (reserved_block_code && (tmp == reserved_block_code)) {
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400172 printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%012llx\n",
173 (loff_t)((offs << 2) +
174 (act >> 1)) <<
175 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200176 this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06);
William Juulcfa460a2007-10-31 13:53:06 +0100177 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200178 continue;
179 }
180 /* Leave it for now, if its matured we can move this
181 * message to MTD_DEBUG_LEVEL0 */
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400182 printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%012llx\n",
183 (loff_t)((offs << 2) + (act >> 1)) <<
184 this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200185 /* Factory marked bad or worn out ? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200186 if (tmp == 0)
187 this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06);
188 else
189 this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06);
William Juulcfa460a2007-10-31 13:53:06 +0100190 mtd->ecc_stats.badblocks++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200191 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200192 }
193 totlen -= len;
194 from += len;
195 }
196 return 0;
197}
198
199/**
200 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
201 * @mtd: MTD device structure
202 * @buf: temporary buffer
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200203 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200204 * @chip: read the table for a specific chip, -1 read all chips.
205 * Applies only if NAND_BBT_PERCHIP option is set
206 *
207 * Read the bad block table for all chips starting at a given page
208 * We assume that the bbt bits are in consecutive order.
209*/
William Juulcfa460a2007-10-31 13:53:06 +0100210static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200211{
212 struct nand_chip *this = mtd->priv;
213 int res = 0, i;
214 int bits;
215
216 bits = td->options & NAND_BBT_NRBITS_MSK;
217 if (td->options & NAND_BBT_PERCHIP) {
218 int offs = 0;
219 for (i = 0; i < this->numchips; i++) {
220 if (chip == -1 || chip == i)
221 res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code);
222 if (res)
223 return res;
224 offs += this->chipsize >> (this->bbt_erase_shift + 2);
225 }
226 } else {
227 res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code);
228 if (res)
229 return res;
230 }
231 return 0;
232}
233
William Juulcfa460a2007-10-31 13:53:06 +0100234/*
235 * Scan read raw data from flash
236 */
237static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
238 size_t len)
239{
240 struct mtd_oob_ops ops;
241
242 ops.mode = MTD_OOB_RAW;
243 ops.ooboffs = 0;
244 ops.ooblen = mtd->oobsize;
245 ops.oobbuf = buf;
246 ops.datbuf = buf;
247 ops.len = len;
248
249 return mtd->read_oob(mtd, offs, &ops);
250}
251
252/*
253 * Scan write data with oob to flash
254 */
255static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
256 uint8_t *buf, uint8_t *oob)
257{
258 struct mtd_oob_ops ops;
259
260 ops.mode = MTD_OOB_PLACE;
261 ops.ooboffs = 0;
262 ops.ooblen = mtd->oobsize;
263 ops.datbuf = buf;
264 ops.oobbuf = oob;
265 ops.len = len;
266
267 return mtd->write_oob(mtd, offs, &ops);
268}
269
Wolfgang Denk932394a2005-08-17 12:55:25 +0200270/**
271 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
272 * @mtd: MTD device structure
273 * @buf: temporary buffer
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200274 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200275 * @md: descriptor for the bad block table mirror
276 *
277 * Read the bad block table(s) for all chips starting at a given page
278 * We assume that the bbt bits are in consecutive order.
279 *
280*/
William Juulcfa460a2007-10-31 13:53:06 +0100281static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
282 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200283{
284 struct nand_chip *this = mtd->priv;
285
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200286 /* Read the primary version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200287 if (td->options & NAND_BBT_VERSION) {
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400288 scan_read_raw(mtd, buf, (loff_t)td->pages[0] <<
289 this->page_shift, mtd->writesize);
William Juulcfa460a2007-10-31 13:53:06 +0100290 td->version[0] = buf[mtd->writesize + td->veroffs];
291 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
292 td->pages[0], td->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200293 }
294
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200295 /* Read the mirror version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200296 if (md && (md->options & NAND_BBT_VERSION)) {
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400297 scan_read_raw(mtd, buf, (loff_t)md->pages[0] <<
298 this->page_shift, mtd->writesize);
William Juulcfa460a2007-10-31 13:53:06 +0100299 md->version[0] = buf[mtd->writesize + md->veroffs];
300 printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n",
301 md->pages[0], md->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200302 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200303 return 1;
304}
305
William Juulcfa460a2007-10-31 13:53:06 +0100306/*
307 * Scan a given block full
308 */
309static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd,
310 loff_t offs, uint8_t *buf, size_t readlen,
311 int scanlen, int len)
312{
313 int ret, j;
314
315 ret = scan_read_raw(mtd, buf, offs, readlen);
316 if (ret)
317 return ret;
318
319 for (j = 0; j < len; j++, buf += scanlen) {
320 if (check_pattern(buf, scanlen, mtd->writesize, bd))
321 return 1;
322 }
323 return 0;
324}
325
326/*
327 * Scan a given block partially
328 */
329static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
330 loff_t offs, uint8_t *buf, int len)
331{
332 struct mtd_oob_ops ops;
333 int j, ret;
334
335 ops.ooblen = mtd->oobsize;
336 ops.oobbuf = buf;
337 ops.ooboffs = 0;
338 ops.datbuf = NULL;
339 ops.mode = MTD_OOB_PLACE;
340
341 for (j = 0; j < len; j++) {
342 /*
343 * Read the full oob until read_oob is fixed to
344 * handle single byte reads for 16 bit
345 * buswidth
346 */
347 ret = mtd->read_oob(mtd, offs, &ops);
348 if (ret)
349 return ret;
350
351 if (check_short_pattern(buf, bd))
352 return 1;
353
354 offs += mtd->writesize;
355 }
356 return 0;
357}
358
Wolfgang Denk932394a2005-08-17 12:55:25 +0200359/**
360 * create_bbt - [GENERIC] Create a bad block table by scanning the device
361 * @mtd: MTD device structure
362 * @buf: temporary buffer
363 * @bd: descriptor for the good/bad block search pattern
364 * @chip: create the table for a specific chip, -1 read all chips.
365 * Applies only if NAND_BBT_PERCHIP option is set
366 *
367 * Create a bad block table by scanning the device
368 * for the given good/bad block identify pattern
369 */
William Juulcfa460a2007-10-31 13:53:06 +0100370static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
371 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200372{
373 struct nand_chip *this = mtd->priv;
William Juulcfa460a2007-10-31 13:53:06 +0100374 int i, numblocks, len, scanlen;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200375 int startblock;
376 loff_t from;
William Juulcfa460a2007-10-31 13:53:06 +0100377 size_t readlen;
378
Stefan Roesee52b34d2008-01-10 18:47:33 +0100379 MTDDEBUG (MTD_DEBUG_LEVEL0, "Scanning device for bad blocks\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200380
Wolfgang Denk932394a2005-08-17 12:55:25 +0200381 if (bd->options & NAND_BBT_SCANALLPAGES)
382 len = 1 << (this->bbt_erase_shift - this->page_shift);
383 else {
384 if (bd->options & NAND_BBT_SCAN2NDPAGE)
385 len = 2;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200386 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200387 len = 1;
388 }
William Juulcfa460a2007-10-31 13:53:06 +0100389
390 if (!(bd->options & NAND_BBT_SCANEMPTY)) {
391 /* We need only read few bytes from the OOB area */
392 scanlen = 0;
393 readlen = bd->len;
394 } else {
395 /* Full page content should be read */
396 scanlen = mtd->writesize + mtd->oobsize;
397 readlen = len * mtd->writesize;
398 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200399
400 if (chip == -1) {
William Juulcfa460a2007-10-31 13:53:06 +0100401 /* Note that numblocks is 2 * (real numblocks) here, see i+=2
402 * below as it makes shifting and masking less painful */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200403 numblocks = mtd->size >> (this->bbt_erase_shift - 1);
404 startblock = 0;
405 from = 0;
406 } else {
407 if (chip >= this->numchips) {
William Juulcfa460a2007-10-31 13:53:06 +0100408 printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n",
409 chip + 1, this->numchips);
410 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200411 }
412 numblocks = this->chipsize >> (this->bbt_erase_shift - 1);
413 startblock = chip * numblocks;
414 numblocks += startblock;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400415 from = (loff_t)startblock << (this->bbt_erase_shift - 1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200416 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200417
Wolfgang Denk932394a2005-08-17 12:55:25 +0200418 for (i = startblock; i < numblocks;) {
William Juulcfa460a2007-10-31 13:53:06 +0100419 int ret;
420
421 if (bd->options & NAND_BBT_SCANALLPAGES)
422 ret = scan_block_full(mtd, bd, from, buf, readlen,
423 scanlen, len);
424 else
425 ret = scan_block_fast(mtd, bd, from, buf, len);
426
427 if (ret < 0)
428 return ret;
429
430 if (ret) {
431 this->bbt[i >> 3] |= 0x03 << (i & 0x6);
Stefan Roesee52b34d2008-01-10 18:47:33 +0100432 MTDDEBUG (MTD_DEBUG_LEVEL0,
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400433 "Bad eraseblock %d at 0x%012llx\n",
434 i >> 1, (unsigned long long)from);
William Juulcfa460a2007-10-31 13:53:06 +0100435 mtd->ecc_stats.badblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200436 }
William Juulcfa460a2007-10-31 13:53:06 +0100437
Wolfgang Denk932394a2005-08-17 12:55:25 +0200438 i += 2;
439 from += (1 << this->bbt_erase_shift);
440 }
William Juulcfa460a2007-10-31 13:53:06 +0100441 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200442}
443
444/**
445 * search_bbt - [GENERIC] scan the device for a specific bad block table
446 * @mtd: MTD device structure
447 * @buf: temporary buffer
448 * @td: descriptor for the bad block table
449 *
450 * Read the bad block table by searching for a given ident pattern.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200451 * Search is preformed either from the beginning up or from the end of
Wolfgang Denk932394a2005-08-17 12:55:25 +0200452 * the device downwards. The search starts always at the start of a
453 * block.
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200454 * If the option NAND_BBT_PERCHIP is given, each chip is searched
Wolfgang Denk932394a2005-08-17 12:55:25 +0200455 * for a bbt, which contains the bad block information of this chip.
William Juulcfa460a2007-10-31 13:53:06 +0100456 * This is necessary to provide support for certain DOC devices.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200457 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200458 * The bbt ident pattern resides in the oob area of the first page
459 * in a block.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200460 */
William Juulcfa460a2007-10-31 13:53:06 +0100461static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200462{
463 struct nand_chip *this = mtd->priv;
464 int i, chips;
465 int bits, startblock, block, dir;
William Juulcfa460a2007-10-31 13:53:06 +0100466 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200467 int bbtblocks;
William Juulcfa460a2007-10-31 13:53:06 +0100468 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200469
470 /* Search direction top -> down ? */
471 if (td->options & NAND_BBT_LASTBLOCK) {
William Juulcfa460a2007-10-31 13:53:06 +0100472 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200473 dir = -1;
474 } else {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200475 startblock = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200476 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200477 }
478
Wolfgang Denk932394a2005-08-17 12:55:25 +0200479 /* Do we have a bbt per chip ? */
480 if (td->options & NAND_BBT_PERCHIP) {
481 chips = this->numchips;
482 bbtblocks = this->chipsize >> this->bbt_erase_shift;
483 startblock &= bbtblocks - 1;
484 } else {
485 chips = 1;
486 bbtblocks = mtd->size >> this->bbt_erase_shift;
487 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200488
Wolfgang Denk932394a2005-08-17 12:55:25 +0200489 /* Number of bits for each erase block in the bbt */
490 bits = td->options & NAND_BBT_NRBITS_MSK;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200491
Wolfgang Denk932394a2005-08-17 12:55:25 +0200492 for (i = 0; i < chips; i++) {
493 /* Reset version information */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200494 td->version[i] = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200495 td->pages[i] = -1;
496 /* Scan the maximum number of blocks */
497 for (block = 0; block < td->maxblocks; block++) {
William Juulcfa460a2007-10-31 13:53:06 +0100498
Wolfgang Denk932394a2005-08-17 12:55:25 +0200499 int actblock = startblock + dir * block;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400500 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100501
Wolfgang Denk932394a2005-08-17 12:55:25 +0200502 /* Read first page */
William Juulcfa460a2007-10-31 13:53:06 +0100503 scan_read_raw(mtd, buf, offs, mtd->writesize);
504 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
505 td->pages[i] = actblock << blocktopage;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200506 if (td->options & NAND_BBT_VERSION) {
William Juulcfa460a2007-10-31 13:53:06 +0100507 td->version[i] = buf[mtd->writesize + td->veroffs];
Wolfgang Denk932394a2005-08-17 12:55:25 +0200508 }
509 break;
510 }
511 }
512 startblock += this->chipsize >> this->bbt_erase_shift;
513 }
514 /* Check, if we found a bbt for each requested chip */
515 for (i = 0; i < chips; i++) {
516 if (td->pages[i] == -1)
William Juulcfa460a2007-10-31 13:53:06 +0100517 printk(KERN_WARNING "Bad block table not found for chip %d\n", i);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200518 else
William Juulcfa460a2007-10-31 13:53:06 +0100519 printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i],
520 td->version[i]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200521 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200522 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200523}
524
525/**
526 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
527 * @mtd: MTD device structure
528 * @buf: temporary buffer
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200529 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200530 * @md: descriptor for the bad block table mirror
531 *
532 * Search and read the bad block table(s)
533*/
William Juulcfa460a2007-10-31 13:53:06 +0100534static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200535{
536 /* Search the primary table */
William Juulcfa460a2007-10-31 13:53:06 +0100537 search_bbt(mtd, buf, td);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200538
Wolfgang Denk932394a2005-08-17 12:55:25 +0200539 /* Search the mirror table */
540 if (md)
William Juulcfa460a2007-10-31 13:53:06 +0100541 search_bbt(mtd, buf, md);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200542
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200543 /* Force result check */
544 return 1;
545}
546
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200547/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200548 * write_bbt - [GENERIC] (Re)write the bad block table
549 *
550 * @mtd: MTD device structure
551 * @buf: temporary buffer
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200552 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200553 * @md: descriptor for the bad block table mirror
554 * @chipsel: selector for a specific chip, -1 for all
555 *
556 * (Re)write the bad block table
557 *
558*/
William Juulcfa460a2007-10-31 13:53:06 +0100559static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
560 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
561 int chipsel)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200562{
563 struct nand_chip *this = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200564 struct erase_info einfo;
565 int i, j, res, chip = 0;
566 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
William Juulcfa460a2007-10-31 13:53:06 +0100567 int nrchips, bbtoffs, pageoffs, ooboffs;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200568 uint8_t msk[4];
569 uint8_t rcode = td->reserved_block_code;
570 size_t retlen, len = 0;
571 loff_t to;
William Juulcfa460a2007-10-31 13:53:06 +0100572 struct mtd_oob_ops ops;
573
574 ops.ooblen = mtd->oobsize;
575 ops.ooboffs = 0;
576 ops.datbuf = NULL;
577 ops.mode = MTD_OOB_PLACE;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200578
579 if (!rcode)
580 rcode = 0xff;
581 /* Write bad block table per chip rather than per device ? */
582 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +0100583 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200584 /* Full device write or specific chip ? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200585 if (chipsel == -1) {
586 nrchips = this->numchips;
587 } else {
588 nrchips = chipsel + 1;
589 chip = chipsel;
590 }
591 } else {
William Juulcfa460a2007-10-31 13:53:06 +0100592 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200593 nrchips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200594 }
595
Wolfgang Denk932394a2005-08-17 12:55:25 +0200596 /* Loop through the chips */
597 for (; chip < nrchips; chip++) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200598
599 /* There was already a version of the table, reuse the page
600 * This applies for absolute placement too, as we have the
Wolfgang Denk932394a2005-08-17 12:55:25 +0200601 * page nr. in td->pages.
602 */
603 if (td->pages[chip] != -1) {
604 page = td->pages[chip];
605 goto write;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200606 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200607
608 /* Automatic placement of the bad block table */
609 /* Search direction top -> down ? */
610 if (td->options & NAND_BBT_LASTBLOCK) {
611 startblock = numblocks * (chip + 1) - 1;
612 dir = -1;
613 } else {
614 startblock = chip * numblocks;
615 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200616 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200617
618 for (i = 0; i < td->maxblocks; i++) {
619 int block = startblock + dir * i;
620 /* Check, if the block is bad */
William Juulcfa460a2007-10-31 13:53:06 +0100621 switch ((this->bbt[block >> 2] >>
622 (2 * (block & 0x03))) & 0x03) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200623 case 0x01:
624 case 0x03:
625 continue;
626 }
William Juulcfa460a2007-10-31 13:53:06 +0100627 page = block <<
628 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200629 /* Check, if the block is used by the mirror table */
630 if (!md || md->pages[chip] != page)
631 goto write;
632 }
William Juulcfa460a2007-10-31 13:53:06 +0100633 printk(KERN_ERR "No space left to write bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200634 return -ENOSPC;
William Juulcfa460a2007-10-31 13:53:06 +0100635 write:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200636
637 /* Set up shift count and masks for the flash table */
638 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juulcfa460a2007-10-31 13:53:06 +0100639 msk[2] = ~rcode;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200640 switch (bits) {
William Juulcfa460a2007-10-31 13:53:06 +0100641 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
642 msk[3] = 0x01;
643 break;
644 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
645 msk[3] = 0x03;
646 break;
647 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
648 msk[3] = 0x0f;
649 break;
650 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
651 msk[3] = 0xff;
652 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200653 default: return -EINVAL;
654 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200655
Wolfgang Denk932394a2005-08-17 12:55:25 +0200656 bbtoffs = chip * (numblocks >> 2);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200657
Wolfgang Denk932394a2005-08-17 12:55:25 +0200658 to = ((loff_t) page) << this->page_shift;
659
Wolfgang Denk932394a2005-08-17 12:55:25 +0200660 /* Must we save the block contents ? */
661 if (td->options & NAND_BBT_SAVECONTENT) {
662 /* Make it block aligned */
663 to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1));
664 len = 1 << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100665 res = mtd->read(mtd, to, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200666 if (res < 0) {
667 if (retlen != len) {
William Juulcfa460a2007-10-31 13:53:06 +0100668 printk(KERN_INFO "nand_bbt: Error "
669 "reading block for writing "
670 "the bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200671 return res;
672 }
William Juulcfa460a2007-10-31 13:53:06 +0100673 printk(KERN_WARNING "nand_bbt: ECC error "
674 "while reading block for writing "
675 "bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200676 }
William Juulcfa460a2007-10-31 13:53:06 +0100677 /* Read oob data */
678 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
679 ops.oobbuf = &buf[len];
680 res = mtd->read_oob(mtd, to + mtd->writesize, &ops);
681 if (res < 0 || ops.oobretlen != ops.ooblen)
682 goto outerr;
683
Wolfgang Denk932394a2005-08-17 12:55:25 +0200684 /* Calc the byte offset in the buffer */
685 pageoffs = page - (int)(to >> this->page_shift);
686 offs = pageoffs << this->page_shift;
687 /* Preset the bbt area with 0xff */
William Juulcfa460a2007-10-31 13:53:06 +0100688 memset(&buf[offs], 0xff, (size_t) (numblocks >> sft));
689 ooboffs = len + (pageoffs * mtd->oobsize);
690
Wolfgang Denk932394a2005-08-17 12:55:25 +0200691 } else {
692 /* Calc length */
693 len = (size_t) (numblocks >> sft);
694 /* Make it page aligned ! */
William Juulcfa460a2007-10-31 13:53:06 +0100695 len = (len + (mtd->writesize - 1)) &
696 ~(mtd->writesize - 1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200697 /* Preset the buffer with 0xff */
William Juulcfa460a2007-10-31 13:53:06 +0100698 memset(buf, 0xff, len +
699 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200700 offs = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100701 ooboffs = len;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200702 /* Pattern is located in oob area of first page */
William Juulcfa460a2007-10-31 13:53:06 +0100703 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200704 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200705
William Juulcfa460a2007-10-31 13:53:06 +0100706 if (td->options & NAND_BBT_VERSION)
707 buf[ooboffs + td->veroffs] = td->version[chip];
708
Wolfgang Denk932394a2005-08-17 12:55:25 +0200709 /* walk through the memory table */
William Juulcfa460a2007-10-31 13:53:06 +0100710 for (i = 0; i < numblocks;) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200711 uint8_t dat;
712 dat = this->bbt[bbtoffs + (i >> 2)];
William Juulcfa460a2007-10-31 13:53:06 +0100713 for (j = 0; j < 4; j++, i++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200714 int sftcnt = (i << (3 - sft)) & sftmsk;
715 /* Do not store the reserved bbt blocks ! */
William Juulcfa460a2007-10-31 13:53:06 +0100716 buf[offs + (i >> sft)] &=
717 ~(msk[dat & 0x03] << sftcnt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200718 dat >>= 2;
719 }
720 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200721
William Juulcfa460a2007-10-31 13:53:06 +0100722 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200723 einfo.mtd = mtd;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400724 einfo.addr = to;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200725 einfo.len = 1 << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100726 res = nand_erase_nand(mtd, &einfo, 1);
727 if (res < 0)
728 goto outerr;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200729
William Juulcfa460a2007-10-31 13:53:06 +0100730 res = scan_write_bbt(mtd, to, len, buf, &buf[len]);
731 if (res < 0)
732 goto outerr;
733
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400734 printk(KERN_DEBUG "Bad block table written to 0x%012llx, "
735 "version 0x%02X\n", (unsigned long long)to,
736 td->version[chip]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200737
Wolfgang Denk932394a2005-08-17 12:55:25 +0200738 /* Mark it as used */
739 td->pages[chip] = page;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200740 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200741 return 0;
William Juulcfa460a2007-10-31 13:53:06 +0100742
743 outerr:
744 printk(KERN_WARNING
745 "nand_bbt: Error while writing bad block table %d\n", res);
746 return res;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200747}
748
749/**
750 * nand_memory_bbt - [GENERIC] create a memory based bad block table
751 * @mtd: MTD device structure
752 * @bd: descriptor for the good/bad block search pattern
753 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200754 * The function creates a memory based bbt by scanning the device
Wolfgang Denk932394a2005-08-17 12:55:25 +0200755 * for manufacturer / software marked good / bad blocks
756*/
William Juulcfa460a2007-10-31 13:53:06 +0100757static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200758{
759 struct nand_chip *this = mtd->priv;
760
William Juulcfa460a2007-10-31 13:53:06 +0100761 bd->options &= ~NAND_BBT_SCANEMPTY;
762 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200763}
764
765/**
William Juulcfa460a2007-10-31 13:53:06 +0100766 * check_create - [GENERIC] create and write bbt(s) if necessary
Wolfgang Denk932394a2005-08-17 12:55:25 +0200767 * @mtd: MTD device structure
768 * @buf: temporary buffer
769 * @bd: descriptor for the good/bad block search pattern
770 *
771 * The function checks the results of the previous call to read_bbt
William Juulcfa460a2007-10-31 13:53:06 +0100772 * and creates / updates the bbt(s) if necessary
773 * Creation is necessary if no bbt was found for the chip/device
774 * Update is necessary if one of the tables is missing or the
Wolfgang Denk932394a2005-08-17 12:55:25 +0200775 * version nr. of one table is less than the other
776*/
William Juulcfa460a2007-10-31 13:53:06 +0100777static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200778{
779 int i, chips, writeops, chipsel, res;
780 struct nand_chip *this = mtd->priv;
781 struct nand_bbt_descr *td = this->bbt_td;
782 struct nand_bbt_descr *md = this->bbt_md;
783 struct nand_bbt_descr *rd, *rd2;
784
785 /* Do we have a bbt per chip ? */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200786 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200787 chips = this->numchips;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200788 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200789 chips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200790
Wolfgang Denk932394a2005-08-17 12:55:25 +0200791 for (i = 0; i < chips; i++) {
792 writeops = 0;
793 rd = NULL;
794 rd2 = NULL;
795 /* Per chip or per device ? */
796 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
797 /* Mirrored table avilable ? */
798 if (md) {
799 if (td->pages[i] == -1 && md->pages[i] == -1) {
800 writeops = 0x03;
801 goto create;
802 }
803
804 if (td->pages[i] == -1) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200805 rd = md;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200806 td->version[i] = md->version[i];
807 writeops = 1;
808 goto writecheck;
809 }
810
811 if (md->pages[i] == -1) {
812 rd = td;
813 md->version[i] = td->version[i];
814 writeops = 2;
815 goto writecheck;
816 }
817
818 if (td->version[i] == md->version[i]) {
819 rd = td;
820 if (!(td->options & NAND_BBT_VERSION))
821 rd2 = md;
822 goto writecheck;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200823 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200824
825 if (((int8_t) (td->version[i] - md->version[i])) > 0) {
826 rd = td;
827 md->version[i] = td->version[i];
828 writeops = 2;
829 } else {
830 rd = md;
831 td->version[i] = md->version[i];
832 writeops = 1;
833 }
834
835 goto writecheck;
836
837 } else {
838 if (td->pages[i] == -1) {
839 writeops = 0x01;
840 goto create;
841 }
842 rd = td;
843 goto writecheck;
844 }
William Juulcfa460a2007-10-31 13:53:06 +0100845 create:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200846 /* Create the bad block table by scanning the device ? */
847 if (!(td->options & NAND_BBT_CREATE))
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200848 continue;
849
Wolfgang Denk932394a2005-08-17 12:55:25 +0200850 /* Create the table in memory by scanning the chip(s) */
William Juulcfa460a2007-10-31 13:53:06 +0100851 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200852
Wolfgang Denk932394a2005-08-17 12:55:25 +0200853 td->version[i] = 1;
854 if (md)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200855 md->version[i] = 1;
William Juulcfa460a2007-10-31 13:53:06 +0100856 writecheck:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200857 /* read back first ? */
858 if (rd)
William Juulcfa460a2007-10-31 13:53:06 +0100859 read_abs_bbt(mtd, buf, rd, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200860 /* If they weren't versioned, read both. */
861 if (rd2)
William Juulcfa460a2007-10-31 13:53:06 +0100862 read_abs_bbt(mtd, buf, rd2, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200863
864 /* Write the bad block table to the device ? */
865 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100866 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200867 if (res < 0)
868 return res;
869 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200870
Wolfgang Denk932394a2005-08-17 12:55:25 +0200871 /* Write the mirror bad block table to the device ? */
872 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100873 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200874 if (res < 0)
875 return res;
876 }
877 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200878 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200879}
880
881/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200882 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Wolfgang Denk932394a2005-08-17 12:55:25 +0200883 * @mtd: MTD device structure
884 * @td: bad block table descriptor
885 *
886 * The bad block table regions are marked as "bad" to prevent
887 * accidental erasures / writes. The regions are identified by
888 * the mark 0x02.
889*/
William Juulcfa460a2007-10-31 13:53:06 +0100890static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200891{
892 struct nand_chip *this = mtd->priv;
893 int i, j, chips, block, nrblocks, update;
894 uint8_t oldval, newval;
895
896 /* Do we have a bbt per chip ? */
897 if (td->options & NAND_BBT_PERCHIP) {
898 chips = this->numchips;
899 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
900 } else {
901 chips = 1;
902 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200903 }
904
Wolfgang Denk932394a2005-08-17 12:55:25 +0200905 for (i = 0; i < chips; i++) {
906 if ((td->options & NAND_BBT_ABSPAGE) ||
907 !(td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100908 if (td->pages[i] == -1)
909 continue;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200910 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200911 block <<= 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200912 oldval = this->bbt[(block >> 3)];
913 newval = oldval | (0x2 << (block & 0x06));
914 this->bbt[(block >> 3)] = newval;
915 if ((oldval != newval) && td->reserved_block_code)
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400916 nand_update_bbt(mtd, (loff_t)block <<
917 (this->bbt_erase_shift - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200918 continue;
919 }
920 update = 0;
921 if (td->options & NAND_BBT_LASTBLOCK)
922 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200923 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200924 block = i * nrblocks;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200925 block <<= 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200926 for (j = 0; j < td->maxblocks; j++) {
927 oldval = this->bbt[(block >> 3)];
928 newval = oldval | (0x2 << (block & 0x06));
929 this->bbt[(block >> 3)] = newval;
William Juulcfa460a2007-10-31 13:53:06 +0100930 if (oldval != newval)
931 update = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200932 block += 2;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200933 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200934 /* If we want reserved blocks to be recorded to flash, and some
935 new ones have been marked, then we need to update the stored
936 bbts. This should only happen once. */
937 if (update && td->reserved_block_code)
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400938 nand_update_bbt(mtd, (loff_t)(block - 2) <<
939 (this->bbt_erase_shift - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200940 }
941}
942
943/**
944 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
945 * @mtd: MTD device structure
946 * @bd: descriptor for the good/bad block search pattern
947 *
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200948 * The function checks, if a bad block table(s) is/are already
Wolfgang Denk932394a2005-08-17 12:55:25 +0200949 * available. If not it scans the device for manufacturer
950 * marked good / bad blocks and writes the bad block table(s) to
951 * the selected place.
952 *
953 * The bad block table memory is allocated here. It must be freed
954 * by calling the nand_free_bbt function.
955 *
956*/
William Juulcfa460a2007-10-31 13:53:06 +0100957int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200958{
959 struct nand_chip *this = mtd->priv;
960 int len, res = 0;
961 uint8_t *buf;
962 struct nand_bbt_descr *td = this->bbt_td;
963 struct nand_bbt_descr *md = this->bbt_md;
964
965 len = mtd->size >> (this->bbt_erase_shift + 2);
William Juulcfa460a2007-10-31 13:53:06 +0100966 /* Allocate memory (2bit per block) and clear the memory bad block table */
967 this->bbt = kzalloc(len, GFP_KERNEL);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200968 if (!this->bbt) {
William Juulcfa460a2007-10-31 13:53:06 +0100969 printk(KERN_ERR "nand_scan_bbt: Out of memory\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200970 return -ENOMEM;
971 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200972
973 /* If no primary table decriptor is given, scan the device
974 * to build a memory based bad block table
975 */
William Juulcfa460a2007-10-31 13:53:06 +0100976 if (!td) {
977 if ((res = nand_memory_bbt(mtd, bd))) {
978 printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n");
979 kfree(this->bbt);
980 this->bbt = NULL;
981 }
982 return res;
983 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200984
985 /* Allocate a temporary buffer for one eraseblock incl. oob */
986 len = (1 << this->bbt_erase_shift);
987 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +0100988 buf = vmalloc(len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200989 if (!buf) {
William Juulcfa460a2007-10-31 13:53:06 +0100990 printk(KERN_ERR "nand_bbt: Out of memory\n");
991 kfree(this->bbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200992 this->bbt = NULL;
993 return -ENOMEM;
994 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200995
Wolfgang Denk932394a2005-08-17 12:55:25 +0200996 /* Is the bbt at a given page ? */
997 if (td->options & NAND_BBT_ABSPAGE) {
William Juulcfa460a2007-10-31 13:53:06 +0100998 res = read_abs_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200999 } else {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001000 /* Search the bad block table using a pattern in oob */
William Juulcfa460a2007-10-31 13:53:06 +01001001 res = search_read_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001002 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001003
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001004 if (res)
William Juulcfa460a2007-10-31 13:53:06 +01001005 res = check_create(mtd, buf, bd);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001006
Wolfgang Denk932394a2005-08-17 12:55:25 +02001007 /* Prevent the bbt regions from erasing / writing */
William Juulcfa460a2007-10-31 13:53:06 +01001008 mark_bbt_region(mtd, td);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001009 if (md)
William Juulcfa460a2007-10-31 13:53:06 +01001010 mark_bbt_region(mtd, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001011
William Juulcfa460a2007-10-31 13:53:06 +01001012 vfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001013 return res;
1014}
1015
Wolfgang Denk932394a2005-08-17 12:55:25 +02001016/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001017 * nand_update_bbt - [NAND Interface] update bad block table(s)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001018 * @mtd: MTD device structure
1019 * @offs: the offset of the newly marked block
1020 *
1021 * The function updates the bad block table(s)
1022*/
William Juulcfa460a2007-10-31 13:53:06 +01001023int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001024{
1025 struct nand_chip *this = mtd->priv;
1026 int len, res = 0, writeops = 0;
1027 int chip, chipsel;
1028 uint8_t *buf;
1029 struct nand_bbt_descr *td = this->bbt_td;
1030 struct nand_bbt_descr *md = this->bbt_md;
1031
1032 if (!this->bbt || !td)
1033 return -EINVAL;
1034
Wolfgang Denk932394a2005-08-17 12:55:25 +02001035 /* Allocate a temporary buffer for one eraseblock incl. oob */
1036 len = (1 << this->bbt_erase_shift);
1037 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001038 buf = kmalloc(len, GFP_KERNEL);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001039 if (!buf) {
William Juulcfa460a2007-10-31 13:53:06 +01001040 printk(KERN_ERR "nand_update_bbt: Out of memory\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +02001041 return -ENOMEM;
1042 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001043
Wolfgang Denk932394a2005-08-17 12:55:25 +02001044 writeops = md != NULL ? 0x03 : 0x01;
1045
1046 /* Do we have a bbt per chip ? */
1047 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +01001048 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001049 chipsel = chip;
1050 } else {
1051 chip = 0;
1052 chipsel = -1;
1053 }
1054
1055 td->version[chip]++;
1056 if (md)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001057 md->version[chip]++;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001058
1059 /* Write the bad block table to the device ? */
1060 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001061 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001062 if (res < 0)
1063 goto out;
1064 }
1065 /* Write the mirror bad block table to the device ? */
1066 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001067 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001068 }
1069
William Juulcfa460a2007-10-31 13:53:06 +01001070 out:
1071 kfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001072 return res;
1073}
1074
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001075/* Define some generic bad / good block scan pattern which are used
William Juulcfa460a2007-10-31 13:53:06 +01001076 * while scanning a device for factory marked good / bad blocks. */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001077static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1078
1079static struct nand_bbt_descr smallpage_memorybased = {
William Juulcfa460a2007-10-31 13:53:06 +01001080 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001081 .offs = 5,
1082 .len = 1,
1083 .pattern = scan_ff_pattern
1084};
1085
1086static struct nand_bbt_descr largepage_memorybased = {
1087 .options = 0,
1088 .offs = 0,
1089 .len = 2,
1090 .pattern = scan_ff_pattern
1091};
1092
1093static struct nand_bbt_descr smallpage_flashbased = {
William Juulcfa460a2007-10-31 13:53:06 +01001094 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001095 .offs = 5,
1096 .len = 1,
1097 .pattern = scan_ff_pattern
1098};
1099
1100static struct nand_bbt_descr largepage_flashbased = {
William Juulcfa460a2007-10-31 13:53:06 +01001101 .options = NAND_BBT_SCAN2NDPAGE,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001102 .offs = 0,
1103 .len = 2,
1104 .pattern = scan_ff_pattern
1105};
1106
1107static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 };
1108
1109static struct nand_bbt_descr agand_flashbased = {
1110 .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES,
1111 .offs = 0x20,
1112 .len = 6,
1113 .pattern = scan_agand_pattern
1114};
1115
1116/* Generic flash bbt decriptors
1117*/
1118static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1119static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1120
1121static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001122 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001123 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1124 .offs = 8,
1125 .len = 4,
1126 .veroffs = 12,
1127 .maxblocks = 4,
1128 .pattern = bbt_pattern
1129};
1130
1131static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001132 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001133 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1134 .offs = 8,
1135 .len = 4,
1136 .veroffs = 12,
1137 .maxblocks = 4,
1138 .pattern = mirror_pattern
1139};
1140
1141/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001142 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Wolfgang Denk932394a2005-08-17 12:55:25 +02001143 * @mtd: MTD device structure
1144 *
1145 * This function selects the default bad block table
1146 * support for the device and calls the nand_scan_bbt function
1147 *
1148*/
William Juulcfa460a2007-10-31 13:53:06 +01001149int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001150{
1151 struct nand_chip *this = mtd->priv;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001152
1153 /* Default for AG-AND. We must use a flash based
Wolfgang Denk932394a2005-08-17 12:55:25 +02001154 * bad block table as the devices have factory marked
1155 * _good_ blocks. Erasing those blocks leads to loss
1156 * of the good / bad information, so we _must_ store
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001157 * this information in a good / bad table during
Wolfgang Denk932394a2005-08-17 12:55:25 +02001158 * startup
William Juulcfa460a2007-10-31 13:53:06 +01001159 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001160 if (this->options & NAND_IS_AND) {
1161 /* Use the default pattern descriptors */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001162 if (!this->bbt_td) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001163 this->bbt_td = &bbt_main_descr;
1164 this->bbt_md = &bbt_mirror_descr;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001165 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001166 this->options |= NAND_USE_FLASH_BBT;
William Juulcfa460a2007-10-31 13:53:06 +01001167 return nand_scan_bbt(mtd, &agand_flashbased);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001168 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001169
Wolfgang Denk932394a2005-08-17 12:55:25 +02001170 /* Is a flash based bad block table requested ? */
1171 if (this->options & NAND_USE_FLASH_BBT) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001172 /* Use the default pattern descriptors */
1173 if (!this->bbt_td) {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001174 this->bbt_td = &bbt_main_descr;
1175 this->bbt_md = &bbt_mirror_descr;
1176 }
1177 if (!this->badblock_pattern) {
William Juulcfa460a2007-10-31 13:53:06 +01001178 this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001179 }
1180 } else {
1181 this->bbt_td = NULL;
1182 this->bbt_md = NULL;
1183 if (!this->badblock_pattern) {
William Juulcfa460a2007-10-31 13:53:06 +01001184 this->badblock_pattern = (mtd->writesize > 512) ?
1185 &largepage_memorybased : &smallpage_memorybased;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001186 }
1187 }
William Juulcfa460a2007-10-31 13:53:06 +01001188 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001189}
1190
1191/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001192 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Wolfgang Denk932394a2005-08-17 12:55:25 +02001193 * @mtd: MTD device structure
1194 * @offs: offset in the device
1195 * @allowbbt: allow access to bad block table region
1196 *
William Juulcfa460a2007-10-31 13:53:06 +01001197*/
1198int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001199{
1200 struct nand_chip *this = mtd->priv;
1201 int block;
William Juulcfa460a2007-10-31 13:53:06 +01001202 uint8_t res;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001203
Wolfgang Denk932394a2005-08-17 12:55:25 +02001204 /* Get block number * 2 */
William Juulcfa460a2007-10-31 13:53:06 +01001205 block = (int)(offs >> (this->bbt_erase_shift - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +02001206 res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03;
1207
Scott Wood3167c532008-06-20 12:38:57 -05001208 MTDDEBUG (MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: "
1209 "(block %d) 0x%02x\n", (unsigned int)offs, res, block >> 1);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001210
1211 switch ((int)res) {
William Juulcfa460a2007-10-31 13:53:06 +01001212 case 0x00:
1213 return 0;
1214 case 0x01:
1215 return 1;
1216 case 0x02:
1217 return allowbbt ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001218 }
1219 return 1;
1220}