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