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