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)); |
| 159 | res = mtd->read_ecc(mtd, from, len, &retlen, buf, NULL, this->autooob); |
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); |
| 179 | continue; |
| 180 | } |
| 181 | /* Leave it for now, if its matured we can move this |
| 182 | * message to MTD_DEBUG_LEVEL0 */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 183 | printk(KERN_DEBUG "nand_read_bbt: Bad block at 0x%08x\n", |
| 184 | ((offs << 2) + (act >> 1)) << this->bbt_erase_shift); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 185 | /* Factory marked bad or worn out ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [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); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 190 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | totlen -= len; |
| 193 | from += len; |
| 194 | } |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page |
| 200 | * @mtd: MTD device structure |
| 201 | * @buf: temporary buffer |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 202 | * @td: descriptor for the bad block table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | * @chip: read the table for a specific chip, -1 read all chips. |
| 204 | * Applies only if NAND_BBT_PERCHIP option is set |
| 205 | * |
| 206 | * Read the bad block table for all chips starting at a given page |
| 207 | * We assume that the bbt bits are in consecutive order. |
| 208 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 209 | 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] | 210 | { |
| 211 | struct nand_chip *this = mtd->priv; |
| 212 | int res = 0, i; |
| 213 | int bits; |
| 214 | |
| 215 | bits = td->options & NAND_BBT_NRBITS_MSK; |
| 216 | if (td->options & NAND_BBT_PERCHIP) { |
| 217 | int offs = 0; |
| 218 | for (i = 0; i < this->numchips; i++) { |
| 219 | if (chip == -1 || chip == i) |
| 220 | res = read_bbt (mtd, buf, td->pages[i], this->chipsize >> this->bbt_erase_shift, bits, offs, td->reserved_block_code); |
| 221 | if (res) |
| 222 | return res; |
| 223 | offs += this->chipsize >> (this->bbt_erase_shift + 2); |
| 224 | } |
| 225 | } else { |
| 226 | res = read_bbt (mtd, buf, td->pages[0], mtd->size >> this->bbt_erase_shift, bits, 0, td->reserved_block_code); |
| 227 | if (res) |
| 228 | return res; |
| 229 | } |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page |
| 235 | * @mtd: MTD device structure |
| 236 | * @buf: temporary buffer |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 237 | * @td: descriptor for the bad block table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | * @md: descriptor for the bad block table mirror |
| 239 | * |
| 240 | * Read the bad block table(s) for all chips starting at a given page |
| 241 | * We assume that the bbt bits are in consecutive order. |
| 242 | * |
| 243 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 244 | static int read_abs_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] | 245 | { |
| 246 | struct nand_chip *this = mtd->priv; |
| 247 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 248 | /* Read the primary version, if available */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | if (td->options & NAND_BBT_VERSION) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 250 | nand_read_raw(mtd, buf, td->pages[0] << this->page_shift, mtd->oobblock, mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | td->version[0] = buf[mtd->oobblock + td->veroffs]; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 252 | printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n", td->pages[0], td->version[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
| 254 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 255 | /* Read the mirror version, if available */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (md && (md->options & NAND_BBT_VERSION)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 257 | nand_read_raw(mtd, buf, md->pages[0] << this->page_shift, mtd->oobblock, mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | md->version[0] = buf[mtd->oobblock + md->veroffs]; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 259 | printk(KERN_DEBUG "Bad block table at page %d, version 0x%02X\n", md->pages[0], md->version[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | return 1; |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * create_bbt - [GENERIC] Create a bad block table by scanning the device |
| 267 | * @mtd: MTD device structure |
| 268 | * @buf: temporary buffer |
| 269 | * @bd: descriptor for the good/bad block search pattern |
| 270 | * @chip: create the table for a specific chip, -1 read all chips. |
| 271 | * Applies only if NAND_BBT_PERCHIP option is set |
| 272 | * |
| 273 | * Create a bad block table by scanning the device |
| 274 | * for the given good/bad block identify pattern |
| 275 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 276 | static int create_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd, int chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
| 278 | struct nand_chip *this = mtd->priv; |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 279 | int i, j, numblocks, len, scanlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | int startblock; |
| 281 | loff_t from; |
| 282 | size_t readlen, ooblen; |
| 283 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 284 | printk(KERN_INFO "Scanning device for bad blocks\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | if (bd->options & NAND_BBT_SCANALLPAGES) |
| 287 | len = 1 << (this->bbt_erase_shift - this->page_shift); |
| 288 | else { |
| 289 | if (bd->options & NAND_BBT_SCAN2NDPAGE) |
| 290 | len = 2; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 291 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | len = 1; |
| 293 | } |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 294 | |
| 295 | if (!(bd->options & NAND_BBT_SCANEMPTY)) { |
| 296 | /* We need only read few bytes from the OOB area */ |
| 297 | scanlen = ooblen = 0; |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 298 | readlen = bd->len; |
| 299 | } else { |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 300 | /* Full page content should be read */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 301 | scanlen = mtd->oobblock + mtd->oobsize; |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 302 | readlen = len * mtd->oobblock; |
| 303 | ooblen = len * mtd->oobsize; |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 304 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
| 306 | if (chip == -1) { |
| 307 | /* Note that numblocks is 2 * (real numblocks) here, see i+=2 below as it |
| 308 | * makes shifting and masking less painful */ |
| 309 | numblocks = mtd->size >> (this->bbt_erase_shift - 1); |
| 310 | startblock = 0; |
| 311 | from = 0; |
| 312 | } else { |
| 313 | if (chip >= this->numchips) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 314 | printk(KERN_WARNING "create_bbt(): chipnr (%d) > available chips (%d)\n", |
| 315 | chip + 1, this->numchips); |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 316 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | numblocks = this->chipsize >> (this->bbt_erase_shift - 1); |
| 319 | startblock = chip * numblocks; |
| 320 | numblocks += startblock; |
| 321 | from = startblock << (this->bbt_erase_shift - 1); |
| 322 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | for (i = startblock; i < numblocks;) { |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 325 | int ret; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 326 | |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 327 | if (bd->options & NAND_BBT_SCANEMPTY) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 328 | if ((ret = nand_read_raw(mtd, buf, from, readlen, ooblen))) |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 329 | return ret; |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | for (j = 0; j < len; j++) { |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 332 | if (!(bd->options & NAND_BBT_SCANEMPTY)) { |
| 333 | size_t retlen; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 334 | |
| 335 | /* Read the full oob until read_oob is fixed to |
Thomas Gleixner | 19870da | 2005-07-15 14:53:51 +0100 | [diff] [blame] | 336 | * handle single byte reads for 16 bit buswidth */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 337 | ret = mtd->read_oob(mtd, from + j * mtd->oobblock, mtd->oobsize, &retlen, buf); |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 338 | if (ret) |
| 339 | return ret; |
Thomas Gleixner | c9e05365 | 2005-06-14 16:39:57 +0100 | [diff] [blame] | 340 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 341 | if (check_short_pattern(buf, bd)) { |
Thomas Gleixner | c9e05365 | 2005-06-14 16:39:57 +0100 | [diff] [blame] | 342 | this->bbt[i >> 3] |= 0x03 << (i & 0x6); |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 343 | printk(KERN_WARNING "Bad eraseblock %d at 0x%08x\n", |
| 344 | i >> 1, (unsigned int)from); |
Thomas Gleixner | c9e05365 | 2005-06-14 16:39:57 +0100 | [diff] [blame] | 345 | break; |
| 346 | } |
| 347 | } else { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 348 | if (check_pattern(&buf[j * scanlen], scanlen, mtd->oobblock, bd)) { |
Thomas Gleixner | c9e05365 | 2005-06-14 16:39:57 +0100 | [diff] [blame] | 349 | this->bbt[i >> 3] |= 0x03 << (i & 0x6); |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 350 | printk(KERN_WARNING "Bad eraseblock %d at 0x%08x\n", |
| 351 | i >> 1, (unsigned int)from); |
Thomas Gleixner | c9e05365 | 2005-06-14 16:39:57 +0100 | [diff] [blame] | 352 | break; |
| 353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | } |
| 356 | i += 2; |
| 357 | from += (1 << this->bbt_erase_shift); |
| 358 | } |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 359 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | /** |
| 363 | * search_bbt - [GENERIC] scan the device for a specific bad block table |
| 364 | * @mtd: MTD device structure |
| 365 | * @buf: temporary buffer |
| 366 | * @td: descriptor for the bad block table |
| 367 | * |
| 368 | * Read the bad block table by searching for a given ident pattern. |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 369 | * 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] | 370 | * the device downwards. The search starts always at the start of a |
| 371 | * block. |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 372 | * If the option NAND_BBT_PERCHIP is given, each chip is searched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | * for a bbt, which contains the bad block information of this chip. |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 374 | * This is necessary to provide support for certain DOC devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | * |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 376 | * The bbt ident pattern resides in the oob area of the first page |
| 377 | * in a block. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 379 | 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] | 380 | { |
| 381 | struct nand_chip *this = mtd->priv; |
| 382 | int i, chips; |
| 383 | int bits, startblock, block, dir; |
| 384 | int scanlen = mtd->oobblock + mtd->oobsize; |
| 385 | int bbtblocks; |
| 386 | |
| 387 | /* Search direction top -> down ? */ |
| 388 | if (td->options & NAND_BBT_LASTBLOCK) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 389 | startblock = (mtd->size >> this->bbt_erase_shift) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | dir = -1; |
| 391 | } else { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 392 | startblock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | dir = 1; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | /* Do we have a bbt per chip ? */ |
| 397 | if (td->options & NAND_BBT_PERCHIP) { |
| 398 | chips = this->numchips; |
| 399 | bbtblocks = this->chipsize >> this->bbt_erase_shift; |
| 400 | startblock &= bbtblocks - 1; |
| 401 | } else { |
| 402 | chips = 1; |
| 403 | bbtblocks = mtd->size >> this->bbt_erase_shift; |
| 404 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | /* Number of bits for each erase block in the bbt */ |
| 407 | bits = td->options & NAND_BBT_NRBITS_MSK; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | for (i = 0; i < chips; i++) { |
| 410 | /* Reset version information */ |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 411 | td->version[i] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | td->pages[i] = -1; |
| 413 | /* Scan the maximum number of blocks */ |
| 414 | for (block = 0; block < td->maxblocks; block++) { |
| 415 | int actblock = startblock + dir * block; |
| 416 | /* Read first page */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 417 | nand_read_raw(mtd, buf, actblock << this->bbt_erase_shift, mtd->oobblock, mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | if (!check_pattern(buf, scanlen, mtd->oobblock, td)) { |
| 419 | td->pages[i] = actblock << (this->bbt_erase_shift - this->page_shift); |
| 420 | if (td->options & NAND_BBT_VERSION) { |
| 421 | td->version[i] = buf[mtd->oobblock + td->veroffs]; |
| 422 | } |
| 423 | break; |
| 424 | } |
| 425 | } |
| 426 | startblock += this->chipsize >> this->bbt_erase_shift; |
| 427 | } |
| 428 | /* Check, if we found a bbt for each requested chip */ |
| 429 | for (i = 0; i < chips; i++) { |
| 430 | if (td->pages[i] == -1) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 431 | 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] | 432 | else |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 433 | printk(KERN_DEBUG "Bad block table found at page %d, version 0x%02X\n", td->pages[i], |
| 434 | td->version[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 436 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | /** |
| 440 | * search_read_bbts - [GENERIC] scan the device for bad block table(s) |
| 441 | * @mtd: MTD device structure |
| 442 | * @buf: temporary buffer |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 443 | * @td: descriptor for the bad block table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | * @md: descriptor for the bad block table mirror |
| 445 | * |
| 446 | * Search and read the bad block table(s) |
| 447 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 448 | 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] | 449 | { |
| 450 | /* Search the primary table */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 451 | search_bbt(mtd, buf, td); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /* Search the mirror table */ |
| 454 | if (md) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 455 | search_bbt(mtd, buf, md); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 457 | /* Force result check */ |
| 458 | return 1; |
| 459 | } |
| 460 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 461 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | * write_bbt - [GENERIC] (Re)write the bad block table |
| 463 | * |
| 464 | * @mtd: MTD device structure |
| 465 | * @buf: temporary buffer |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 466 | * @td: descriptor for the bad block table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | * @md: descriptor for the bad block table mirror |
| 468 | * @chipsel: selector for a specific chip, -1 for all |
| 469 | * |
| 470 | * (Re)write the bad block table |
| 471 | * |
| 472 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 473 | static int write_bbt(struct mtd_info *mtd, uint8_t *buf, |
| 474 | struct nand_bbt_descr *td, struct nand_bbt_descr *md, int chipsel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | { |
| 476 | struct nand_chip *this = mtd->priv; |
| 477 | struct nand_oobinfo oobinfo; |
| 478 | struct erase_info einfo; |
| 479 | int i, j, res, chip = 0; |
| 480 | int bits, startblock, dir, page, offs, numblocks, sft, sftmsk; |
| 481 | int nrchips, bbtoffs, pageoffs; |
| 482 | uint8_t msk[4]; |
| 483 | uint8_t rcode = td->reserved_block_code; |
| 484 | size_t retlen, len = 0; |
| 485 | loff_t to; |
| 486 | |
| 487 | if (!rcode) |
| 488 | rcode = 0xff; |
| 489 | /* Write bad block table per chip rather than per device ? */ |
| 490 | if (td->options & NAND_BBT_PERCHIP) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 491 | numblocks = (int)(this->chipsize >> this->bbt_erase_shift); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 492 | /* Full device write or specific chip ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | if (chipsel == -1) { |
| 494 | nrchips = this->numchips; |
| 495 | } else { |
| 496 | nrchips = chipsel + 1; |
| 497 | chip = chipsel; |
| 498 | } |
| 499 | } else { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 500 | numblocks = (int)(mtd->size >> this->bbt_erase_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | nrchips = 1; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | /* Loop through the chips */ |
| 505 | for (; chip < nrchips; chip++) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 506 | |
| 507 | /* There was already a version of the table, reuse the page |
| 508 | * This applies for absolute placement too, as we have the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | * page nr. in td->pages. |
| 510 | */ |
| 511 | if (td->pages[chip] != -1) { |
| 512 | page = td->pages[chip]; |
| 513 | goto write; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | /* Automatic placement of the bad block table */ |
| 517 | /* Search direction top -> down ? */ |
| 518 | if (td->options & NAND_BBT_LASTBLOCK) { |
| 519 | startblock = numblocks * (chip + 1) - 1; |
| 520 | dir = -1; |
| 521 | } else { |
| 522 | startblock = chip * numblocks; |
| 523 | dir = 1; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 524 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
| 526 | for (i = 0; i < td->maxblocks; i++) { |
| 527 | int block = startblock + dir * i; |
| 528 | /* Check, if the block is bad */ |
| 529 | switch ((this->bbt[block >> 2] >> (2 * (block & 0x03))) & 0x03) { |
| 530 | case 0x01: |
| 531 | case 0x03: |
| 532 | continue; |
| 533 | } |
| 534 | page = block << (this->bbt_erase_shift - this->page_shift); |
| 535 | /* Check, if the block is used by the mirror table */ |
| 536 | if (!md || md->pages[chip] != page) |
| 537 | goto write; |
| 538 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 539 | printk(KERN_ERR "No space left to write bad block table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return -ENOSPC; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 541 | write: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
| 543 | /* Set up shift count and masks for the flash table */ |
| 544 | bits = td->options & NAND_BBT_NRBITS_MSK; |
| 545 | switch (bits) { |
| 546 | case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01; msk[2] = ~rcode; msk[3] = 0x01; break; |
| 547 | case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01; msk[2] = ~rcode; msk[3] = 0x03; break; |
| 548 | case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C; msk[2] = ~rcode; msk[3] = 0x0f; break; |
| 549 | case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F; msk[2] = ~rcode; msk[3] = 0xff; break; |
| 550 | default: return -EINVAL; |
| 551 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | bbtoffs = chip * (numblocks >> 2); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | to = ((loff_t) page) << this->page_shift; |
| 556 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 557 | memcpy(&oobinfo, this->autooob, sizeof(oobinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | oobinfo.useecc = MTD_NANDECC_PLACEONLY; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | /* Must we save the block contents ? */ |
| 561 | if (td->options & NAND_BBT_SAVECONTENT) { |
| 562 | /* Make it block aligned */ |
| 563 | to &= ~((loff_t) ((1 << this->bbt_erase_shift) - 1)); |
| 564 | len = 1 << this->bbt_erase_shift; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 565 | res = mtd->read_ecc(mtd, to, len, &retlen, buf, &buf[len], &oobinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | if (res < 0) { |
| 567 | if (retlen != len) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 568 | printk(KERN_INFO |
| 569 | "nand_bbt: Error reading block for writing the bad block table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return res; |
| 571 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 572 | printk(KERN_WARNING "nand_bbt: ECC error while reading block for writing bad block table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } |
| 574 | /* Calc the byte offset in the buffer */ |
| 575 | pageoffs = page - (int)(to >> this->page_shift); |
| 576 | offs = pageoffs << this->page_shift; |
| 577 | /* Preset the bbt area with 0xff */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 578 | memset(&buf[offs], 0xff, (size_t) (numblocks >> sft)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | /* Preset the bbt's oob area with 0xff */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 580 | memset(&buf[len + pageoffs * mtd->oobsize], 0xff, |
| 581 | ((len >> this->page_shift) - pageoffs) * mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | if (td->options & NAND_BBT_VERSION) { |
| 583 | buf[len + (pageoffs * mtd->oobsize) + td->veroffs] = td->version[chip]; |
| 584 | } |
| 585 | } else { |
| 586 | /* Calc length */ |
| 587 | len = (size_t) (numblocks >> sft); |
| 588 | /* Make it page aligned ! */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 589 | len = (len + (mtd->oobblock - 1)) & ~(mtd->oobblock - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | /* Preset the buffer with 0xff */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 591 | memset(buf, 0xff, len + (len >> this->page_shift) * mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | offs = 0; |
| 593 | /* Pattern is located in oob area of first page */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 594 | memcpy(&buf[len + td->offs], td->pattern, td->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | if (td->options & NAND_BBT_VERSION) { |
| 596 | buf[len + td->veroffs] = td->version[chip]; |
| 597 | } |
| 598 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | /* walk through the memory table */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 601 | for (i = 0; i < numblocks;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | uint8_t dat; |
| 603 | dat = this->bbt[bbtoffs + (i >> 2)]; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 604 | for (j = 0; j < 4; j++, i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | int sftcnt = (i << (3 - sft)) & sftmsk; |
| 606 | /* Do not store the reserved bbt blocks ! */ |
| 607 | buf[offs + (i >> sft)] &= ~(msk[dat & 0x03] << sftcnt); |
| 608 | dat >>= 2; |
| 609 | } |
| 610 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 611 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 612 | memset(&einfo, 0, sizeof(einfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | einfo.mtd = mtd; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 614 | einfo.addr = (unsigned long)to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | einfo.len = 1 << this->bbt_erase_shift; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 616 | res = nand_erase_nand(mtd, &einfo, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (res < 0) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 618 | printk(KERN_WARNING "nand_bbt: Error during block erase: %d\n", res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | return res; |
| 620 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 621 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 622 | res = mtd->write_ecc(mtd, to, len, &retlen, buf, &buf[len], &oobinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | if (res < 0) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 624 | printk(KERN_WARNING "nand_bbt: Error while writing bad block table %d\n", res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | return res; |
| 626 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 627 | printk(KERN_DEBUG "Bad block table written to 0x%08x, version 0x%02X\n", |
| 628 | (unsigned int)to, td->version[chip]); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | /* Mark it as used */ |
| 631 | td->pages[chip] = page; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | return 0; |
| 634 | } |
| 635 | |
| 636 | /** |
| 637 | * nand_memory_bbt - [GENERIC] create a memory based bad block table |
| 638 | * @mtd: MTD device structure |
| 639 | * @bd: descriptor for the good/bad block search pattern |
| 640 | * |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 641 | * The function creates a memory based bbt by scanning the device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | * for manufacturer / software marked good / bad blocks |
| 643 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 644 | 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] | 645 | { |
| 646 | struct nand_chip *this = mtd->priv; |
| 647 | |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 648 | bd->options &= ~NAND_BBT_SCANEMPTY; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 649 | return create_bbt(mtd, this->data_buf, bd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | /** |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 653 | * check_create - [GENERIC] create and write bbt(s) if necessary |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | * @mtd: MTD device structure |
| 655 | * @buf: temporary buffer |
| 656 | * @bd: descriptor for the good/bad block search pattern |
| 657 | * |
| 658 | * The function checks the results of the previous call to read_bbt |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 659 | * and creates / updates the bbt(s) if necessary |
| 660 | * Creation is necessary if no bbt was found for the chip/device |
| 661 | * Update is necessary if one of the tables is missing or the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | * version nr. of one table is less than the other |
| 663 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 664 | 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] | 665 | { |
| 666 | int i, chips, writeops, chipsel, res; |
| 667 | struct nand_chip *this = mtd->priv; |
| 668 | struct nand_bbt_descr *td = this->bbt_td; |
| 669 | struct nand_bbt_descr *md = this->bbt_md; |
| 670 | struct nand_bbt_descr *rd, *rd2; |
| 671 | |
| 672 | /* Do we have a bbt per chip ? */ |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 673 | if (td->options & NAND_BBT_PERCHIP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | chips = this->numchips; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 675 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | chips = 1; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | for (i = 0; i < chips; i++) { |
| 679 | writeops = 0; |
| 680 | rd = NULL; |
| 681 | rd2 = NULL; |
| 682 | /* Per chip or per device ? */ |
| 683 | chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1; |
| 684 | /* Mirrored table avilable ? */ |
| 685 | if (md) { |
| 686 | if (td->pages[i] == -1 && md->pages[i] == -1) { |
| 687 | writeops = 0x03; |
| 688 | goto create; |
| 689 | } |
| 690 | |
| 691 | if (td->pages[i] == -1) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 692 | rd = md; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | td->version[i] = md->version[i]; |
| 694 | writeops = 1; |
| 695 | goto writecheck; |
| 696 | } |
| 697 | |
| 698 | if (md->pages[i] == -1) { |
| 699 | rd = td; |
| 700 | md->version[i] = td->version[i]; |
| 701 | writeops = 2; |
| 702 | goto writecheck; |
| 703 | } |
| 704 | |
| 705 | if (td->version[i] == md->version[i]) { |
| 706 | rd = td; |
| 707 | if (!(td->options & NAND_BBT_VERSION)) |
| 708 | rd2 = md; |
| 709 | goto writecheck; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 710 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | if (((int8_t) (td->version[i] - md->version[i])) > 0) { |
| 713 | rd = td; |
| 714 | md->version[i] = td->version[i]; |
| 715 | writeops = 2; |
| 716 | } else { |
| 717 | rd = md; |
| 718 | td->version[i] = md->version[i]; |
| 719 | writeops = 1; |
| 720 | } |
| 721 | |
| 722 | goto writecheck; |
| 723 | |
| 724 | } else { |
| 725 | if (td->pages[i] == -1) { |
| 726 | writeops = 0x01; |
| 727 | goto create; |
| 728 | } |
| 729 | rd = td; |
| 730 | goto writecheck; |
| 731 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 732 | create: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | /* Create the bad block table by scanning the device ? */ |
| 734 | if (!(td->options & NAND_BBT_CREATE)) |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 735 | continue; |
| 736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | /* Create the table in memory by scanning the chip(s) */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 738 | create_bbt(mtd, buf, bd, chipsel); |
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 | td->version[i] = 1; |
| 741 | if (md) |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 742 | md->version[i] = 1; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 743 | writecheck: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | /* read back first ? */ |
| 745 | if (rd) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 746 | read_abs_bbt(mtd, buf, rd, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | /* If they weren't versioned, read both. */ |
| 748 | if (rd2) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 749 | read_abs_bbt(mtd, buf, rd2, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
| 751 | /* Write the bad block table to the device ? */ |
| 752 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 753 | res = write_bbt(mtd, buf, td, md, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | if (res < 0) |
| 755 | return res; |
| 756 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | /* Write the mirror bad block table to the device ? */ |
| 759 | if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 760 | res = write_bbt(mtd, buf, md, td, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | if (res < 0) |
| 762 | return res; |
| 763 | } |
| 764 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 765 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 769 | * mark_bbt_regions - [GENERIC] mark the bad block table regions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | * @mtd: MTD device structure |
| 771 | * @td: bad block table descriptor |
| 772 | * |
| 773 | * The bad block table regions are marked as "bad" to prevent |
| 774 | * accidental erasures / writes. The regions are identified by |
| 775 | * the mark 0x02. |
| 776 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 777 | 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] | 778 | { |
| 779 | struct nand_chip *this = mtd->priv; |
| 780 | int i, j, chips, block, nrblocks, update; |
| 781 | uint8_t oldval, newval; |
| 782 | |
| 783 | /* Do we have a bbt per chip ? */ |
| 784 | if (td->options & NAND_BBT_PERCHIP) { |
| 785 | chips = this->numchips; |
| 786 | nrblocks = (int)(this->chipsize >> this->bbt_erase_shift); |
| 787 | } else { |
| 788 | chips = 1; |
| 789 | nrblocks = (int)(mtd->size >> this->bbt_erase_shift); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | for (i = 0; i < chips; i++) { |
| 793 | if ((td->options & NAND_BBT_ABSPAGE) || |
| 794 | !(td->options & NAND_BBT_WRITE)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 795 | if (td->pages[i] == -1) |
| 796 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 798 | block <<= 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | oldval = this->bbt[(block >> 3)]; |
| 800 | newval = oldval | (0x2 << (block & 0x06)); |
| 801 | this->bbt[(block >> 3)] = newval; |
| 802 | if ((oldval != newval) && td->reserved_block_code) |
| 803 | nand_update_bbt(mtd, block << (this->bbt_erase_shift - 1)); |
| 804 | continue; |
| 805 | } |
| 806 | update = 0; |
| 807 | if (td->options & NAND_BBT_LASTBLOCK) |
| 808 | block = ((i + 1) * nrblocks) - td->maxblocks; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 809 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | block = i * nrblocks; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 811 | block <<= 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | for (j = 0; j < td->maxblocks; j++) { |
| 813 | oldval = this->bbt[(block >> 3)]; |
| 814 | newval = oldval | (0x2 << (block & 0x06)); |
| 815 | this->bbt[(block >> 3)] = newval; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 816 | if (oldval != newval) |
| 817 | update = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | block += 2; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 819 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | /* If we want reserved blocks to be recorded to flash, and some |
| 821 | new ones have been marked, then we need to update the stored |
| 822 | bbts. This should only happen once. */ |
| 823 | if (update && td->reserved_block_code) |
| 824 | nand_update_bbt(mtd, (block - 2) << (this->bbt_erase_shift - 1)); |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | /** |
| 829 | * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s) |
| 830 | * @mtd: MTD device structure |
| 831 | * @bd: descriptor for the good/bad block search pattern |
| 832 | * |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 833 | * The function checks, if a bad block table(s) is/are already |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | * available. If not it scans the device for manufacturer |
| 835 | * marked good / bad blocks and writes the bad block table(s) to |
| 836 | * the selected place. |
| 837 | * |
| 838 | * The bad block table memory is allocated here. It must be freed |
| 839 | * by calling the nand_free_bbt function. |
| 840 | * |
| 841 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 842 | 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] | 843 | { |
| 844 | struct nand_chip *this = mtd->priv; |
| 845 | int len, res = 0; |
| 846 | uint8_t *buf; |
| 847 | struct nand_bbt_descr *td = this->bbt_td; |
| 848 | struct nand_bbt_descr *md = this->bbt_md; |
| 849 | |
| 850 | len = mtd->size >> (this->bbt_erase_shift + 2); |
| 851 | /* Allocate memory (2bit per block) */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 852 | this->bbt = kmalloc(len, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | if (!this->bbt) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 854 | printk(KERN_ERR "nand_scan_bbt: Out of memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | return -ENOMEM; |
| 856 | } |
| 857 | /* Clear the memory bad block table */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 858 | memset(this->bbt, 0x00, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
| 860 | /* If no primary table decriptor is given, scan the device |
| 861 | * to build a memory based bad block table |
| 862 | */ |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 863 | if (!td) { |
| 864 | if ((res = nand_memory_bbt(mtd, bd))) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 865 | printk(KERN_ERR "nand_bbt: Can't scan flash and build the RAM-based BBT\n"); |
| 866 | kfree(this->bbt); |
Artem B. Bityuckiy | eeada24 | 2005-02-11 10:14:15 +0000 | [diff] [blame] | 867 | this->bbt = NULL; |
| 868 | } |
| 869 | return res; |
| 870 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
| 872 | /* Allocate a temporary buffer for one eraseblock incl. oob */ |
| 873 | len = (1 << this->bbt_erase_shift); |
| 874 | len += (len >> this->page_shift) * mtd->oobsize; |
David Woodhouse | c3f8abf | 2006-05-13 04:03:42 +0100 | [diff] [blame] | 875 | buf = vmalloc(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | if (!buf) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 877 | printk(KERN_ERR "nand_bbt: Out of memory\n"); |
| 878 | kfree(this->bbt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | this->bbt = NULL; |
| 880 | return -ENOMEM; |
| 881 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | /* Is the bbt at a given page ? */ |
| 884 | if (td->options & NAND_BBT_ABSPAGE) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 885 | res = read_abs_bbts(mtd, buf, td, md); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 886 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | /* Search the bad block table using a pattern in oob */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 888 | res = search_read_bbts(mtd, buf, td, md); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 889 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 891 | if (res) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 892 | res = check_create(mtd, buf, bd); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | /* Prevent the bbt regions from erasing / writing */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 895 | mark_bbt_region(mtd, td); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | if (md) |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 897 | mark_bbt_region(mtd, md); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 898 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 899 | vfree(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | return res; |
| 901 | } |
| 902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 904 | * nand_update_bbt - [NAND Interface] update bad block table(s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | * @mtd: MTD device structure |
| 906 | * @offs: the offset of the newly marked block |
| 907 | * |
| 908 | * The function updates the bad block table(s) |
| 909 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 910 | int nand_update_bbt(struct mtd_info *mtd, loff_t offs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | { |
| 912 | struct nand_chip *this = mtd->priv; |
| 913 | int len, res = 0, writeops = 0; |
| 914 | int chip, chipsel; |
| 915 | uint8_t *buf; |
| 916 | struct nand_bbt_descr *td = this->bbt_td; |
| 917 | struct nand_bbt_descr *md = this->bbt_md; |
| 918 | |
| 919 | if (!this->bbt || !td) |
| 920 | return -EINVAL; |
| 921 | |
| 922 | len = mtd->size >> (this->bbt_erase_shift + 2); |
| 923 | /* Allocate a temporary buffer for one eraseblock incl. oob */ |
| 924 | len = (1 << this->bbt_erase_shift); |
| 925 | len += (len >> this->page_shift) * mtd->oobsize; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 926 | buf = kmalloc(len, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | if (!buf) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 928 | printk(KERN_ERR "nand_update_bbt: Out of memory\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return -ENOMEM; |
| 930 | } |
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 | writeops = md != NULL ? 0x03 : 0x01; |
| 933 | |
| 934 | /* Do we have a bbt per chip ? */ |
| 935 | if (td->options & NAND_BBT_PERCHIP) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 936 | chip = (int)(offs >> this->chip_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | chipsel = chip; |
| 938 | } else { |
| 939 | chip = 0; |
| 940 | chipsel = -1; |
| 941 | } |
| 942 | |
| 943 | td->version[chip]++; |
| 944 | if (md) |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 945 | md->version[chip]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | |
| 947 | /* Write the bad block table to the device ? */ |
| 948 | if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 949 | res = write_bbt(mtd, buf, td, md, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | if (res < 0) |
| 951 | goto out; |
| 952 | } |
| 953 | /* Write the mirror bad block table to the device ? */ |
| 954 | if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 955 | res = write_bbt(mtd, buf, md, td, chipsel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | } |
| 957 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 958 | out: |
| 959 | kfree(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | return res; |
| 961 | } |
| 962 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 963 | /* Define some generic bad / good block scan pattern which are used |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 964 | * while scanning a device for factory marked good / bad blocks. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; |
| 966 | |
| 967 | static struct nand_bbt_descr smallpage_memorybased = { |
Artem B. Bityuckiy | 171650a | 2005-02-16 17:09:39 +0000 | [diff] [blame] | 968 | .options = NAND_BBT_SCAN2NDPAGE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | .offs = 5, |
| 970 | .len = 1, |
| 971 | .pattern = scan_ff_pattern |
| 972 | }; |
| 973 | |
| 974 | static struct nand_bbt_descr largepage_memorybased = { |
| 975 | .options = 0, |
| 976 | .offs = 0, |
| 977 | .len = 2, |
| 978 | .pattern = scan_ff_pattern |
| 979 | }; |
| 980 | |
| 981 | static struct nand_bbt_descr smallpage_flashbased = { |
David Woodhouse | 6943f8a | 2006-05-13 16:14:26 +0100 | [diff] [blame] | 982 | .options = NAND_BBT_SCAN2NDPAGE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | .offs = 5, |
| 984 | .len = 1, |
| 985 | .pattern = scan_ff_pattern |
| 986 | }; |
| 987 | |
| 988 | static struct nand_bbt_descr largepage_flashbased = { |
David Woodhouse | 6943f8a | 2006-05-13 16:14:26 +0100 | [diff] [blame] | 989 | .options = NAND_BBT_SCAN2NDPAGE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | .offs = 0, |
| 991 | .len = 2, |
| 992 | .pattern = scan_ff_pattern |
| 993 | }; |
| 994 | |
| 995 | static uint8_t scan_agand_pattern[] = { 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7 }; |
| 996 | |
| 997 | static struct nand_bbt_descr agand_flashbased = { |
| 998 | .options = NAND_BBT_SCANEMPTY | NAND_BBT_SCANALLPAGES, |
| 999 | .offs = 0x20, |
| 1000 | .len = 6, |
| 1001 | .pattern = scan_agand_pattern |
| 1002 | }; |
| 1003 | |
| 1004 | /* Generic flash bbt decriptors |
| 1005 | */ |
| 1006 | static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' }; |
| 1007 | static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' }; |
| 1008 | |
| 1009 | static struct nand_bbt_descr bbt_main_descr = { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1010 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1012 | .offs = 8, |
| 1013 | .len = 4, |
| 1014 | .veroffs = 12, |
| 1015 | .maxblocks = 4, |
| 1016 | .pattern = bbt_pattern |
| 1017 | }; |
| 1018 | |
| 1019 | static struct nand_bbt_descr bbt_mirror_descr = { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1020 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1022 | .offs = 8, |
| 1023 | .len = 4, |
| 1024 | .veroffs = 12, |
| 1025 | .maxblocks = 4, |
| 1026 | .pattern = mirror_pattern |
| 1027 | }; |
| 1028 | |
| 1029 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1030 | * 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] | 1031 | * @mtd: MTD device structure |
| 1032 | * |
| 1033 | * This function selects the default bad block table |
| 1034 | * support for the device and calls the nand_scan_bbt function |
| 1035 | * |
| 1036 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1037 | int nand_default_bbt(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | { |
| 1039 | struct nand_chip *this = mtd->priv; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1040 | |
| 1041 | /* Default for AG-AND. We must use a flash based |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | * bad block table as the devices have factory marked |
| 1043 | * _good_ blocks. Erasing those blocks leads to loss |
| 1044 | * of the good / bad information, so we _must_ store |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1045 | * this information in a good / bad table during |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | * startup |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1047 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | if (this->options & NAND_IS_AND) { |
| 1049 | /* Use the default pattern descriptors */ |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1050 | if (!this->bbt_td) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | this->bbt_td = &bbt_main_descr; |
| 1052 | this->bbt_md = &bbt_mirror_descr; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | this->options |= NAND_USE_FLASH_BBT; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1055 | return nand_scan_bbt(mtd, &agand_flashbased); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* Is a flash based bad block table requested ? */ |
| 1059 | if (this->options & NAND_USE_FLASH_BBT) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1060 | /* Use the default pattern descriptors */ |
| 1061 | if (!this->bbt_td) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | this->bbt_td = &bbt_main_descr; |
| 1063 | this->bbt_md = &bbt_mirror_descr; |
| 1064 | } |
| 1065 | if (!this->badblock_pattern) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1066 | this->badblock_pattern = (mtd->oobblock > 512) ? &largepage_flashbased : &smallpage_flashbased; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } |
| 1068 | } else { |
| 1069 | this->bbt_td = NULL; |
| 1070 | this->bbt_md = NULL; |
| 1071 | if (!this->badblock_pattern) { |
| 1072 | this->badblock_pattern = (mtd->oobblock > 512) ? |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1073 | &largepage_memorybased : &smallpage_memorybased; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | } |
| 1075 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1076 | return nand_scan_bbt(mtd, this->badblock_pattern); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1080 | * nand_isbad_bbt - [NAND Interface] Check if a block is bad |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | * @mtd: MTD device structure |
| 1082 | * @offs: offset in the device |
| 1083 | * @allowbbt: allow access to bad block table region |
| 1084 | * |
| 1085 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1086 | 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] | 1087 | { |
| 1088 | struct nand_chip *this = mtd->priv; |
| 1089 | int block; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1090 | uint8_t res; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | /* Get block number * 2 */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1093 | block = (int)(offs >> (this->bbt_erase_shift - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | res = (this->bbt[block >> 3] >> (block & 0x06)) & 0x03; |
| 1095 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1096 | DEBUG(MTD_DEBUG_LEVEL2, "nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n", |
| 1097 | (unsigned int)offs, block >> 1, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
| 1099 | switch ((int)res) { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1100 | case 0x00: |
| 1101 | return 0; |
| 1102 | case 0x01: |
| 1103 | return 1; |
| 1104 | case 0x02: |
| 1105 | return allowbbt ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | } |
| 1107 | return 1; |
| 1108 | } |
| 1109 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame^] | 1110 | EXPORT_SYMBOL(nand_scan_bbt); |
| 1111 | EXPORT_SYMBOL(nand_default_bbt); |