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