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