Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1 | /* |
| 2 | * drivers/mtd/nand_bbt.c |
| 3 | * |
| 4 | * Overview: |
| 5 | * Bad block table support for the NAND driver |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 6 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 7 | * Copyright (C) 2004 Thomas Gleixner (tglx@linutronix.de) |
| 8 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 9 | * 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 15 | * 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 18 | * mirrored bbt is selected then the mirror is searched too and the |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 19 | * versions are compared. If the mirror has a greater version number |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 20 | * 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 22 | * 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 25 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 26 | * For manufacturer created bbts like the one found on M-SYS DOC devices |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 27 | * the bbt is searched and read but never created |
| 28 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 29 | * 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 32 | * number which indicates which of both tables is more up to date. |
| 33 | * |
| 34 | * The table uses 2 bits per block |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 35 | * 11b: block is good |
| 36 | * 00b: block is factory marked bad |
| 37 | * 01b, 10b: block is marked bad due to wear |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 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 |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 44 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 45 | * 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 49 | * - the space necessary for a bbt in FLASH does not exceed a block boundary |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 50 | * |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 51 | */ |
| 52 | |
| 53 | #include <common.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 54 | #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 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 61 | /* XXX U-BOOT XXX */ |
| 62 | #if 0 |
| 63 | #include <linux/slab.h> |
| 64 | #include <linux/types.h> |
| 65 | #include <linux/mtd/mtd.h> |
| 66 | #include <linux/mtd/nand.h> |
| 67 | #include <linux/mtd/nand_ecc.h> |
| 68 | #include <linux/mtd/compatmac.h> |
| 69 | #include <linux/bitops.h> |
| 70 | #include <linux/delay.h> |
| 71 | #include <linux/vmalloc.h> |
| 72 | #endif |
| 73 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 74 | /** |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 75 | * check_pattern - [GENERIC] check if a pattern is in the buffer |
| 76 | * @buf: the buffer to search |
| 77 | * @len: the length of buffer to search |
| 78 | * @paglen: the pagelength |
| 79 | * @td: search pattern descriptor |
| 80 | * |
| 81 | * Check for a pattern at the given place. Used to search bad block |
| 82 | * tables and good / bad block identifiers. |
| 83 | * If the SCAN_EMPTY option is set then check, if all bytes except the |
| 84 | * pattern area contain 0xff |
| 85 | * |
| 86 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 87 | static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 88 | { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 89 | int i, end = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 90 | uint8_t *p = buf; |
| 91 | |
| 92 | end = paglen + td->offs; |
| 93 | if (td->options & NAND_BBT_SCANEMPTY) { |
| 94 | for (i = 0; i < end; i++) { |
| 95 | if (p[i] != 0xff) |
| 96 | return -1; |
| 97 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 98 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 99 | p += end; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 100 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 101 | /* Compare the pattern */ |
| 102 | for (i = 0; i < td->len; i++) { |
| 103 | if (p[i] != td->pattern[i]) |
| 104 | return -1; |
| 105 | } |
| 106 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 107 | if (td->options & NAND_BBT_SCANEMPTY) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 108 | p += td->len; |
| 109 | end += td->len; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 110 | for (i = end; i < len; i++) { |
| 111 | if (*p++ != 0xff) |
| 112 | return -1; |
| 113 | } |
| 114 | } |
| 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | /** |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 119 | * check_short_pattern - [GENERIC] check if a pattern is in the buffer |
| 120 | * @buf: the buffer to search |
| 121 | * @td: search pattern descriptor |
| 122 | * |
| 123 | * Check for a pattern at the given place. Used to search bad block |
| 124 | * tables and good / bad block identifiers. Same as check_pattern, but |
| 125 | * no optional empty check |
| 126 | * |
| 127 | */ |
| 128 | static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td) |
| 129 | { |
| 130 | int i; |
| 131 | uint8_t *p = buf; |
| 132 | |
| 133 | /* Compare the pattern */ |
| 134 | for (i = 0; i < td->len; i++) { |
| 135 | if (p[td->offs + i] != td->pattern[i]) |
| 136 | return -1; |
| 137 | } |
| 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | /** |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 142 | * read_bbt - [GENERIC] Read the bad block table starting from page |
| 143 | * @mtd: MTD device structure |
| 144 | * @buf: temporary buffer |
| 145 | * @page: the starting page |
| 146 | * @num: the number of bbt descriptors to read |
| 147 | * @bits: number of bits per block |
| 148 | * @offs: offset in the memory table |
| 149 | * @reserved_block_code: Pattern to identify reserved blocks |
| 150 | * |
| 151 | * Read the bad block table starting from page. |
| 152 | * |
| 153 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 154 | static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num, |
| 155 | int bits, int offs, int reserved_block_code) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 156 | { |
| 157 | int res, i, j, act = 0; |
| 158 | struct nand_chip *this = mtd->priv; |
| 159 | size_t retlen, len, totlen; |
| 160 | loff_t from; |
| 161 | uint8_t msk = (uint8_t) ((1 << bits) - 1); |
| 162 | |
| 163 | totlen = (num * bits) >> 3; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 164 | from = ((loff_t) page) << this->page_shift; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 165 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 166 | while (totlen) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 167 | len = min(totlen, (size_t) (1 << this->bbt_erase_shift)); |
| 168 | res = mtd->read(mtd, from, len, &retlen, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 169 | if (res < 0) { |
| 170 | if (retlen != len) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 171 | printk(KERN_INFO "nand_bbt: Error reading bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 172 | return res; |
| 173 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 174 | printk(KERN_WARNING "nand_bbt: ECC error while reading bad block table\n"); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 175 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 176 | |
| 177 | /* Analyse data */ |
| 178 | for (i = 0; i < len; i++) { |
| 179 | uint8_t dat = buf[i]; |
| 180 | for (j = 0; j < 8; j += bits, act += 2) { |
| 181 | uint8_t tmp = (dat >> j) & msk; |
| 182 | if (tmp == msk) |
| 183 | continue; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 184 | if (reserved_block_code && (tmp == reserved_block_code)) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 185 | printk(KERN_DEBUG "nand_read_bbt: Reserved block at 0x%012llx\n", |
| 186 | (loff_t)((offs << 2) + |
| 187 | (act >> 1)) << |
| 188 | this->bbt_erase_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 189 | this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 190 | mtd->ecc_stats.bbtblocks++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 191 | continue; |
| 192 | } |
| 193 | /* Leave it for now, if its matured we can move this |
| 194 | * message to MTD_DEBUG_LEVEL0 */ |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 195 | printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%012llx\n", |
| 196 | (loff_t)((offs << 2) + (act >> 1)) << |
| 197 | this->bbt_erase_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 198 | /* Factory marked bad or worn out ? */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 199 | if (tmp == 0) |
| 200 | this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06); |
| 201 | else |
| 202 | this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 203 | mtd->ecc_stats.badblocks++; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 204 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 205 | } |
| 206 | totlen -= len; |
| 207 | from += len; |
| 208 | } |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page |
| 214 | * @mtd: MTD device structure |
| 215 | * @buf: temporary buffer |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 216 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 217 | * @chip: read the table for a specific chip, -1 read all chips. |
| 218 | * Applies only if NAND_BBT_PERCHIP option is set |
| 219 | * |
| 220 | * Read the bad block table for all chips starting at a given page |
| 221 | * We assume that the bbt bits are in consecutive order. |
| 222 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 223 | static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 224 | { |
| 225 | struct nand_chip *this = mtd->priv; |
| 226 | int res = 0, i; |
| 227 | int bits; |
| 228 | |
| 229 | bits = td->options & NAND_BBT_NRBITS_MSK; |
| 230 | if (td->options & NAND_BBT_PERCHIP) { |
| 231 | int offs = 0; |
| 232 | for (i = 0; i < this->numchips; i++) { |
| 233 | if (chip == -1 || chip == i) |
| 234 | res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code); |
| 235 | if (res) |
| 236 | return res; |
| 237 | offs += this->chipsize >> (this->bbt_erase_shift + 2); |
| 238 | } |
| 239 | } else { |
| 240 | res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code); |
| 241 | if (res) |
| 242 | return res; |
| 243 | } |
| 244 | return 0; |
| 245 | } |
| 246 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 247 | /* |
| 248 | * Scan read raw data from flash |
| 249 | */ |
| 250 | static int scan_read_raw(struct mtd_info *mtd, uint8_t *buf, loff_t offs, |
| 251 | size_t len) |
| 252 | { |
| 253 | struct mtd_oob_ops ops; |
| 254 | |
| 255 | ops.mode = MTD_OOB_RAW; |
| 256 | ops.ooboffs = 0; |
| 257 | ops.ooblen = mtd->oobsize; |
| 258 | ops.oobbuf = buf; |
| 259 | ops.datbuf = buf; |
| 260 | ops.len = len; |
| 261 | |
| 262 | return mtd->read_oob(mtd, offs, &ops); |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * Scan write data with oob to flash |
| 267 | */ |
| 268 | static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len, |
| 269 | uint8_t *buf, uint8_t *oob) |
| 270 | { |
| 271 | struct mtd_oob_ops ops; |
| 272 | |
| 273 | ops.mode = MTD_OOB_PLACE; |
| 274 | ops.ooboffs = 0; |
| 275 | ops.ooblen = mtd->oobsize; |
| 276 | ops.datbuf = buf; |
| 277 | ops.oobbuf = oob; |
| 278 | ops.len = len; |
| 279 | |
| 280 | return mtd->write_oob(mtd, offs, &ops); |
| 281 | } |
| 282 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 283 | /** |
| 284 | * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page |
| 285 | * @mtd: MTD device structure |
| 286 | * @buf: temporary buffer |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 287 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 288 | * @md: descriptor for the bad block table mirror |
| 289 | * |
| 290 | * Read the bad block table(s) for all chips starting at a given page |
| 291 | * We assume that the bbt bits are in consecutive order. |
| 292 | * |
| 293 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 294 | static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf, |
| 295 | struct nand_bbt_descr *td, struct nand_bbt_descr *md) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 296 | { |
| 297 | struct nand_chip *this = mtd->priv; |
| 298 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 299 | /* Read the primary version, if available */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 300 | if (td->options & NAND_BBT_VERSION) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 301 | scan_read_raw(mtd, buf, (loff_t)td->pages[0] << |
| 302 | this->page_shift, mtd->writesize); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 303 | td->version[0] = buf[mtd->writesize + td->veroffs]; |
| 304 | printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n", |
| 305 | td->pages[0], td->version[0]); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 306 | } |
| 307 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 308 | /* Read the mirror version, if available */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 309 | if (md && (md->options & NAND_BBT_VERSION)) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 310 | scan_read_raw(mtd, buf, (loff_t)md->pages[0] << |
| 311 | this->page_shift, mtd->writesize); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 312 | md->version[0] = buf[mtd->writesize + md->veroffs]; |
| 313 | printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n", |
| 314 | md->pages[0], md->version[0]); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 315 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 316 | return 1; |
| 317 | } |
| 318 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 319 | /* |
| 320 | * Scan a given block full |
| 321 | */ |
| 322 | static int scan_block_full(struct mtd_info *mtd, struct nand_bbt_descr *bd, |
| 323 | loff_t offs, uint8_t *buf, size_t readlen, |
| 324 | int scanlen, int len) |
| 325 | { |
| 326 | int ret, j; |
| 327 | |
| 328 | ret = scan_read_raw(mtd, buf, offs, readlen); |
| 329 | if (ret) |
| 330 | return ret; |
| 331 | |
| 332 | for (j = 0; j < len; j++, buf += scanlen) { |
| 333 | if (check_pattern(buf, scanlen, mtd->writesize, bd)) |
| 334 | return 1; |
| 335 | } |
| 336 | return 0; |
| 337 | } |
| 338 | |
| 339 | /* |
| 340 | * Scan a given block partially |
| 341 | */ |
| 342 | static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd, |
| 343 | loff_t offs, uint8_t *buf, int len) |
| 344 | { |
| 345 | struct mtd_oob_ops ops; |
| 346 | int j, ret; |
| 347 | |
| 348 | ops.ooblen = mtd->oobsize; |
| 349 | ops.oobbuf = buf; |
| 350 | ops.ooboffs = 0; |
| 351 | ops.datbuf = NULL; |
| 352 | ops.mode = MTD_OOB_PLACE; |
| 353 | |
| 354 | for (j = 0; j < len; j++) { |
| 355 | /* |
| 356 | * Read the full oob until read_oob is fixed to |
| 357 | * handle single byte reads for 16 bit |
| 358 | * buswidth |
| 359 | */ |
| 360 | ret = mtd->read_oob(mtd, offs, &ops); |
| 361 | if (ret) |
| 362 | return ret; |
| 363 | |
| 364 | if (check_short_pattern(buf, bd)) |
| 365 | return 1; |
| 366 | |
| 367 | offs += mtd->writesize; |
| 368 | } |
| 369 | return 0; |
| 370 | } |
| 371 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 372 | /** |
| 373 | * create_bbt - [GENERIC] Create a bad block table by scanning the device |
| 374 | * @mtd: MTD device structure |
| 375 | * @buf: temporary buffer |
| 376 | * @bd: descriptor for the good/bad block search pattern |
| 377 | * @chip: create the table for a specific chip, -1 read all chips. |
| 378 | * Applies only if NAND_BBT_PERCHIP option is set |
| 379 | * |
| 380 | * Create a bad block table by scanning the device |
| 381 | * for the given good/bad block identify pattern |
| 382 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 383 | static int create_bbt(struct mtd_info *mtd, uint8_t *buf, |
| 384 | struct nand_bbt_descr *bd, int chip) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 385 | { |
| 386 | struct nand_chip *this = mtd->priv; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 387 | int i, numblocks, len, scanlen; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 388 | int startblock; |
| 389 | loff_t from; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 390 | size_t readlen; |
| 391 | |
Stefan Roese | e52b34d | 2008-01-10 18:47:33 +0100 | [diff] [blame] | 392 | MTDDEBUG (MTD_DEBUG_LEVEL0, "Scanning device for bad blocks\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 393 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 394 | if (bd->options & NAND_BBT_SCANALLPAGES) |
| 395 | len = 1 << (this->bbt_erase_shift - this->page_shift); |
| 396 | else { |
| 397 | if (bd->options & NAND_BBT_SCAN2NDPAGE) |
| 398 | len = 2; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 399 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 400 | len = 1; |
| 401 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 402 | |
| 403 | if (!(bd->options & NAND_BBT_SCANEMPTY)) { |
| 404 | /* We need only read few bytes from the OOB area */ |
| 405 | scanlen = 0; |
| 406 | readlen = bd->len; |
| 407 | } else { |
| 408 | /* Full page content should be read */ |
| 409 | scanlen = mtd->writesize + mtd->oobsize; |
| 410 | readlen = len * mtd->writesize; |
| 411 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 412 | |
| 413 | if (chip == -1) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 414 | /* Note that numblocks is 2 * (real numblocks) here, see i+=2 |
| 415 | * below as it makes shifting and masking less painful */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 416 | numblocks = mtd->size >> (this->bbt_erase_shift - 1); |
| 417 | startblock = 0; |
| 418 | from = 0; |
| 419 | } else { |
| 420 | if (chip >= this->numchips) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 421 | printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n", |
| 422 | chip + 1, this->numchips); |
| 423 | return -EINVAL; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 424 | } |
| 425 | numblocks = this->chipsize >> (this->bbt_erase_shift - 1); |
| 426 | startblock = chip * numblocks; |
| 427 | numblocks += startblock; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 428 | from = (loff_t)startblock << (this->bbt_erase_shift - 1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 429 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 430 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 431 | for (i = startblock; i < numblocks;) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 432 | int ret; |
| 433 | |
| 434 | if (bd->options & NAND_BBT_SCANALLPAGES) |
| 435 | ret = scan_block_full(mtd, bd, from, buf, readlen, |
| 436 | scanlen, len); |
| 437 | else |
| 438 | ret = scan_block_fast(mtd, bd, from, buf, len); |
| 439 | |
| 440 | if (ret < 0) |
| 441 | return ret; |
| 442 | |
| 443 | if (ret) { |
| 444 | this->bbt[i >> 3] |= 0x03 << (i & 0x6); |
Stefan Roese | e52b34d | 2008-01-10 18:47:33 +0100 | [diff] [blame] | 445 | MTDDEBUG (MTD_DEBUG_LEVEL0, |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 446 | "Bad eraseblock %d at 0x%012llx\n", |
| 447 | i >> 1, (unsigned long long)from); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 448 | mtd->ecc_stats.badblocks++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 449 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 450 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 451 | i += 2; |
| 452 | from += (1 << this->bbt_erase_shift); |
| 453 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 454 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /** |
| 458 | * search_bbt - [GENERIC] scan the device for a specific bad block table |
| 459 | * @mtd: MTD device structure |
| 460 | * @buf: temporary buffer |
| 461 | * @td: descriptor for the bad block table |
| 462 | * |
| 463 | * Read the bad block table by searching for a given ident pattern. |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 464 | * Search is preformed either from the beginning up or from the end of |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 465 | * the device downwards. The search starts always at the start of a |
| 466 | * block. |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 467 | * If the option NAND_BBT_PERCHIP is given, each chip is searched |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 468 | * for a bbt, which contains the bad block information of this chip. |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 469 | * This is necessary to provide support for certain DOC devices. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 470 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 471 | * The bbt ident pattern resides in the oob area of the first page |
| 472 | * in a block. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 473 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 474 | static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 475 | { |
| 476 | struct nand_chip *this = mtd->priv; |
| 477 | int i, chips; |
| 478 | int bits, startblock, block, dir; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 479 | int scanlen = mtd->writesize + mtd->oobsize; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 480 | int bbtblocks; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 481 | int blocktopage = this->bbt_erase_shift - this->page_shift; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 482 | |
| 483 | /* Search direction top -> down ? */ |
| 484 | if (td->options & NAND_BBT_LASTBLOCK) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 485 | startblock = (mtd->size >> this->bbt_erase_shift) - 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 486 | dir = -1; |
| 487 | } else { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 488 | startblock = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 489 | dir = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 490 | } |
| 491 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 492 | /* Do we have a bbt per chip ? */ |
| 493 | if (td->options & NAND_BBT_PERCHIP) { |
| 494 | chips = this->numchips; |
| 495 | bbtblocks = this->chipsize >> this->bbt_erase_shift; |
| 496 | startblock &= bbtblocks - 1; |
| 497 | } else { |
| 498 | chips = 1; |
| 499 | bbtblocks = mtd->size >> this->bbt_erase_shift; |
| 500 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 501 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 502 | /* Number of bits for each erase block in the bbt */ |
| 503 | bits = td->options & NAND_BBT_NRBITS_MSK; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 504 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 505 | for (i = 0; i < chips; i++) { |
| 506 | /* Reset version information */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 507 | td->version[i] = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 508 | td->pages[i] = -1; |
| 509 | /* Scan the maximum number of blocks */ |
| 510 | for (block = 0; block < td->maxblocks; block++) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 511 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 512 | int actblock = startblock + dir * block; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 513 | loff_t offs = (loff_t)actblock << this->bbt_erase_shift; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 514 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 515 | /* Read first page */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 516 | scan_read_raw(mtd, buf, offs, mtd->writesize); |
| 517 | if (!check_pattern(buf, scanlen, mtd->writesize, td)) { |
| 518 | td->pages[i] = actblock << blocktopage; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 519 | if (td->options & NAND_BBT_VERSION) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 520 | td->version[i] = buf[mtd->writesize + td->veroffs]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 521 | } |
| 522 | break; |
| 523 | } |
| 524 | } |
| 525 | startblock += this->chipsize >> this->bbt_erase_shift; |
| 526 | } |
| 527 | /* Check, if we found a bbt for each requested chip */ |
| 528 | for (i = 0; i < chips; i++) { |
| 529 | if (td->pages[i] == -1) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 530 | printk(KERN_WARNING "Bad block table not found for chip %d\n", i); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 531 | else |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 532 | printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i], |
| 533 | td->version[i]); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 534 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 535 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /** |
| 539 | * search_read_bbts - [GENERIC] scan the device for bad block table(s) |
| 540 | * @mtd: MTD device structure |
| 541 | * @buf: temporary buffer |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 542 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 543 | * @md: descriptor for the bad block table mirror |
| 544 | * |
| 545 | * Search and read the bad block table(s) |
| 546 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 547 | static int search_read_bbts(struct mtd_info *mtd, uint8_t * buf, struct nand_bbt_descr *td, struct nand_bbt_descr *md) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 548 | { |
| 549 | /* Search the primary table */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 550 | search_bbt(mtd, buf, td); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 551 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 552 | /* Search the mirror table */ |
| 553 | if (md) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 554 | search_bbt(mtd, buf, md); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 555 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 556 | /* Force result check */ |
| 557 | return 1; |
| 558 | } |
| 559 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 560 | /** |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 561 | * write_bbt - [GENERIC] (Re)write the bad block table |
| 562 | * |
| 563 | * @mtd: MTD device structure |
| 564 | * @buf: temporary buffer |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 565 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 566 | * @md: descriptor for the bad block table mirror |
| 567 | * @chipsel: selector for a specific chip, -1 for all |
| 568 | * |
| 569 | * (Re)write the bad block table |
| 570 | * |
| 571 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 572 | static int write_bbt(struct mtd_info *mtd, uint8_t *buf, |
| 573 | struct nand_bbt_descr *td, struct nand_bbt_descr *md, |
| 574 | int chipsel) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 575 | { |
| 576 | struct nand_chip *this = mtd->priv; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 577 | struct erase_info einfo; |
| 578 | int i, j, res, chip = 0; |
| 579 | int bits, startblock, dir, page, offs, numblocks, sft, sftmsk; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 580 | int nrchips, bbtoffs, pageoffs, ooboffs; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 581 | uint8_t msk[4]; |
| 582 | uint8_t rcode = td->reserved_block_code; |
| 583 | size_t retlen, len = 0; |
| 584 | loff_t to; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 585 | struct mtd_oob_ops ops; |
| 586 | |
| 587 | ops.ooblen = mtd->oobsize; |
| 588 | ops.ooboffs = 0; |
| 589 | ops.datbuf = NULL; |
| 590 | ops.mode = MTD_OOB_PLACE; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 591 | |
| 592 | if (!rcode) |
| 593 | rcode = 0xff; |
| 594 | /* Write bad block table per chip rather than per device ? */ |
| 595 | if (td->options & NAND_BBT_PERCHIP) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 596 | numblocks = (int)(this->chipsize >> this->bbt_erase_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 597 | /* Full device write or specific chip ? */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 598 | if (chipsel == -1) { |
| 599 | nrchips = this->numchips; |
| 600 | } else { |
| 601 | nrchips = chipsel + 1; |
| 602 | chip = chipsel; |
| 603 | } |
| 604 | } else { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 605 | numblocks = (int)(mtd->size >> this->bbt_erase_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 606 | nrchips = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 607 | } |
| 608 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 609 | /* Loop through the chips */ |
| 610 | for (; chip < nrchips; chip++) { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 611 | |
| 612 | /* There was already a version of the table, reuse the page |
| 613 | * This applies for absolute placement too, as we have the |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 614 | * page nr. in td->pages. |
| 615 | */ |
| 616 | if (td->pages[chip] != -1) { |
| 617 | page = td->pages[chip]; |
| 618 | goto write; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 619 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 620 | |
| 621 | /* Automatic placement of the bad block table */ |
| 622 | /* Search direction top -> down ? */ |
| 623 | if (td->options & NAND_BBT_LASTBLOCK) { |
| 624 | startblock = numblocks * (chip + 1) - 1; |
| 625 | dir = -1; |
| 626 | } else { |
| 627 | startblock = chip * numblocks; |
| 628 | dir = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 629 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 630 | |
| 631 | for (i = 0; i < td->maxblocks; i++) { |
| 632 | int block = startblock + dir * i; |
| 633 | /* Check, if the block is bad */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 634 | switch ((this->bbt[block >> 2] >> |
| 635 | (2 * (block & 0x03))) & 0x03) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 636 | case 0x01: |
| 637 | case 0x03: |
| 638 | continue; |
| 639 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 640 | page = block << |
| 641 | (this->bbt_erase_shift - this->page_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 642 | /* Check, if the block is used by the mirror table */ |
| 643 | if (!md || md->pages[chip] != page) |
| 644 | goto write; |
| 645 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 646 | printk(KERN_ERR "No space left to write bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 647 | return -ENOSPC; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 648 | write: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 649 | |
| 650 | /* Set up shift count and masks for the flash table */ |
| 651 | bits = td->options & NAND_BBT_NRBITS_MSK; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 652 | msk[2] = ~rcode; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 653 | switch (bits) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 654 | case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01; |
| 655 | msk[3] = 0x01; |
| 656 | break; |
| 657 | case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01; |
| 658 | msk[3] = 0x03; |
| 659 | break; |
| 660 | case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C; |
| 661 | msk[3] = 0x0f; |
| 662 | break; |
| 663 | case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F; |
| 664 | msk[3] = 0xff; |
| 665 | break; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 666 | default: return -EINVAL; |
| 667 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 668 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 669 | bbtoffs = chip * (numblocks >> 2); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 670 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 671 | to = ((loff_t) page) << this->page_shift; |
| 672 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 673 | /* Must we save the block contents ? */ |
| 674 | if (td->options & NAND_BBT_SAVECONTENT) { |
| 675 | /* Make it block aligned */ |
| 676 | to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1)); |
| 677 | len = 1 << this->bbt_erase_shift; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 678 | res = mtd->read(mtd, to, len, &retlen, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 679 | if (res < 0) { |
| 680 | if (retlen != len) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 681 | printk(KERN_INFO "nand_bbt: Error " |
| 682 | "reading block for writing " |
| 683 | "the bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 684 | return res; |
| 685 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 686 | printk(KERN_WARNING "nand_bbt: ECC error " |
| 687 | "while reading block for writing " |
| 688 | "bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 689 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 690 | /* Read oob data */ |
| 691 | ops.ooblen = (len >> this->page_shift) * mtd->oobsize; |
| 692 | ops.oobbuf = &buf[len]; |
| 693 | res = mtd->read_oob(mtd, to + mtd->writesize, &ops); |
| 694 | if (res < 0 || ops.oobretlen != ops.ooblen) |
| 695 | goto outerr; |
| 696 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 697 | /* Calc the byte offset in the buffer */ |
| 698 | pageoffs = page - (int)(to >> this->page_shift); |
| 699 | offs = pageoffs << this->page_shift; |
| 700 | /* Preset the bbt area with 0xff */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 701 | memset(&buf[offs], 0xff, (size_t) (numblocks >> sft)); |
| 702 | ooboffs = len + (pageoffs * mtd->oobsize); |
| 703 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 704 | } else { |
| 705 | /* Calc length */ |
| 706 | len = (size_t) (numblocks >> sft); |
| 707 | /* Make it page aligned ! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 708 | len = (len + (mtd->writesize - 1)) & |
| 709 | ~(mtd->writesize - 1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 710 | /* Preset the buffer with 0xff */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 711 | memset(buf, 0xff, len + |
| 712 | (len >> this->page_shift)* mtd->oobsize); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 713 | offs = 0; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 714 | ooboffs = len; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 715 | /* Pattern is located in oob area of first page */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 716 | memcpy(&buf[ooboffs + td->offs], td->pattern, td->len); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 717 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 718 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 719 | if (td->options & NAND_BBT_VERSION) |
| 720 | buf[ooboffs + td->veroffs] = td->version[chip]; |
| 721 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 722 | /* walk through the memory table */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 723 | for (i = 0; i < numblocks;) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 724 | uint8_t dat; |
| 725 | dat = this->bbt[bbtoffs + (i >> 2)]; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 726 | for (j = 0; j < 4; j++, i++) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 727 | int sftcnt = (i << (3 - sft)) & sftmsk; |
| 728 | /* Do not store the reserved bbt blocks ! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 729 | buf[offs + (i >> sft)] &= |
| 730 | ~(msk[dat & 0x03] << sftcnt); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 731 | dat >>= 2; |
| 732 | } |
| 733 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 734 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 735 | memset(&einfo, 0, sizeof(einfo)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 736 | einfo.mtd = mtd; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 737 | einfo.addr = to; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 738 | einfo.len = 1 << this->bbt_erase_shift; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 739 | res = nand_erase_nand(mtd, &einfo, 1); |
| 740 | if (res < 0) |
| 741 | goto outerr; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 742 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 743 | res = scan_write_bbt(mtd, to, len, buf, &buf[len]); |
| 744 | if (res < 0) |
| 745 | goto outerr; |
| 746 | |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 747 | printk(KERN_DEBUG "Bad block table written to 0x%012llx, " |
| 748 | "version 0x%02X\n", (unsigned long long)to, |
| 749 | td->version[chip]); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 750 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 751 | /* Mark it as used */ |
| 752 | td->pages[chip] = page; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 753 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 754 | return 0; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 755 | |
| 756 | outerr: |
| 757 | printk(KERN_WARNING |
| 758 | "nand_bbt: Error while writing bad block table %d\n", res); |
| 759 | return res; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | /** |
| 763 | * nand_memory_bbt - [GENERIC] create a memory based bad block table |
| 764 | * @mtd: MTD device structure |
| 765 | * @bd: descriptor for the good/bad block search pattern |
| 766 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 767 | * The function creates a memory based bbt by scanning the device |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 768 | * for manufacturer / software marked good / bad blocks |
| 769 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 770 | static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 771 | { |
| 772 | struct nand_chip *this = mtd->priv; |
| 773 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 774 | bd->options &= ~NAND_BBT_SCANEMPTY; |
| 775 | return create_bbt(mtd, this->buffers->databuf, bd, -1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | /** |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 779 | * check_create - [GENERIC] create and write bbt(s) if necessary |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 780 | * @mtd: MTD device structure |
| 781 | * @buf: temporary buffer |
| 782 | * @bd: descriptor for the good/bad block search pattern |
| 783 | * |
| 784 | * The function checks the results of the previous call to read_bbt |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 785 | * and creates / updates the bbt(s) if necessary |
| 786 | * Creation is necessary if no bbt was found for the chip/device |
| 787 | * Update is necessary if one of the tables is missing or the |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 788 | * version nr. of one table is less than the other |
| 789 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 790 | static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 791 | { |
| 792 | int i, chips, writeops, chipsel, res; |
| 793 | struct nand_chip *this = mtd->priv; |
| 794 | struct nand_bbt_descr *td = this->bbt_td; |
| 795 | struct nand_bbt_descr *md = this->bbt_md; |
| 796 | struct nand_bbt_descr *rd, *rd2; |
| 797 | |
| 798 | /* Do we have a bbt per chip ? */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 799 | if (td->options & NAND_BBT_PERCHIP) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 800 | chips = this->numchips; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 801 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 802 | chips = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 803 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 804 | for (i = 0; i < chips; i++) { |
| 805 | writeops = 0; |
| 806 | rd = NULL; |
| 807 | rd2 = NULL; |
| 808 | /* Per chip or per device ? */ |
| 809 | chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1; |
| 810 | /* Mirrored table avilable ? */ |
| 811 | if (md) { |
| 812 | if (td->pages[i] == -1 && md->pages[i] == -1) { |
| 813 | writeops = 0x03; |
| 814 | goto create; |
| 815 | } |
| 816 | |
| 817 | if (td->pages[i] == -1) { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 818 | rd = md; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 819 | td->version[i] = md->version[i]; |
| 820 | writeops = 1; |
| 821 | goto writecheck; |
| 822 | } |
| 823 | |
| 824 | if (md->pages[i] == -1) { |
| 825 | rd = td; |
| 826 | md->version[i] = td->version[i]; |
| 827 | writeops = 2; |
| 828 | goto writecheck; |
| 829 | } |
| 830 | |
| 831 | if (td->version[i] == md->version[i]) { |
| 832 | rd = td; |
| 833 | if (!(td->options & NAND_BBT_VERSION)) |
| 834 | rd2 = md; |
| 835 | goto writecheck; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 836 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 837 | |
| 838 | if (((int8_t) (td->version[i] - md->version[i])) > 0) { |
| 839 | rd = td; |
| 840 | md->version[i] = td->version[i]; |
| 841 | writeops = 2; |
| 842 | } else { |
| 843 | rd = md; |
| 844 | td->version[i] = md->version[i]; |
| 845 | writeops = 1; |
| 846 | } |
| 847 | |
| 848 | goto writecheck; |
| 849 | |
| 850 | } else { |
| 851 | if (td->pages[i] == -1) { |
| 852 | writeops = 0x01; |
| 853 | goto create; |
| 854 | } |
| 855 | rd = td; |
| 856 | goto writecheck; |
| 857 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 858 | create: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 859 | /* Create the bad block table by scanning the device ? */ |
| 860 | if (!(td->options & NAND_BBT_CREATE)) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 861 | continue; |
| 862 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 863 | /* Create the table in memory by scanning the chip(s) */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 864 | create_bbt(mtd, buf, bd, chipsel); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 865 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 866 | td->version[i] = 1; |
| 867 | if (md) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 868 | md->version[i] = 1; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 869 | writecheck: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 870 | /* read back first ? */ |
| 871 | if (rd) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 872 | read_abs_bbt(mtd, buf, rd, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 873 | /* If they weren't versioned, read both. */ |
| 874 | if (rd2) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 875 | read_abs_bbt(mtd, buf, rd2, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 876 | |
| 877 | /* Write the bad block table to the device ? */ |
| 878 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 879 | res = write_bbt(mtd, buf, td, md, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 880 | if (res < 0) |
| 881 | return res; |
| 882 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 883 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 884 | /* Write the mirror bad block table to the device ? */ |
| 885 | if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 886 | res = write_bbt(mtd, buf, md, td, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 887 | if (res < 0) |
| 888 | return res; |
| 889 | } |
| 890 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 891 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 895 | * mark_bbt_regions - [GENERIC] mark the bad block table regions |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 896 | * @mtd: MTD device structure |
| 897 | * @td: bad block table descriptor |
| 898 | * |
| 899 | * The bad block table regions are marked as "bad" to prevent |
| 900 | * accidental erasures / writes. The regions are identified by |
| 901 | * the mark 0x02. |
| 902 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 903 | static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 904 | { |
| 905 | struct nand_chip *this = mtd->priv; |
| 906 | int i, j, chips, block, nrblocks, update; |
| 907 | uint8_t oldval, newval; |
| 908 | |
| 909 | /* Do we have a bbt per chip ? */ |
| 910 | if (td->options & NAND_BBT_PERCHIP) { |
| 911 | chips = this->numchips; |
| 912 | nrblocks = (int)(this->chipsize >> this->bbt_erase_shift); |
| 913 | } else { |
| 914 | chips = 1; |
| 915 | nrblocks = (int)(mtd->size >> this->bbt_erase_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 916 | } |
| 917 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 918 | for (i = 0; i < chips; i++) { |
| 919 | if ((td->options & NAND_BBT_ABSPAGE) || |
| 920 | !(td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 921 | if (td->pages[i] == -1) |
| 922 | continue; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 923 | block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 924 | block <<= 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 925 | oldval = this->bbt[(block >> 3)]; |
| 926 | newval = oldval | (0x2 << (block & 0x06)); |
| 927 | this->bbt[(block >> 3)] = newval; |
| 928 | if ((oldval != newval) && td->reserved_block_code) |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 929 | nand_update_bbt(mtd, (loff_t)block << |
| 930 | (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 931 | continue; |
| 932 | } |
| 933 | update = 0; |
| 934 | if (td->options & NAND_BBT_LASTBLOCK) |
| 935 | block = ((i + 1) * nrblocks) - td->maxblocks; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 936 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 937 | block = i * nrblocks; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 938 | block <<= 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 939 | for (j = 0; j < td->maxblocks; j++) { |
| 940 | oldval = this->bbt[(block >> 3)]; |
| 941 | newval = oldval | (0x2 << (block & 0x06)); |
| 942 | this->bbt[(block >> 3)] = newval; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 943 | if (oldval != newval) |
| 944 | update = 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 945 | block += 2; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 946 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 947 | /* If we want reserved blocks to be recorded to flash, and some |
| 948 | new ones have been marked, then we need to update the stored |
| 949 | bbts. This should only happen once. */ |
| 950 | if (update && td->reserved_block_code) |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 951 | nand_update_bbt(mtd, (loff_t)(block - 2) << |
| 952 | (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 953 | } |
| 954 | } |
| 955 | |
| 956 | /** |
| 957 | * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s) |
| 958 | * @mtd: MTD device structure |
| 959 | * @bd: descriptor for the good/bad block search pattern |
| 960 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 961 | * The function checks, if a bad block table(s) is/are already |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 962 | * available. If not it scans the device for manufacturer |
| 963 | * marked good / bad blocks and writes the bad block table(s) to |
| 964 | * the selected place. |
| 965 | * |
| 966 | * The bad block table memory is allocated here. It must be freed |
| 967 | * by calling the nand_free_bbt function. |
| 968 | * |
| 969 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 970 | int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 971 | { |
| 972 | struct nand_chip *this = mtd->priv; |
| 973 | int len, res = 0; |
| 974 | uint8_t *buf; |
| 975 | struct nand_bbt_descr *td = this->bbt_td; |
| 976 | struct nand_bbt_descr *md = this->bbt_md; |
| 977 | |
| 978 | len = mtd->size >> (this->bbt_erase_shift + 2); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 979 | /* Allocate memory (2bit per block) and clear the memory bad block table */ |
| 980 | this->bbt = kzalloc(len, GFP_KERNEL); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 981 | if (!this->bbt) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 982 | printk(KERN_ERR "nand_scan_bbt: Out of memory\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 983 | return -ENOMEM; |
| 984 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 985 | |
| 986 | /* If no primary table decriptor is given, scan the device |
| 987 | * to build a memory based bad block table |
| 988 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 989 | if (!td) { |
| 990 | if ((res = nand_memory_bbt(mtd, bd))) { |
| 991 | printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n"); |
| 992 | kfree(this->bbt); |
| 993 | this->bbt = NULL; |
| 994 | } |
| 995 | return res; |
| 996 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 997 | |
| 998 | /* Allocate a temporary buffer for one eraseblock incl. oob */ |
| 999 | len = (1 << this->bbt_erase_shift); |
| 1000 | len += (len >> this->page_shift) * mtd->oobsize; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1001 | buf = vmalloc(len); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1002 | if (!buf) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1003 | printk(KERN_ERR "nand_bbt: Out of memory\n"); |
| 1004 | kfree(this->bbt); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1005 | this->bbt = NULL; |
| 1006 | return -ENOMEM; |
| 1007 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1008 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1009 | /* Is the bbt at a given page ? */ |
| 1010 | if (td->options & NAND_BBT_ABSPAGE) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1011 | res = read_abs_bbts(mtd, buf, td, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1012 | } else { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1013 | /* Search the bad block table using a pattern in oob */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1014 | res = search_read_bbts(mtd, buf, td, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1015 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1016 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1017 | if (res) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1018 | res = check_create(mtd, buf, bd); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1019 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1020 | /* Prevent the bbt regions from erasing / writing */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1021 | mark_bbt_region(mtd, td); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1022 | if (md) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1023 | mark_bbt_region(mtd, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1024 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1025 | vfree(buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1026 | return res; |
| 1027 | } |
| 1028 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1029 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1030 | * nand_update_bbt - [NAND Interface] update bad block table(s) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1031 | * @mtd: MTD device structure |
| 1032 | * @offs: the offset of the newly marked block |
| 1033 | * |
| 1034 | * The function updates the bad block table(s) |
| 1035 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1036 | int nand_update_bbt(struct mtd_info *mtd, loff_t offs) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1037 | { |
| 1038 | struct nand_chip *this = mtd->priv; |
| 1039 | int len, res = 0, writeops = 0; |
| 1040 | int chip, chipsel; |
| 1041 | uint8_t *buf; |
| 1042 | struct nand_bbt_descr *td = this->bbt_td; |
| 1043 | struct nand_bbt_descr *md = this->bbt_md; |
| 1044 | |
| 1045 | if (!this->bbt || !td) |
| 1046 | return -EINVAL; |
| 1047 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1048 | /* Allocate a temporary buffer for one eraseblock incl. oob */ |
| 1049 | len = (1 << this->bbt_erase_shift); |
| 1050 | len += (len >> this->page_shift) * mtd->oobsize; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1051 | buf = kmalloc(len, GFP_KERNEL); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1052 | if (!buf) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1053 | printk(KERN_ERR "nand_update_bbt: Out of memory\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1054 | return -ENOMEM; |
| 1055 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1056 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1057 | writeops = md != NULL ? 0x03 : 0x01; |
| 1058 | |
| 1059 | /* Do we have a bbt per chip ? */ |
| 1060 | if (td->options & NAND_BBT_PERCHIP) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1061 | chip = (int)(offs >> this->chip_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1062 | chipsel = chip; |
| 1063 | } else { |
| 1064 | chip = 0; |
| 1065 | chipsel = -1; |
| 1066 | } |
| 1067 | |
| 1068 | td->version[chip]++; |
| 1069 | if (md) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1070 | md->version[chip]++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1071 | |
| 1072 | /* Write the bad block table to the device ? */ |
| 1073 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1074 | res = write_bbt(mtd, buf, td, md, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1075 | if (res < 0) |
| 1076 | goto out; |
| 1077 | } |
| 1078 | /* Write the mirror bad block table to the device ? */ |
| 1079 | if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1080 | res = write_bbt(mtd, buf, md, td, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1081 | } |
| 1082 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1083 | out: |
| 1084 | kfree(buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1085 | return res; |
| 1086 | } |
| 1087 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1088 | /* Define some generic bad / good block scan pattern which are used |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1089 | * while scanning a device for factory marked good / bad blocks. */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1090 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; |
| 1091 | |
| 1092 | static struct nand_bbt_descr smallpage_memorybased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1093 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1094 | .offs = 5, |
| 1095 | .len = 1, |
| 1096 | .pattern = scan_ff_pattern |
| 1097 | }; |
| 1098 | |
| 1099 | static struct nand_bbt_descr largepage_memorybased = { |
| 1100 | .options = 0, |
| 1101 | .offs = 0, |
| 1102 | .len = 2, |
| 1103 | .pattern = scan_ff_pattern |
| 1104 | }; |
| 1105 | |
| 1106 | static struct nand_bbt_descr smallpage_flashbased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1107 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1108 | .offs = 5, |
| 1109 | .len = 1, |
| 1110 | .pattern = scan_ff_pattern |
| 1111 | }; |
| 1112 | |
| 1113 | static struct nand_bbt_descr largepage_flashbased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1114 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1115 | .offs = 0, |
| 1116 | .len = 2, |
| 1117 | .pattern = scan_ff_pattern |
| 1118 | }; |
| 1119 | |
| 1120 | static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 }; |
| 1121 | |
| 1122 | static struct nand_bbt_descr agand_flashbased = { |
| 1123 | .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES, |
| 1124 | .offs = 0x20, |
| 1125 | .len = 6, |
| 1126 | .pattern = scan_agand_pattern |
| 1127 | }; |
| 1128 | |
| 1129 | /* Generic flash bbt decriptors |
| 1130 | */ |
| 1131 | static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' }; |
| 1132 | static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' }; |
| 1133 | |
| 1134 | static struct nand_bbt_descr bbt_main_descr = { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1135 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1136 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1137 | .offs = 8, |
| 1138 | .len = 4, |
| 1139 | .veroffs = 12, |
| 1140 | .maxblocks = 4, |
| 1141 | .pattern = bbt_pattern |
| 1142 | }; |
| 1143 | |
| 1144 | static struct nand_bbt_descr bbt_mirror_descr = { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1145 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1146 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1147 | .offs = 8, |
| 1148 | .len = 4, |
| 1149 | .veroffs = 12, |
| 1150 | .maxblocks = 4, |
| 1151 | .pattern = mirror_pattern |
| 1152 | }; |
| 1153 | |
| 1154 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1155 | * nand_default_bbt - [NAND Interface] Select a default bad block table for the device |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1156 | * @mtd: MTD device structure |
| 1157 | * |
| 1158 | * This function selects the default bad block table |
| 1159 | * support for the device and calls the nand_scan_bbt function |
| 1160 | * |
| 1161 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1162 | int nand_default_bbt(struct mtd_info *mtd) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1163 | { |
| 1164 | struct nand_chip *this = mtd->priv; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1165 | |
| 1166 | /* Default for AG-AND. We must use a flash based |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1167 | * bad block table as the devices have factory marked |
| 1168 | * _good_ blocks. Erasing those blocks leads to loss |
| 1169 | * of the good / bad information, so we _must_ store |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1170 | * this information in a good / bad table during |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1171 | * startup |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1172 | */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1173 | if (this->options & NAND_IS_AND) { |
| 1174 | /* Use the default pattern descriptors */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1175 | if (!this->bbt_td) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1176 | this->bbt_td = &bbt_main_descr; |
| 1177 | this->bbt_md = &bbt_mirror_descr; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1178 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1179 | this->options |= NAND_USE_FLASH_BBT; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1180 | return nand_scan_bbt(mtd, &agand_flashbased); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1181 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1182 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1183 | /* Is a flash based bad block table requested ? */ |
| 1184 | if (this->options & NAND_USE_FLASH_BBT) { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1185 | /* Use the default pattern descriptors */ |
| 1186 | if (!this->bbt_td) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1187 | this->bbt_td = &bbt_main_descr; |
| 1188 | this->bbt_md = &bbt_mirror_descr; |
| 1189 | } |
| 1190 | if (!this->badblock_pattern) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1191 | this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1192 | } |
| 1193 | } else { |
| 1194 | this->bbt_td = NULL; |
| 1195 | this->bbt_md = NULL; |
| 1196 | if (!this->badblock_pattern) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1197 | this->badblock_pattern = (mtd->writesize > 512) ? |
| 1198 | &largepage_memorybased : &smallpage_memorybased; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1199 | } |
| 1200 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1201 | return nand_scan_bbt(mtd, this->badblock_pattern); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1202 | } |
| 1203 | |
| 1204 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1205 | * nand_isbad_bbt - [NAND Interface] Check if a block is bad |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1206 | * @mtd: MTD device structure |
| 1207 | * @offs: offset in the device |
| 1208 | * @allowbbt: allow access to bad block table region |
| 1209 | * |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1210 | */ |
| 1211 | int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1212 | { |
| 1213 | struct nand_chip *this = mtd->priv; |
| 1214 | int block; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1215 | uint8_t res; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1216 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1217 | /* Get block number * 2 */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1218 | block = (int)(offs >> (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1219 | res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03; |
| 1220 | |
Scott Wood | 3167c53 | 2008-06-20 12:38:57 -0500 | [diff] [blame] | 1221 | MTDDEBUG (MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: " |
| 1222 | "(block %d) 0x%02x\n", (unsigned int)offs, res, block >> 1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1223 | |
| 1224 | switch ((int)res) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1225 | case 0x00: |
| 1226 | return 0; |
| 1227 | case 0x01: |
| 1228 | return 1; |
| 1229 | case 0x02: |
| 1230 | return allowbbt ? 0 : 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1231 | } |
| 1232 | return 1; |
| 1233 | } |
| 1234 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1235 | /* XXX U-BOOT XXX */ |
| 1236 | #if 0 |
| 1237 | EXPORT_SYMBOL(nand_scan_bbt); |
| 1238 | EXPORT_SYMBOL(nand_default_bbt); |
| 1239 | #endif |