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