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 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 61 | /** |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 62 | * 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 74 | 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] | 75 | { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 76 | int i, end = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 77 | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 85 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 86 | p += end; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 87 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 88 | /* Compare the pattern */ |
| 89 | for (i = 0; i < td->len; i++) { |
| 90 | if (p[i] != td->pattern[i]) |
| 91 | return -1; |
| 92 | } |
| 93 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 94 | if (td->options & NAND_BBT_SCANEMPTY) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 95 | p += td->len; |
| 96 | end += td->len; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 97 | for (i = end; i < len; i++) { |
| 98 | if (*p++ != 0xff) |
| 99 | return -1; |
| 100 | } |
| 101 | } |
| 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | /** |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 106 | * 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 | */ |
| 115 | static 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 129 | * 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 141 | static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num, |
| 142 | int bits, int offs, int reserved_block_code) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 143 | { |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 151 | from = ((loff_t) page) << this->page_shift; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 152 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 153 | while (totlen) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 154 | len = min(totlen, (size_t) (1 << this->bbt_erase_shift)); |
| 155 | res = mtd->read(mtd, from, len, &retlen, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 156 | if (res < 0) { |
| 157 | if (retlen != len) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 158 | printk(KERN_INFO "nand_bbt: Error reading bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 159 | return res; |
| 160 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 161 | 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] | 162 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 163 | |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 171 | if (reserved_block_code && (tmp == reserved_block_code)) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 172 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 176 | this->bbt[offs + (act >> 3)] |= 0x2 << (act & 0x06); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 177 | mtd->ecc_stats.bbtblocks++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 178 | continue; |
| 179 | } |
| 180 | /* Leave it for now, if its matured we can move this |
| 181 | * message to MTD_DEBUG_LEVEL0 */ |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 182 | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 185 | /* Factory marked bad or worn out ? */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 186 | if (tmp == 0) |
| 187 | this->bbt[offs + (act >> 3)] |= 0x3 << (act & 0x06); |
| 188 | else |
| 189 | this->bbt[offs + (act >> 3)] |= 0x1 << (act & 0x06); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 190 | mtd->ecc_stats.badblocks++; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 191 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 192 | } |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 203 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 204 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 210 | 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] | 211 | { |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 234 | /* |
| 235 | * Scan read raw data from flash |
| 236 | */ |
| 237 | static 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 | */ |
| 255 | static 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 270 | /** |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 274 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 275 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 281 | static int read_abs_bbts(struct mtd_info *mtd, uint8_t *buf, |
| 282 | struct nand_bbt_descr *td, struct nand_bbt_descr *md) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 283 | { |
| 284 | struct nand_chip *this = mtd->priv; |
| 285 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 286 | /* Read the primary version, if available */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 287 | if (td->options & NAND_BBT_VERSION) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 288 | scan_read_raw(mtd, buf, (loff_t)td->pages[0] << |
| 289 | this->page_shift, mtd->writesize); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 290 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 295 | /* Read the mirror version, if available */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 296 | if (md && (md->options & NAND_BBT_VERSION)) { |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 297 | scan_read_raw(mtd, buf, (loff_t)md->pages[0] << |
| 298 | this->page_shift, mtd->writesize); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 299 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 302 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 303 | return 1; |
| 304 | } |
| 305 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 306 | /* |
| 307 | * Scan a given block full |
| 308 | */ |
| 309 | static 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 | */ |
| 329 | static 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 359 | /** |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 370 | static int create_bbt(struct mtd_info *mtd, uint8_t *buf, |
| 371 | struct nand_bbt_descr *bd, int chip) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 372 | { |
| 373 | struct nand_chip *this = mtd->priv; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 374 | int i, numblocks, len, scanlen; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 375 | int startblock; |
| 376 | loff_t from; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 377 | size_t readlen; |
| 378 | |
Stefan Roese | e52b34d | 2008-01-10 18:47:33 +0100 | [diff] [blame] | 379 | MTDDEBUG (MTD_DEBUG_LEVEL0, "Scanning device for bad blocks\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 380 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 381 | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 386 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 387 | len = 1; |
| 388 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 389 | |
| 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 399 | |
| 400 | if (chip == -1) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 401 | /* Note that numblocks is 2 * (real numblocks) here, see i+=2 |
| 402 | * below as it makes shifting and masking less painful */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 403 | numblocks = mtd->size >> (this->bbt_erase_shift - 1); |
| 404 | startblock = 0; |
| 405 | from = 0; |
| 406 | } else { |
| 407 | if (chip >= this->numchips) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 408 | printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n", |
| 409 | chip + 1, this->numchips); |
| 410 | return -EINVAL; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 411 | } |
| 412 | numblocks = this->chipsize >> (this->bbt_erase_shift - 1); |
| 413 | startblock = chip * numblocks; |
| 414 | numblocks += startblock; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 415 | from = (loff_t)startblock << (this->bbt_erase_shift - 1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 416 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 417 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 418 | for (i = startblock; i < numblocks;) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 419 | 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 Roese | e52b34d | 2008-01-10 18:47:33 +0100 | [diff] [blame] | 432 | MTDDEBUG (MTD_DEBUG_LEVEL0, |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 433 | "Bad eraseblock %d at 0x%012llx\n", |
| 434 | i >> 1, (unsigned long long)from); |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 435 | mtd->ecc_stats.badblocks++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 436 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 437 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 438 | i += 2; |
| 439 | from += (1 << this->bbt_erase_shift); |
| 440 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 441 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 442 | } |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 451 | * 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] | 452 | * the device downwards. The search starts always at the start of a |
| 453 | * block. |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 454 | * If the option NAND_BBT_PERCHIP is given, each chip is searched |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 455 | * for a bbt, which contains the bad block information of this chip. |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 456 | * This is necessary to provide support for certain DOC devices. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 457 | * |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 458 | * The bbt ident pattern resides in the oob area of the first page |
| 459 | * in a block. |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 460 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 461 | 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] | 462 | { |
| 463 | struct nand_chip *this = mtd->priv; |
| 464 | int i, chips; |
| 465 | int bits, startblock, block, dir; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 466 | int scanlen = mtd->writesize + mtd->oobsize; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 467 | int bbtblocks; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 468 | int blocktopage = this->bbt_erase_shift - this->page_shift; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 469 | |
| 470 | /* Search direction top -> down ? */ |
| 471 | if (td->options & NAND_BBT_LASTBLOCK) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 472 | startblock = (mtd->size >> this->bbt_erase_shift) - 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 473 | dir = -1; |
| 474 | } else { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 475 | startblock = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 476 | dir = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 477 | } |
| 478 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 479 | /* 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 488 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 489 | /* Number of bits for each erase block in the bbt */ |
| 490 | bits = td->options & NAND_BBT_NRBITS_MSK; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 491 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 492 | for (i = 0; i < chips; i++) { |
| 493 | /* Reset version information */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 494 | td->version[i] = 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 495 | td->pages[i] = -1; |
| 496 | /* Scan the maximum number of blocks */ |
| 497 | for (block = 0; block < td->maxblocks; block++) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 498 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 499 | int actblock = startblock + dir * block; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 500 | loff_t offs = (loff_t)actblock << this->bbt_erase_shift; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 501 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 502 | /* Read first page */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 503 | scan_read_raw(mtd, buf, offs, mtd->writesize); |
| 504 | if (!check_pattern(buf, scanlen, mtd->writesize, td)) { |
| 505 | td->pages[i] = actblock << blocktopage; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 506 | if (td->options & NAND_BBT_VERSION) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 507 | td->version[i] = buf[mtd->writesize + td->veroffs]; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 508 | } |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 517 | 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] | 518 | else |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 519 | printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i], |
| 520 | td->version[i]); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 521 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 522 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 523 | } |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 529 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 530 | * @md: descriptor for the bad block table mirror |
| 531 | * |
| 532 | * Search and read the bad block table(s) |
| 533 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 534 | 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] | 535 | { |
| 536 | /* Search the primary table */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 537 | search_bbt(mtd, buf, td); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 538 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 539 | /* Search the mirror table */ |
| 540 | if (md) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 541 | search_bbt(mtd, buf, md); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 542 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 543 | /* Force result check */ |
| 544 | return 1; |
| 545 | } |
| 546 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 547 | /** |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 548 | * write_bbt - [GENERIC] (Re)write the bad block table |
| 549 | * |
| 550 | * @mtd: MTD device structure |
| 551 | * @buf: temporary buffer |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 552 | * @td: descriptor for the bad block table |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 553 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 559 | static 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 562 | { |
| 563 | struct nand_chip *this = mtd->priv; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 564 | struct erase_info einfo; |
| 565 | int i, j, res, chip = 0; |
| 566 | int bits, startblock, dir, page, offs, numblocks, sft, sftmsk; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 567 | int nrchips, bbtoffs, pageoffs, ooboffs; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 568 | uint8_t msk[4]; |
| 569 | uint8_t rcode = td->reserved_block_code; |
| 570 | size_t retlen, len = 0; |
| 571 | loff_t to; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 572 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 578 | |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 583 | numblocks = (int)(this->chipsize >> this->bbt_erase_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 584 | /* Full device write or specific chip ? */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 585 | if (chipsel == -1) { |
| 586 | nrchips = this->numchips; |
| 587 | } else { |
| 588 | nrchips = chipsel + 1; |
| 589 | chip = chipsel; |
| 590 | } |
| 591 | } else { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 592 | numblocks = (int)(mtd->size >> this->bbt_erase_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 593 | nrchips = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 594 | } |
| 595 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 596 | /* Loop through the chips */ |
| 597 | for (; chip < nrchips; chip++) { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 598 | |
| 599 | /* There was already a version of the table, reuse the page |
| 600 | * This applies for absolute placement too, as we have the |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 601 | * page nr. in td->pages. |
| 602 | */ |
| 603 | if (td->pages[chip] != -1) { |
| 604 | page = td->pages[chip]; |
| 605 | goto write; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 606 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 607 | |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 616 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 617 | |
| 618 | for (i = 0; i < td->maxblocks; i++) { |
| 619 | int block = startblock + dir * i; |
| 620 | /* Check, if the block is bad */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 621 | switch ((this->bbt[block >> 2] >> |
| 622 | (2 * (block & 0x03))) & 0x03) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 623 | case 0x01: |
| 624 | case 0x03: |
| 625 | continue; |
| 626 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 627 | page = block << |
| 628 | (this->bbt_erase_shift - this->page_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 629 | /* Check, if the block is used by the mirror table */ |
| 630 | if (!md || md->pages[chip] != page) |
| 631 | goto write; |
| 632 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 633 | printk(KERN_ERR "No space left to write bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 634 | return -ENOSPC; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 635 | write: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 636 | |
| 637 | /* Set up shift count and masks for the flash table */ |
| 638 | bits = td->options & NAND_BBT_NRBITS_MSK; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 639 | msk[2] = ~rcode; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 640 | switch (bits) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 641 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 653 | default: return -EINVAL; |
| 654 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 655 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 656 | bbtoffs = chip * (numblocks >> 2); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 657 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 658 | to = ((loff_t) page) << this->page_shift; |
| 659 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 660 | /* 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 665 | res = mtd->read(mtd, to, len, &retlen, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 666 | if (res < 0) { |
| 667 | if (retlen != len) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 668 | printk(KERN_INFO "nand_bbt: Error " |
| 669 | "reading block for writing " |
| 670 | "the bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 671 | return res; |
| 672 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 673 | printk(KERN_WARNING "nand_bbt: ECC error " |
| 674 | "while reading block for writing " |
| 675 | "bad block table\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 676 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 677 | /* 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 684 | /* 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 688 | memset(&buf[offs], 0xff, (size_t) (numblocks >> sft)); |
| 689 | ooboffs = len + (pageoffs * mtd->oobsize); |
| 690 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 691 | } else { |
| 692 | /* Calc length */ |
| 693 | len = (size_t) (numblocks >> sft); |
| 694 | /* Make it page aligned ! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 695 | len = (len + (mtd->writesize - 1)) & |
| 696 | ~(mtd->writesize - 1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 697 | /* Preset the buffer with 0xff */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 698 | memset(buf, 0xff, len + |
| 699 | (len >> this->page_shift)* mtd->oobsize); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 700 | offs = 0; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 701 | ooboffs = len; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 702 | /* Pattern is located in oob area of first page */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 703 | memcpy(&buf[ooboffs + td->offs], td->pattern, td->len); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 704 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 705 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 706 | if (td->options & NAND_BBT_VERSION) |
| 707 | buf[ooboffs + td->veroffs] = td->version[chip]; |
| 708 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 709 | /* walk through the memory table */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 710 | for (i = 0; i < numblocks;) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 711 | uint8_t dat; |
| 712 | dat = this->bbt[bbtoffs + (i >> 2)]; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 713 | for (j = 0; j < 4; j++, i++) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 714 | int sftcnt = (i << (3 - sft)) & sftmsk; |
| 715 | /* Do not store the reserved bbt blocks ! */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 716 | buf[offs + (i >> sft)] &= |
| 717 | ~(msk[dat & 0x03] << sftcnt); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 718 | dat >>= 2; |
| 719 | } |
| 720 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 721 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 722 | memset(&einfo, 0, sizeof(einfo)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 723 | einfo.mtd = mtd; |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 724 | einfo.addr = to; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 725 | einfo.len = 1 << this->bbt_erase_shift; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 726 | res = nand_erase_nand(mtd, &einfo, 1); |
| 727 | if (res < 0) |
| 728 | goto outerr; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 729 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 730 | res = scan_write_bbt(mtd, to, len, buf, &buf[len]); |
| 731 | if (res < 0) |
| 732 | goto outerr; |
| 733 | |
Sandeep Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 734 | printk(KERN_DEBUG "Bad block table written to 0x%012llx, " |
| 735 | "version 0x%02X\n", (unsigned long long)to, |
| 736 | td->version[chip]); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 737 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 738 | /* Mark it as used */ |
| 739 | td->pages[chip] = page; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 740 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 741 | return 0; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 742 | |
| 743 | outerr: |
| 744 | printk(KERN_WARNING |
| 745 | "nand_bbt: Error while writing bad block table %d\n", res); |
| 746 | return res; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 747 | } |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 754 | * The function creates a memory based bbt by scanning the device |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 755 | * for manufacturer / software marked good / bad blocks |
| 756 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 757 | 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] | 758 | { |
| 759 | struct nand_chip *this = mtd->priv; |
| 760 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 761 | bd->options &= ~NAND_BBT_SCANEMPTY; |
| 762 | return create_bbt(mtd, this->buffers->databuf, bd, -1); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | /** |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 766 | * check_create - [GENERIC] create and write bbt(s) if necessary |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 767 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 772 | * 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 775 | * version nr. of one table is less than the other |
| 776 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 777 | 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] | 778 | { |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 786 | if (td->options & NAND_BBT_PERCHIP) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 787 | chips = this->numchips; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 788 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 789 | chips = 1; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 790 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 791 | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 805 | rd = md; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 806 | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 823 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 824 | |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 845 | create: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 846 | /* Create the bad block table by scanning the device ? */ |
| 847 | if (!(td->options & NAND_BBT_CREATE)) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 848 | continue; |
| 849 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 850 | /* Create the table in memory by scanning the chip(s) */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 851 | create_bbt(mtd, buf, bd, chipsel); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 852 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 853 | td->version[i] = 1; |
| 854 | if (md) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 855 | md->version[i] = 1; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 856 | writecheck: |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 857 | /* read back first ? */ |
| 858 | if (rd) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 859 | read_abs_bbt(mtd, buf, rd, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 860 | /* If they weren't versioned, read both. */ |
| 861 | if (rd2) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 862 | read_abs_bbt(mtd, buf, rd2, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 863 | |
| 864 | /* Write the bad block table to the device ? */ |
| 865 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 866 | res = write_bbt(mtd, buf, td, md, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 867 | if (res < 0) |
| 868 | return res; |
| 869 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 870 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 871 | /* Write the mirror bad block table to the device ? */ |
| 872 | if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 873 | res = write_bbt(mtd, buf, md, td, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 874 | if (res < 0) |
| 875 | return res; |
| 876 | } |
| 877 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 878 | return 0; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 882 | * mark_bbt_regions - [GENERIC] mark the bad block table regions |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 883 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 890 | 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] | 891 | { |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 903 | } |
| 904 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 905 | for (i = 0; i < chips; i++) { |
| 906 | if ((td->options & NAND_BBT_ABSPAGE) || |
| 907 | !(td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 908 | if (td->pages[i] == -1) |
| 909 | continue; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 910 | block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 911 | block <<= 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 912 | 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 Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 916 | nand_update_bbt(mtd, (loff_t)block << |
| 917 | (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 918 | continue; |
| 919 | } |
| 920 | update = 0; |
| 921 | if (td->options & NAND_BBT_LASTBLOCK) |
| 922 | block = ((i + 1) * nrblocks) - td->maxblocks; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 923 | else |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 924 | block = i * nrblocks; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 925 | block <<= 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 926 | 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 930 | if (oldval != newval) |
| 931 | update = 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 932 | block += 2; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 933 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 934 | /* 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 Paulraj | aaa8eec | 2009-10-30 13:51:23 -0400 | [diff] [blame] | 938 | nand_update_bbt(mtd, (loff_t)(block - 2) << |
| 939 | (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 940 | } |
| 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 948 | * The function checks, if a bad block table(s) is/are already |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 949 | * 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 957 | 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] | 958 | { |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 966 | /* Allocate memory (2bit per block) and clear the memory bad block table */ |
| 967 | this->bbt = kzalloc(len, GFP_KERNEL); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 968 | if (!this->bbt) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 969 | printk(KERN_ERR "nand_scan_bbt: Out of memory\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 970 | return -ENOMEM; |
| 971 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 972 | |
| 973 | /* If no primary table decriptor is given, scan the device |
| 974 | * to build a memory based bad block table |
| 975 | */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 976 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 984 | |
| 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 988 | buf = vmalloc(len); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 989 | if (!buf) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 990 | printk(KERN_ERR "nand_bbt: Out of memory\n"); |
| 991 | kfree(this->bbt); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 992 | this->bbt = NULL; |
| 993 | return -ENOMEM; |
| 994 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 995 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 996 | /* Is the bbt at a given page ? */ |
| 997 | if (td->options & NAND_BBT_ABSPAGE) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 998 | res = read_abs_bbts(mtd, buf, td, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 999 | } else { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1000 | /* Search the bad block table using a pattern in oob */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1001 | res = search_read_bbts(mtd, buf, td, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1002 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1003 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1004 | if (res) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1005 | res = check_create(mtd, buf, bd); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1006 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1007 | /* Prevent the bbt regions from erasing / writing */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1008 | mark_bbt_region(mtd, td); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1009 | if (md) |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1010 | mark_bbt_region(mtd, md); |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1011 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1012 | vfree(buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1013 | return res; |
| 1014 | } |
| 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 | * nand_update_bbt - [NAND Interface] update bad block table(s) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1018 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1023 | int nand_update_bbt(struct mtd_info *mtd, loff_t offs) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1024 | { |
| 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1035 | /* 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1038 | buf = kmalloc(len, GFP_KERNEL); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1039 | if (!buf) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1040 | printk(KERN_ERR "nand_update_bbt: Out of memory\n"); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1041 | return -ENOMEM; |
| 1042 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1043 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1044 | writeops = md != NULL ? 0x03 : 0x01; |
| 1045 | |
| 1046 | /* Do we have a bbt per chip ? */ |
| 1047 | if (td->options & NAND_BBT_PERCHIP) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1048 | chip = (int)(offs >> this->chip_shift); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1049 | chipsel = chip; |
| 1050 | } else { |
| 1051 | chip = 0; |
| 1052 | chipsel = -1; |
| 1053 | } |
| 1054 | |
| 1055 | td->version[chip]++; |
| 1056 | if (md) |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1057 | md->version[chip]++; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1058 | |
| 1059 | /* Write the bad block table to the device ? */ |
| 1060 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1061 | res = write_bbt(mtd, buf, td, md, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1062 | 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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1067 | res = write_bbt(mtd, buf, md, td, chipsel); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1068 | } |
| 1069 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1070 | out: |
| 1071 | kfree(buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1072 | return res; |
| 1073 | } |
| 1074 | |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1075 | /* Define some generic bad / good block scan pattern which are used |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1076 | * while scanning a device for factory marked good / bad blocks. */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1077 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; |
| 1078 | |
| 1079 | static struct nand_bbt_descr smallpage_memorybased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1080 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1081 | .offs = 5, |
| 1082 | .len = 1, |
| 1083 | .pattern = scan_ff_pattern |
| 1084 | }; |
| 1085 | |
| 1086 | static struct nand_bbt_descr largepage_memorybased = { |
| 1087 | .options = 0, |
| 1088 | .offs = 0, |
| 1089 | .len = 2, |
| 1090 | .pattern = scan_ff_pattern |
| 1091 | }; |
| 1092 | |
| 1093 | static struct nand_bbt_descr smallpage_flashbased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1094 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1095 | .offs = 5, |
| 1096 | .len = 1, |
| 1097 | .pattern = scan_ff_pattern |
| 1098 | }; |
| 1099 | |
| 1100 | static struct nand_bbt_descr largepage_flashbased = { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1101 | .options = NAND_BBT_SCAN2NDPAGE, |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1102 | .offs = 0, |
| 1103 | .len = 2, |
| 1104 | .pattern = scan_ff_pattern |
| 1105 | }; |
| 1106 | |
| 1107 | static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 }; |
| 1108 | |
| 1109 | static 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 | */ |
| 1118 | static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' }; |
| 1119 | static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' }; |
| 1120 | |
| 1121 | static struct nand_bbt_descr bbt_main_descr = { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1122 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1123 | | 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 | |
| 1131 | static struct nand_bbt_descr bbt_mirror_descr = { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1132 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1133 | | 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1142 | * 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] | 1143 | * @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 Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1149 | int nand_default_bbt(struct mtd_info *mtd) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1150 | { |
| 1151 | struct nand_chip *this = mtd->priv; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1152 | |
| 1153 | /* Default for AG-AND. We must use a flash based |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1154 | * 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 Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1157 | * this information in a good / bad table during |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1158 | * startup |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1159 | */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1160 | if (this->options & NAND_IS_AND) { |
| 1161 | /* Use the default pattern descriptors */ |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1162 | if (!this->bbt_td) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1163 | this->bbt_td = &bbt_main_descr; |
| 1164 | this->bbt_md = &bbt_mirror_descr; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1165 | } |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1166 | this->options |= NAND_USE_FLASH_BBT; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1167 | return nand_scan_bbt(mtd, &agand_flashbased); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1168 | } |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1169 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1170 | /* Is a flash based bad block table requested ? */ |
| 1171 | if (this->options & NAND_USE_FLASH_BBT) { |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1172 | /* Use the default pattern descriptors */ |
| 1173 | if (!this->bbt_td) { |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1174 | this->bbt_td = &bbt_main_descr; |
| 1175 | this->bbt_md = &bbt_mirror_descr; |
| 1176 | } |
| 1177 | if (!this->badblock_pattern) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1178 | this->badblock_pattern = (mtd->writesize > 512) ? &largepage_flashbased : &smallpage_flashbased; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1179 | } |
| 1180 | } else { |
| 1181 | this->bbt_td = NULL; |
| 1182 | this->bbt_md = NULL; |
| 1183 | if (!this->badblock_pattern) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1184 | this->badblock_pattern = (mtd->writesize > 512) ? |
| 1185 | &largepage_memorybased : &smallpage_memorybased; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1186 | } |
| 1187 | } |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1188 | return nand_scan_bbt(mtd, this->badblock_pattern); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | /** |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1192 | * nand_isbad_bbt - [NAND Interface] Check if a block is bad |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1193 | * @mtd: MTD device structure |
| 1194 | * @offs: offset in the device |
| 1195 | * @allowbbt: allow access to bad block table region |
| 1196 | * |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1197 | */ |
| 1198 | 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] | 1199 | { |
| 1200 | struct nand_chip *this = mtd->priv; |
| 1201 | int block; |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1202 | uint8_t res; |
Wolfgang Denk | ac7eb8a | 2005-09-14 23:53:32 +0200 | [diff] [blame] | 1203 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1204 | /* Get block number * 2 */ |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1205 | block = (int)(offs >> (this->bbt_erase_shift - 1)); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1206 | res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03; |
| 1207 | |
Scott Wood | 3167c53 | 2008-06-20 12:38:57 -0500 | [diff] [blame] | 1208 | 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 Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1210 | |
| 1211 | switch ((int)res) { |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 1212 | case 0x00: |
| 1213 | return 0; |
| 1214 | case 0x01: |
| 1215 | return 1; |
| 1216 | case 0x02: |
| 1217 | return allowbbt ? 0 : 1; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 1218 | } |
| 1219 | return 1; |
| 1220 | } |