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