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