blob: 531d48ce8981fef9db81069f7ef1ba0e1bac8588 [file] [log] [blame]
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001/*
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02002 * Overview:
3 * Bad block table support for the NAND driver
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02004 *
Sergey Lapin3a38a552013-01-14 03:46:50 +00005 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02006 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Description:
12 *
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020013 * When nand_scan_bbt is called, then it tries to find the bad block table
Christian Hitz24e6ea42011-10-12 09:32:04 +020014 * depending on the options in the BBT descriptor(s). If no flash based BBT
Sergey Lapin3a38a552013-01-14 03:46:50 +000015 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Christian Hitz24e6ea42011-10-12 09:32:04 +020016 * marked good / bad blocks. This information is used to create a memory BBT.
17 * Once a new bad block is discovered then the "factory" information is updated
18 * on the device.
19 * If a flash based BBT is specified then the function first tries to find the
20 * BBT on flash. If a BBT is found then the contents are read and the memory
21 * based BBT is created. If a mirrored BBT is selected then the mirror is
22 * searched too and the versions are compared. If the mirror has a greater
Sergey Lapin3a38a552013-01-14 03:46:50 +000023 * version number, then the mirror BBT is used to build the memory based BBT.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020024 * If the tables are not versioned, then we "or" the bad block information.
Christian Hitz24e6ea42011-10-12 09:32:04 +020025 * If one of the BBTs is out of date or does not exist it is (re)created.
26 * If no BBT exists at all then the device is scanned for factory marked
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020027 * good / bad blocks and the bad block tables are created.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020028 *
Christian Hitz24e6ea42011-10-12 09:32:04 +020029 * For manufacturer created BBTs like the one found on M-SYS DOC devices
30 * the BBT is searched and read but never created
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020031 *
Christian Hitz24e6ea42011-10-12 09:32:04 +020032 * The auto generated bad block table is located in the last good blocks
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020033 * of the device. The table is mirrored, so it can be updated eventually.
Christian Hitz24e6ea42011-10-12 09:32:04 +020034 * The table is marked in the OOB area with an ident pattern and a version
35 * number which indicates which of both tables is more up to date. If the NAND
36 * controller needs the complete OOB area for the ECC information then the
Sergey Lapin3a38a552013-01-14 03:46:50 +000037 * option NAND_BBT_NO_OOB should be used (along with NAND_BBT_USE_FLASH, of
38 * course): it moves the ident pattern and the version byte into the data area
39 * and the OOB area will remain untouched.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020040 *
41 * The table uses 2 bits per block
Christian Hitz24e6ea42011-10-12 09:32:04 +020042 * 11b: block is good
43 * 00b: block is factory marked bad
Wolfgang Denka1be4762008-05-20 16:00:29 +020044 * 01b, 10b: block is marked bad due to wear
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020045 *
46 * The memory bad block table uses the following scheme:
47 * 00b: block is good
48 * 01b: block is marked bad due to wear
49 * 10b: block is reserved (to protect the bbt area)
50 * 11b: block is factory marked bad
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020051 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020052 * Multichip devices like DOC store the bad block info per floor.
53 *
54 * Following assumptions are made:
55 * - bbts start at a page boundary, if autolocated on a block boundary
William Juul52c07962007-10-31 13:53:06 +010056 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +020057 *
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020058 */
59
Scott Wood831bbad2015-06-22 22:38:32 -050060#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -060061#include <log.h>
Scott Wood831bbad2015-06-22 22:38:32 -050062#include <malloc.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070063#include <dm/devres.h>
Scott Wood831bbad2015-06-22 22:38:32 -050064#include <linux/compat.h>
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020065#include <linux/mtd/mtd.h>
Sergey Lapin3a38a552013-01-14 03:46:50 +000066#include <linux/mtd/bbm.h>
Masahiro Yamada2b7a8732017-11-30 13:45:24 +090067#include <linux/mtd/rawnand.h>
Christian Hitz24e6ea42011-10-12 09:32:04 +020068#include <linux/bitops.h>
Sergey Lapin3a38a552013-01-14 03:46:50 +000069#include <linux/string.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020070
71#define BBT_BLOCK_GOOD 0x00
72#define BBT_BLOCK_WORN 0x01
73#define BBT_BLOCK_RESERVED 0x02
74#define BBT_BLOCK_FACTORY_BAD 0x03
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020075
Heiko Schocherf5895d12014-06-24 10:10:04 +020076#define BBT_ENTRY_MASK 0x03
77#define BBT_ENTRY_SHIFT 2
78
79static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
80
81static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
82{
83 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
84 entry >>= (block & BBT_ENTRY_MASK) * 2;
85 return entry & BBT_ENTRY_MASK;
86}
87
88static inline void bbt_mark_entry(struct nand_chip *chip, int block,
89 uint8_t mark)
90{
91 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
92 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
93}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020094
Christian Hitz24e6ea42011-10-12 09:32:04 +020095static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
96{
Sergey Lapin3a38a552013-01-14 03:46:50 +000097 if (memcmp(buf, td->pattern, td->len))
98 return -1;
99 return 0;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200100}
101
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200102/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200103 * check_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapin3a38a552013-01-14 03:46:50 +0000104 * @buf: the buffer to search
105 * @len: the length of buffer to search
106 * @paglen: the pagelength
107 * @td: search pattern descriptor
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200108 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000109 * Check for a pattern at the given place. Used to search bad block tables and
Heiko Schocherf5895d12014-06-24 10:10:04 +0200110 * good / bad block identifiers.
Sergey Lapin3a38a552013-01-14 03:46:50 +0000111 */
William Juul52c07962007-10-31 13:53:06 +0100112static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200113{
Christian Hitz24e6ea42011-10-12 09:32:04 +0200114 if (td->options & NAND_BBT_NO_OOB)
115 return check_pattern_no_oob(buf, td);
116
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200117 /* Compare the pattern */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200118 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Sergey Lapin3a38a552013-01-14 03:46:50 +0000119 return -1;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200120
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200121 return 0;
122}
123
124/**
William Juul52c07962007-10-31 13:53:06 +0100125 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapin3a38a552013-01-14 03:46:50 +0000126 * @buf: the buffer to search
127 * @td: search pattern descriptor
William Juul52c07962007-10-31 13:53:06 +0100128 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000129 * Check for a pattern at the given place. Used to search bad block tables and
130 * good / bad block identifiers. Same as check_pattern, but no optional empty
131 * check.
132 */
William Juul52c07962007-10-31 13:53:06 +0100133static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
134{
William Juul52c07962007-10-31 13:53:06 +0100135 /* Compare the pattern */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000136 if (memcmp(buf + td->offs, td->pattern, td->len))
137 return -1;
William Juul52c07962007-10-31 13:53:06 +0100138 return 0;
139}
140
141/**
Christian Hitz24e6ea42011-10-12 09:32:04 +0200142 * add_marker_len - compute the length of the marker in data area
Sergey Lapin3a38a552013-01-14 03:46:50 +0000143 * @td: BBT descriptor used for computation
Christian Hitz24e6ea42011-10-12 09:32:04 +0200144 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000145 * The length will be 0 if the marker is located in OOB area.
Christian Hitz24e6ea42011-10-12 09:32:04 +0200146 */
147static u32 add_marker_len(struct nand_bbt_descr *td)
148{
149 u32 len;
150
151 if (!(td->options & NAND_BBT_NO_OOB))
152 return 0;
153
154 len = td->len;
155 if (td->options & NAND_BBT_VERSION)
156 len++;
157 return len;
158}
159
160/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200161 * read_bbt - [GENERIC] Read the bad block table starting from page
Sergey Lapin3a38a552013-01-14 03:46:50 +0000162 * @mtd: MTD device structure
163 * @buf: temporary buffer
164 * @page: the starting page
165 * @num: the number of bbt descriptors to read
166 * @td: the bbt describtion table
Heiko Schocherf5895d12014-06-24 10:10:04 +0200167 * @offs: block number offset in the table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200168 *
169 * Read the bad block table starting from page.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200170 */
William Juul52c07962007-10-31 13:53:06 +0100171static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Christian Hitz24e6ea42011-10-12 09:32:04 +0200172 struct nand_bbt_descr *td, int offs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200173{
Sergey Lapin3a38a552013-01-14 03:46:50 +0000174 int res, ret = 0, i, j, act = 0;
Scott Wood17fed142016-05-30 13:57:56 -0500175 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200176 size_t retlen, len, totlen;
177 loff_t from;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200178 int bits = td->options & NAND_BBT_NRBITS_MSK;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000179 uint8_t msk = (uint8_t)((1 << bits) - 1);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200180 u32 marker_len;
181 int reserved_block_code = td->reserved_block_code;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200182
183 totlen = (num * bits) >> 3;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200184 marker_len = add_marker_len(td);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000185 from = ((loff_t)page) << this->page_shift;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200186
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200187 while (totlen) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000188 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Christian Hitz24e6ea42011-10-12 09:32:04 +0200189 if (marker_len) {
190 /*
191 * In case the BBT marker is not in the OOB area it
192 * will be just in the first page.
193 */
194 len -= marker_len;
195 from += marker_len;
196 marker_len = 0;
197 }
Sergey Lapin3a38a552013-01-14 03:46:50 +0000198 res = mtd_read(mtd, from, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200199 if (res < 0) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000200 if (mtd_is_eccerr(res)) {
Scott Wood3ea94ed2015-06-26 19:03:26 -0500201 pr_info("nand_bbt: ECC error in BBT at 0x%012llx\n",
202 from & ~mtd->writesize);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000203 return res;
204 } else if (mtd_is_bitflip(res)) {
Scott Wood3ea94ed2015-06-26 19:03:26 -0500205 pr_info("nand_bbt: corrected error in BBT at 0x%012llx\n",
206 from & ~mtd->writesize);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000207 ret = res;
208 } else {
209 pr_info("nand_bbt: error reading BBT\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200210 return res;
211 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200212 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200213
214 /* Analyse data */
215 for (i = 0; i < len; i++) {
216 uint8_t dat = buf[i];
Heiko Schocherf5895d12014-06-24 10:10:04 +0200217 for (j = 0; j < 8; j += bits, act++) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200218 uint8_t tmp = (dat >> j) & msk;
219 if (tmp == msk)
220 continue;
William Juul52c07962007-10-31 13:53:06 +0100221 if (reserved_block_code && (tmp == reserved_block_code)) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000222 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200223 (loff_t)(offs + act) <<
224 this->bbt_erase_shift);
225 bbt_mark_entry(this, offs + act,
226 BBT_BLOCK_RESERVED);
William Juul52c07962007-10-31 13:53:06 +0100227 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200228 continue;
229 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200230 /*
231 * Leave it for now, if it's matured we can
232 * move this message to pr_debug.
233 */
234 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
235 (loff_t)(offs + act) <<
236 this->bbt_erase_shift);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000237 /* Factory marked bad or worn out? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200238 if (tmp == 0)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200239 bbt_mark_entry(this, offs + act,
240 BBT_BLOCK_FACTORY_BAD);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200241 else
Heiko Schocherf5895d12014-06-24 10:10:04 +0200242 bbt_mark_entry(this, offs + act,
243 BBT_BLOCK_WORN);
William Juul52c07962007-10-31 13:53:06 +0100244 mtd->ecc_stats.badblocks++;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200245 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200246 }
247 totlen -= len;
248 from += len;
249 }
Sergey Lapin3a38a552013-01-14 03:46:50 +0000250 return ret;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200251}
252
253/**
254 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Sergey Lapin3a38a552013-01-14 03:46:50 +0000255 * @mtd: MTD device structure
256 * @buf: temporary buffer
257 * @td: descriptor for the bad block table
258 * @chip: read the table for a specific chip, -1 read all chips; applies only if
259 * NAND_BBT_PERCHIP option is set
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200260 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000261 * Read the bad block table for all chips starting at a given page. We assume
262 * that the bbt bits are in consecutive order.
263 */
William Juul52c07962007-10-31 13:53:06 +0100264static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200265{
Scott Wood17fed142016-05-30 13:57:56 -0500266 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200267 int res = 0, i;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200268
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200269 if (td->options & NAND_BBT_PERCHIP) {
270 int offs = 0;
271 for (i = 0; i < this->numchips; i++) {
272 if (chip == -1 || chip == i)
Christian Hitz24e6ea42011-10-12 09:32:04 +0200273 res = read_bbt(mtd, buf, td->pages[i],
274 this->chipsize >> this->bbt_erase_shift,
275 td, offs);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200276 if (res)
277 return res;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200278 offs += this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200279 }
280 } else {
Christian Hitz24e6ea42011-10-12 09:32:04 +0200281 res = read_bbt(mtd, buf, td->pages[0],
282 mtd->size >> this->bbt_erase_shift, td, 0);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200283 if (res)
284 return res;
285 }
286 return 0;
287}
288
Sergey Lapin3a38a552013-01-14 03:46:50 +0000289/* BBT marker is in the first page, no OOB */
290static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitz24e6ea42011-10-12 09:32:04 +0200291 struct nand_bbt_descr *td)
292{
293 size_t retlen;
294 size_t len;
295
296 len = td->len;
297 if (td->options & NAND_BBT_VERSION)
298 len++;
299
Sergey Lapin3a38a552013-01-14 03:46:50 +0000300 return mtd_read(mtd, offs, len, &retlen, buf);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200301}
302
Sergey Lapin3a38a552013-01-14 03:46:50 +0000303/**
304 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
305 * @mtd: MTD device structure
306 * @buf: temporary buffer
307 * @offs: offset at which to scan
308 * @len: length of data region to read
309 *
310 * Scan read data from data+OOB. May traverse multiple pages, interleaving
311 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
312 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
William Juul52c07962007-10-31 13:53:06 +0100313 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000314static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
William Juul52c07962007-10-31 13:53:06 +0100315 size_t len)
316{
317 struct mtd_oob_ops ops;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000318 int res, ret = 0;
William Juul52c07962007-10-31 13:53:06 +0100319
Sergey Lapin3a38a552013-01-14 03:46:50 +0000320 ops.mode = MTD_OPS_PLACE_OOB;
William Juul52c07962007-10-31 13:53:06 +0100321 ops.ooboffs = 0;
322 ops.ooblen = mtd->oobsize;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200323
Christian Hitz24e6ea42011-10-12 09:32:04 +0200324 while (len > 0) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000325 ops.datbuf = buf;
326 ops.len = min(len, (size_t)mtd->writesize);
327 ops.oobbuf = buf + ops.len;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200328
Sergey Lapin3a38a552013-01-14 03:46:50 +0000329 res = mtd_read_oob(mtd, offs, &ops);
330 if (res) {
331 if (!mtd_is_bitflip_or_eccerr(res))
Christian Hitz24e6ea42011-10-12 09:32:04 +0200332 return res;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000333 else if (mtd_is_eccerr(res) || !ret)
334 ret = res;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200335 }
336
337 buf += mtd->oobsize + mtd->writesize;
338 len -= mtd->writesize;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000339 offs += mtd->writesize;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200340 }
Sergey Lapin3a38a552013-01-14 03:46:50 +0000341 return ret;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200342}
William Juul52c07962007-10-31 13:53:06 +0100343
Sergey Lapin3a38a552013-01-14 03:46:50 +0000344static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitz24e6ea42011-10-12 09:32:04 +0200345 size_t len, struct nand_bbt_descr *td)
346{
347 if (td->options & NAND_BBT_NO_OOB)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000348 return scan_read_data(mtd, buf, offs, td);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200349 else
Sergey Lapin3a38a552013-01-14 03:46:50 +0000350 return scan_read_oob(mtd, buf, offs, len);
William Juul52c07962007-10-31 13:53:06 +0100351}
352
Sergey Lapin3a38a552013-01-14 03:46:50 +0000353/* Scan write data with oob to flash */
William Juul52c07962007-10-31 13:53:06 +0100354static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
355 uint8_t *buf, uint8_t *oob)
356{
357 struct mtd_oob_ops ops;
358
Sergey Lapin3a38a552013-01-14 03:46:50 +0000359 ops.mode = MTD_OPS_PLACE_OOB;
William Juul52c07962007-10-31 13:53:06 +0100360 ops.ooboffs = 0;
361 ops.ooblen = mtd->oobsize;
362 ops.datbuf = buf;
363 ops.oobbuf = oob;
364 ops.len = len;
365
Sergey Lapin3a38a552013-01-14 03:46:50 +0000366 return mtd_write_oob(mtd, offs, &ops);
William Juul52c07962007-10-31 13:53:06 +0100367}
368
Christian Hitz24e6ea42011-10-12 09:32:04 +0200369static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
370{
371 u32 ver_offs = td->veroffs;
372
373 if (!(td->options & NAND_BBT_NO_OOB))
374 ver_offs += mtd->writesize;
375 return ver_offs;
376}
377
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200378/**
379 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
Sergey Lapin3a38a552013-01-14 03:46:50 +0000380 * @mtd: MTD device structure
381 * @buf: temporary buffer
382 * @td: descriptor for the bad block table
383 * @md: descriptor for the bad block table mirror
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200384 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000385 * Read the bad block table(s) for all chips starting at a given page. We
386 * assume that the bbt bits are in consecutive order.
387 */
388static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
389 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200390{
Scott Wood17fed142016-05-30 13:57:56 -0500391 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200392
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200393 /* Read the primary version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200394 if (td->options & NAND_BBT_VERSION) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000395 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Christian Hitz24e6ea42011-10-12 09:32:04 +0200396 mtd->writesize, td);
397 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Sergey Lapin3a38a552013-01-14 03:46:50 +0000398 pr_info("Bad block table at page %d, version 0x%02X\n",
399 td->pages[0], td->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200400 }
401
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200402 /* Read the mirror version, if available */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200403 if (md && (md->options & NAND_BBT_VERSION)) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000404 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
405 mtd->writesize, md);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200406 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Sergey Lapin3a38a552013-01-14 03:46:50 +0000407 pr_info("Bad block table at page %d, version 0x%02X\n",
408 md->pages[0], md->version[0]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200409 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200410}
411
Sergey Lapin3a38a552013-01-14 03:46:50 +0000412/* Scan a given block partially */
William Juul52c07962007-10-31 13:53:06 +0100413static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Sergey Lapin3a38a552013-01-14 03:46:50 +0000414 loff_t offs, uint8_t *buf, int numpages)
William Juul52c07962007-10-31 13:53:06 +0100415{
416 struct mtd_oob_ops ops;
417 int j, ret;
418
419 ops.ooblen = mtd->oobsize;
420 ops.oobbuf = buf;
421 ops.ooboffs = 0;
422 ops.datbuf = NULL;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000423 ops.mode = MTD_OPS_PLACE_OOB;
William Juul52c07962007-10-31 13:53:06 +0100424
Sergey Lapin3a38a552013-01-14 03:46:50 +0000425 for (j = 0; j < numpages; j++) {
William Juul52c07962007-10-31 13:53:06 +0100426 /*
Sergey Lapin3a38a552013-01-14 03:46:50 +0000427 * Read the full oob until read_oob is fixed to handle single
428 * byte reads for 16 bit buswidth.
William Juul52c07962007-10-31 13:53:06 +0100429 */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000430 ret = mtd_read_oob(mtd, offs, &ops);
431 /* Ignore ECC errors when checking for BBM */
432 if (ret && !mtd_is_bitflip_or_eccerr(ret))
William Juul52c07962007-10-31 13:53:06 +0100433 return ret;
434
435 if (check_short_pattern(buf, bd))
436 return 1;
437
438 offs += mtd->writesize;
439 }
440 return 0;
441}
442
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200443/**
444 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Sergey Lapin3a38a552013-01-14 03:46:50 +0000445 * @mtd: MTD device structure
446 * @buf: temporary buffer
447 * @bd: descriptor for the good/bad block search pattern
448 * @chip: create the table for a specific chip, -1 read all chips; applies only
449 * if NAND_BBT_PERCHIP option is set
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200450 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000451 * Create a bad block table by scanning the device for the given good/bad block
452 * identify pattern.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200453 */
William Juul52c07962007-10-31 13:53:06 +0100454static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
455 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200456{
Scott Wood17fed142016-05-30 13:57:56 -0500457 struct nand_chip *this = mtd_to_nand(mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200458 int i, numblocks, numpages;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200459 int startblock;
460 loff_t from;
William Juul52c07962007-10-31 13:53:06 +0100461
Sergey Lapin3a38a552013-01-14 03:46:50 +0000462 pr_info("Scanning device for bad blocks\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200463
Heiko Schocherf5895d12014-06-24 10:10:04 +0200464 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000465 numpages = 2;
Christian Hitz24e6ea42011-10-12 09:32:04 +0200466 else
Sergey Lapin3a38a552013-01-14 03:46:50 +0000467 numpages = 1;
William Juul52c07962007-10-31 13:53:06 +0100468
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200469 if (chip == -1) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200470 numblocks = mtd->size >> this->bbt_erase_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200471 startblock = 0;
472 from = 0;
473 } else {
474 if (chip >= this->numchips) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000475 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
William Juul52c07962007-10-31 13:53:06 +0100476 chip + 1, this->numchips);
477 return -EINVAL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200478 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200479 numblocks = this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200480 startblock = chip * numblocks;
481 numblocks += startblock;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200482 from = (loff_t)startblock << this->bbt_erase_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200483 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200484
Sergey Lapin3a38a552013-01-14 03:46:50 +0000485 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
486 from += mtd->erasesize - (mtd->writesize * numpages);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200487
Heiko Schocherf5895d12014-06-24 10:10:04 +0200488 for (i = startblock; i < numblocks; i++) {
William Juul52c07962007-10-31 13:53:06 +0100489 int ret;
490
Christian Hitz24e6ea42011-10-12 09:32:04 +0200491 BUG_ON(bd->options & NAND_BBT_NO_OOB);
492
Heiko Schocherf5895d12014-06-24 10:10:04 +0200493 ret = scan_block_fast(mtd, bd, from, buf, numpages);
William Juul52c07962007-10-31 13:53:06 +0100494 if (ret < 0)
495 return ret;
496
497 if (ret) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200498 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000499 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200500 i, (unsigned long long)from);
William Juul52c07962007-10-31 13:53:06 +0100501 mtd->ecc_stats.badblocks++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200502 }
William Juul52c07962007-10-31 13:53:06 +0100503
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200504 from += (1 << this->bbt_erase_shift);
505 }
William Juul52c07962007-10-31 13:53:06 +0100506 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200507}
508
509/**
510 * search_bbt - [GENERIC] scan the device for a specific bad block table
Sergey Lapin3a38a552013-01-14 03:46:50 +0000511 * @mtd: MTD device structure
512 * @buf: temporary buffer
513 * @td: descriptor for the bad block table
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200514 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000515 * Read the bad block table by searching for a given ident pattern. Search is
516 * preformed either from the beginning up or from the end of the device
517 * downwards. The search starts always at the start of a block. If the option
518 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
519 * the bad block information of this chip. This is necessary to provide support
520 * for certain DOC devices.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200521 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000522 * The bbt ident pattern resides in the oob area of the first page in a block.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200523 */
William Juul52c07962007-10-31 13:53:06 +0100524static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200525{
Scott Wood17fed142016-05-30 13:57:56 -0500526 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200527 int i, chips;
Marek Vasut15324ad2011-09-30 12:13:22 +0200528 int startblock, block, dir;
William Juul52c07962007-10-31 13:53:06 +0100529 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200530 int bbtblocks;
William Juul52c07962007-10-31 13:53:06 +0100531 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200532
Sergey Lapin3a38a552013-01-14 03:46:50 +0000533 /* Search direction top -> down? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200534 if (td->options & NAND_BBT_LASTBLOCK) {
William Juul52c07962007-10-31 13:53:06 +0100535 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200536 dir = -1;
537 } else {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200538 startblock = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200539 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200540 }
541
Sergey Lapin3a38a552013-01-14 03:46:50 +0000542 /* Do we have a bbt per chip? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200543 if (td->options & NAND_BBT_PERCHIP) {
544 chips = this->numchips;
545 bbtblocks = this->chipsize >> this->bbt_erase_shift;
546 startblock &= bbtblocks - 1;
547 } else {
548 chips = 1;
549 bbtblocks = mtd->size >> this->bbt_erase_shift;
550 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200551
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200552 for (i = 0; i < chips; i++) {
553 /* Reset version information */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200554 td->version[i] = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200555 td->pages[i] = -1;
556 /* Scan the maximum number of blocks */
557 for (block = 0; block < td->maxblocks; block++) {
William Juul52c07962007-10-31 13:53:06 +0100558
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200559 int actblock = startblock + dir * block;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -0400560 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100561
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200562 /* Read first page */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000563 scan_read(mtd, buf, offs, mtd->writesize, td);
William Juul52c07962007-10-31 13:53:06 +0100564 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
565 td->pages[i] = actblock << blocktopage;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200566 if (td->options & NAND_BBT_VERSION) {
Christian Hitz24e6ea42011-10-12 09:32:04 +0200567 offs = bbt_get_ver_offs(mtd, td);
568 td->version[i] = buf[offs];
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200569 }
570 break;
571 }
572 }
573 startblock += this->chipsize >> this->bbt_erase_shift;
574 }
575 /* Check, if we found a bbt for each requested chip */
576 for (i = 0; i < chips; i++) {
577 if (td->pages[i] == -1)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000578 pr_warn("Bad block table not found for chip %d\n", i);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200579 else
Scott Wood3ea94ed2015-06-26 19:03:26 -0500580 pr_info("Bad block table found at page %d, version 0x%02X\n",
581 td->pages[i], td->version[i]);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200582 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200583 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200584}
585
586/**
587 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Sergey Lapin3a38a552013-01-14 03:46:50 +0000588 * @mtd: MTD device structure
589 * @buf: temporary buffer
590 * @td: descriptor for the bad block table
591 * @md: descriptor for the bad block table mirror
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200592 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000593 * Search and read the bad block table(s).
594 */
595static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
596 struct nand_bbt_descr *td,
597 struct nand_bbt_descr *md)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200598{
599 /* Search the primary table */
William Juul52c07962007-10-31 13:53:06 +0100600 search_bbt(mtd, buf, td);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200601
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200602 /* Search the mirror table */
603 if (md)
William Juul52c07962007-10-31 13:53:06 +0100604 search_bbt(mtd, buf, md);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200605}
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200606
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200607/**
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200608 * write_bbt - [GENERIC] (Re)write the bad block table
Sergey Lapin3a38a552013-01-14 03:46:50 +0000609 * @mtd: MTD device structure
610 * @buf: temporary buffer
611 * @td: descriptor for the bad block table
612 * @md: descriptor for the bad block table mirror
613 * @chipsel: selector for a specific chip, -1 for all
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200614 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000615 * (Re)write the bad block table.
616 */
William Juul52c07962007-10-31 13:53:06 +0100617static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
618 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
619 int chipsel)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200620{
Scott Wood17fed142016-05-30 13:57:56 -0500621 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200622 struct erase_info einfo;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200623 int i, res, chip = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200624 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200625 int nrchips, pageoffs, ooboffs;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200626 uint8_t msk[4];
627 uint8_t rcode = td->reserved_block_code;
628 size_t retlen, len = 0;
629 loff_t to;
William Juul52c07962007-10-31 13:53:06 +0100630 struct mtd_oob_ops ops;
631
632 ops.ooblen = mtd->oobsize;
633 ops.ooboffs = 0;
634 ops.datbuf = NULL;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000635 ops.mode = MTD_OPS_PLACE_OOB;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200636
637 if (!rcode)
638 rcode = 0xff;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000639 /* Write bad block table per chip rather than per device? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200640 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +0100641 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Sergey Lapin3a38a552013-01-14 03:46:50 +0000642 /* Full device write or specific chip? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200643 if (chipsel == -1) {
644 nrchips = this->numchips;
645 } else {
646 nrchips = chipsel + 1;
647 chip = chipsel;
648 }
649 } else {
William Juul52c07962007-10-31 13:53:06 +0100650 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200651 nrchips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200652 }
653
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200654 /* Loop through the chips */
655 for (; chip < nrchips; chip++) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000656 /*
657 * There was already a version of the table, reuse the page
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200658 * This applies for absolute placement too, as we have the
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200659 * page nr. in td->pages.
660 */
661 if (td->pages[chip] != -1) {
662 page = td->pages[chip];
663 goto write;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200664 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200665
Sergey Lapin3a38a552013-01-14 03:46:50 +0000666 /*
667 * Automatic placement of the bad block table. Search direction
668 * top -> down?
669 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200670 if (td->options & NAND_BBT_LASTBLOCK) {
671 startblock = numblocks * (chip + 1) - 1;
672 dir = -1;
673 } else {
674 startblock = chip * numblocks;
675 dir = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200676 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200677
678 for (i = 0; i < td->maxblocks; i++) {
679 int block = startblock + dir * i;
680 /* Check, if the block is bad */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200681 switch (bbt_get_entry(this, block)) {
682 case BBT_BLOCK_WORN:
683 case BBT_BLOCK_FACTORY_BAD:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200684 continue;
685 }
William Juul52c07962007-10-31 13:53:06 +0100686 page = block <<
687 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200688 /* Check, if the block is used by the mirror table */
689 if (!md || md->pages[chip] != page)
690 goto write;
691 }
Sergey Lapin3a38a552013-01-14 03:46:50 +0000692 pr_err("No space left to write bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200693 return -ENOSPC;
William Juul52c07962007-10-31 13:53:06 +0100694 write:
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200695
696 /* Set up shift count and masks for the flash table */
697 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juul52c07962007-10-31 13:53:06 +0100698 msk[2] = ~rcode;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200699 switch (bits) {
William Juul52c07962007-10-31 13:53:06 +0100700 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
701 msk[3] = 0x01;
702 break;
703 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
704 msk[3] = 0x03;
705 break;
706 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
707 msk[3] = 0x0f;
708 break;
709 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
710 msk[3] = 0xff;
711 break;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200712 default: return -EINVAL;
713 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200714
Sergey Lapin3a38a552013-01-14 03:46:50 +0000715 to = ((loff_t)page) << this->page_shift;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200716
Sergey Lapin3a38a552013-01-14 03:46:50 +0000717 /* Must we save the block contents? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200718 if (td->options & NAND_BBT_SAVECONTENT) {
719 /* Make it block aligned */
Scott Wood52ab7ce2016-05-30 13:57:58 -0500720 to &= ~(((loff_t)1 << this->bbt_erase_shift) - 1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200721 len = 1 << this->bbt_erase_shift;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000722 res = mtd_read(mtd, to, len, &retlen, buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200723 if (res < 0) {
724 if (retlen != len) {
Scott Wood3ea94ed2015-06-26 19:03:26 -0500725 pr_info("nand_bbt: error reading block for writing the bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200726 return res;
727 }
Scott Wood3ea94ed2015-06-26 19:03:26 -0500728 pr_warn("nand_bbt: ECC error while reading block for writing bad block table\n");
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200729 }
William Juul52c07962007-10-31 13:53:06 +0100730 /* Read oob data */
731 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
732 ops.oobbuf = &buf[len];
Sergey Lapin3a38a552013-01-14 03:46:50 +0000733 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
William Juul52c07962007-10-31 13:53:06 +0100734 if (res < 0 || ops.oobretlen != ops.ooblen)
735 goto outerr;
736
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200737 /* Calc the byte offset in the buffer */
738 pageoffs = page - (int)(to >> this->page_shift);
739 offs = pageoffs << this->page_shift;
740 /* Preset the bbt area with 0xff */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000741 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
William Juul52c07962007-10-31 13:53:06 +0100742 ooboffs = len + (pageoffs * mtd->oobsize);
743
Christian Hitz24e6ea42011-10-12 09:32:04 +0200744 } else if (td->options & NAND_BBT_NO_OOB) {
745 ooboffs = 0;
746 offs = td->len;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000747 /* The version byte */
Christian Hitz24e6ea42011-10-12 09:32:04 +0200748 if (td->options & NAND_BBT_VERSION)
749 offs++;
750 /* Calc length */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000751 len = (size_t)(numblocks >> sft);
Christian Hitz24e6ea42011-10-12 09:32:04 +0200752 len += offs;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000753 /* Make it page aligned! */
Christian Hitz24e6ea42011-10-12 09:32:04 +0200754 len = ALIGN(len, mtd->writesize);
755 /* Preset the buffer with 0xff */
756 memset(buf, 0xff, len);
757 /* Pattern is located at the begin of first page */
758 memcpy(buf, td->pattern, td->len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200759 } else {
760 /* Calc length */
Sergey Lapin3a38a552013-01-14 03:46:50 +0000761 len = (size_t)(numblocks >> sft);
762 /* Make it page aligned! */
Christian Hitz24e6ea42011-10-12 09:32:04 +0200763 len = ALIGN(len, mtd->writesize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200764 /* Preset the buffer with 0xff */
William Juul52c07962007-10-31 13:53:06 +0100765 memset(buf, 0xff, len +
766 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200767 offs = 0;
William Juul52c07962007-10-31 13:53:06 +0100768 ooboffs = len;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200769 /* Pattern is located in oob area of first page */
William Juul52c07962007-10-31 13:53:06 +0100770 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200771 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200772
William Juul52c07962007-10-31 13:53:06 +0100773 if (td->options & NAND_BBT_VERSION)
774 buf[ooboffs + td->veroffs] = td->version[chip];
775
Sergey Lapin3a38a552013-01-14 03:46:50 +0000776 /* Walk through the memory table */
Heiko Schocherf5895d12014-06-24 10:10:04 +0200777 for (i = 0; i < numblocks; i++) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200778 uint8_t dat;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200779 int sftcnt = (i << (3 - sft)) & sftmsk;
780 dat = bbt_get_entry(this, chip * numblocks + i);
781 /* Do not store the reserved bbt blocks! */
782 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200783 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200784
William Juul52c07962007-10-31 13:53:06 +0100785 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200786 einfo.mtd = mtd;
Sandeep Paulrajeab580c2009-10-30 13:51:23 -0400787 einfo.addr = to;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200788 einfo.len = 1 << this->bbt_erase_shift;
William Juul52c07962007-10-31 13:53:06 +0100789 res = nand_erase_nand(mtd, &einfo, 1);
790 if (res < 0)
791 goto outerr;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200792
Christian Hitz24e6ea42011-10-12 09:32:04 +0200793 res = scan_write_bbt(mtd, to, len, buf,
794 td->options & NAND_BBT_NO_OOB ? NULL :
795 &buf[len]);
William Juul52c07962007-10-31 13:53:06 +0100796 if (res < 0)
797 goto outerr;
798
Sergey Lapin3a38a552013-01-14 03:46:50 +0000799 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
800 (unsigned long long)to, td->version[chip]);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200801
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200802 /* Mark it as used */
803 td->pages[chip] = page;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200804 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200805 return 0;
William Juul52c07962007-10-31 13:53:06 +0100806
807 outerr:
Sergey Lapin3a38a552013-01-14 03:46:50 +0000808 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
William Juul52c07962007-10-31 13:53:06 +0100809 return res;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200810}
811
812/**
813 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Sergey Lapin3a38a552013-01-14 03:46:50 +0000814 * @mtd: MTD device structure
815 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200816 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000817 * The function creates a memory based bbt by scanning the device for
818 * manufacturer / software marked good / bad blocks.
819 */
William Juul52c07962007-10-31 13:53:06 +0100820static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200821{
Scott Wood17fed142016-05-30 13:57:56 -0500822 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200823
William Juul52c07962007-10-31 13:53:06 +0100824 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200825}
826
827/**
William Juul52c07962007-10-31 13:53:06 +0100828 * check_create - [GENERIC] create and write bbt(s) if necessary
Sergey Lapin3a38a552013-01-14 03:46:50 +0000829 * @mtd: MTD device structure
830 * @buf: temporary buffer
831 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200832 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000833 * The function checks the results of the previous call to read_bbt and creates
834 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
835 * for the chip/device. Update is necessary if one of the tables is missing or
836 * the version nr. of one table is less than the other.
837 */
William Juul52c07962007-10-31 13:53:06 +0100838static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200839{
Sergey Lapin3a38a552013-01-14 03:46:50 +0000840 int i, chips, writeops, create, chipsel, res, res2;
Scott Wood17fed142016-05-30 13:57:56 -0500841 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200842 struct nand_bbt_descr *td = this->bbt_td;
843 struct nand_bbt_descr *md = this->bbt_md;
844 struct nand_bbt_descr *rd, *rd2;
845
Sergey Lapin3a38a552013-01-14 03:46:50 +0000846 /* Do we have a bbt per chip? */
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200847 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200848 chips = this->numchips;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200849 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200850 chips = 1;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200851
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200852 for (i = 0; i < chips; i++) {
853 writeops = 0;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000854 create = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200855 rd = NULL;
856 rd2 = NULL;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000857 res = res2 = 0;
858 /* Per chip or per device? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200859 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000860 /* Mirrored table available? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200861 if (md) {
862 if (td->pages[i] == -1 && md->pages[i] == -1) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000863 create = 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200864 writeops = 0x03;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000865 } else if (td->pages[i] == -1) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200866 rd = md;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000867 writeops = 0x01;
868 } else if (md->pages[i] == -1) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200869 rd = td;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000870 writeops = 0x02;
871 } else if (td->version[i] == md->version[i]) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200872 rd = td;
873 if (!(td->options & NAND_BBT_VERSION))
874 rd2 = md;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000875 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200876 rd = td;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000877 writeops = 0x02;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200878 } else {
879 rd = md;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000880 writeops = 0x01;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200881 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200882 } else {
883 if (td->pages[i] == -1) {
Sergey Lapin3a38a552013-01-14 03:46:50 +0000884 create = 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200885 writeops = 0x01;
Sergey Lapin3a38a552013-01-14 03:46:50 +0000886 } else {
887 rd = td;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200888 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200889 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200890
Sergey Lapin3a38a552013-01-14 03:46:50 +0000891 if (create) {
892 /* Create the bad block table by scanning the device? */
893 if (!(td->options & NAND_BBT_CREATE))
894 continue;
895
896 /* Create the table in memory by scanning the chip(s) */
897 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
898 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200899
Sergey Lapin3a38a552013-01-14 03:46:50 +0000900 td->version[i] = 1;
901 if (md)
902 md->version[i] = 1;
903 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200904
Sergey Lapin3a38a552013-01-14 03:46:50 +0000905 /* Read back first? */
906 if (rd) {
907 res = read_abs_bbt(mtd, buf, rd, chipsel);
908 if (mtd_is_eccerr(res)) {
909 /* Mark table as invalid */
910 rd->pages[i] = -1;
911 rd->version[i] = 0;
912 i--;
913 continue;
914 }
915 }
916 /* If they weren't versioned, read both */
917 if (rd2) {
918 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
919 if (mtd_is_eccerr(res2)) {
920 /* Mark table as invalid */
921 rd2->pages[i] = -1;
922 rd2->version[i] = 0;
923 i--;
924 continue;
925 }
926 }
927
928 /* Scrub the flash table(s)? */
929 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
930 writeops = 0x03;
931
932 /* Update version numbers before writing */
933 if (md) {
934 td->version[i] = max(td->version[i], md->version[i]);
935 md->version[i] = td->version[i];
936 }
937
938 /* Write the bad block table to the device? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200939 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100940 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200941 if (res < 0)
942 return res;
943 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200944
Sergey Lapin3a38a552013-01-14 03:46:50 +0000945 /* Write the mirror bad block table to the device? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200946 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100947 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200948 if (res < 0)
949 return res;
950 }
951 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200952 return 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200953}
954
955/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200956 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Sergey Lapin3a38a552013-01-14 03:46:50 +0000957 * @mtd: MTD device structure
958 * @td: bad block table descriptor
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200959 *
Sergey Lapin3a38a552013-01-14 03:46:50 +0000960 * The bad block table regions are marked as "bad" to prevent accidental
961 * erasures / writes. The regions are identified by the mark 0x02.
962 */
William Juul52c07962007-10-31 13:53:06 +0100963static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200964{
Scott Wood17fed142016-05-30 13:57:56 -0500965 struct nand_chip *this = mtd_to_nand(mtd);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200966 int i, j, chips, block, nrblocks, update;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200967 uint8_t oldval;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200968
Sergey Lapin3a38a552013-01-14 03:46:50 +0000969 /* Do we have a bbt per chip? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200970 if (td->options & NAND_BBT_PERCHIP) {
971 chips = this->numchips;
972 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
973 } else {
974 chips = 1;
975 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200976 }
977
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200978 for (i = 0; i < chips; i++) {
979 if ((td->options & NAND_BBT_ABSPAGE) ||
980 !(td->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +0100981 if (td->pages[i] == -1)
982 continue;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200983 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200984 oldval = bbt_get_entry(this, block);
985 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
986 if ((oldval != BBT_BLOCK_RESERVED) &&
987 td->reserved_block_code)
988 nand_update_bbt(mtd, (loff_t)block <<
989 this->bbt_erase_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200990 continue;
991 }
992 update = 0;
993 if (td->options & NAND_BBT_LASTBLOCK)
994 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +0200995 else
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200996 block = i * nrblocks;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +0200997 for (j = 0; j < td->maxblocks; j++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200998 oldval = bbt_get_entry(this, block);
999 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1000 if (oldval != BBT_BLOCK_RESERVED)
William Juul52c07962007-10-31 13:53:06 +01001001 update = 1;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001002 block++;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001003 }
Sergey Lapin3a38a552013-01-14 03:46:50 +00001004 /*
1005 * If we want reserved blocks to be recorded to flash, and some
1006 * new ones have been marked, then we need to update the stored
1007 * bbts. This should only happen once.
1008 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001009 if (update && td->reserved_block_code)
Heiko Schocherf5895d12014-06-24 10:10:04 +02001010 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1011 this->bbt_erase_shift);
Christian Hitz24e6ea42011-10-12 09:32:04 +02001012 }
1013}
1014
1015/**
1016 * verify_bbt_descr - verify the bad block description
Sergey Lapin3a38a552013-01-14 03:46:50 +00001017 * @mtd: MTD device structure
1018 * @bd: the table to verify
Christian Hitz24e6ea42011-10-12 09:32:04 +02001019 *
1020 * This functions performs a few sanity checks on the bad block description
1021 * table.
1022 */
1023static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1024{
Scott Wood17fed142016-05-30 13:57:56 -05001025 struct nand_chip *this = mtd_to_nand(mtd);
Christian Hitz24e6ea42011-10-12 09:32:04 +02001026 u32 pattern_len;
1027 u32 bits;
1028 u32 table_size;
1029
1030 if (!bd)
1031 return;
1032
1033 pattern_len = bd->len;
1034 bits = bd->options & NAND_BBT_NRBITS_MSK;
1035
Sergey Lapin3a38a552013-01-14 03:46:50 +00001036 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1037 !(this->bbt_options & NAND_BBT_USE_FLASH));
Christian Hitz24e6ea42011-10-12 09:32:04 +02001038 BUG_ON(!bits);
1039
1040 if (bd->options & NAND_BBT_VERSION)
1041 pattern_len++;
1042
1043 if (bd->options & NAND_BBT_NO_OOB) {
Sergey Lapin3a38a552013-01-14 03:46:50 +00001044 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1045 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Christian Hitz24e6ea42011-10-12 09:32:04 +02001046 BUG_ON(bd->offs);
1047 if (bd->options & NAND_BBT_VERSION)
1048 BUG_ON(bd->veroffs != bd->len);
1049 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001050 }
Christian Hitz24e6ea42011-10-12 09:32:04 +02001051
1052 if (bd->options & NAND_BBT_PERCHIP)
1053 table_size = this->chipsize >> this->bbt_erase_shift;
1054 else
1055 table_size = mtd->size >> this->bbt_erase_shift;
1056 table_size >>= 3;
1057 table_size *= bits;
1058 if (bd->options & NAND_BBT_NO_OOB)
1059 table_size += pattern_len;
1060 BUG_ON(table_size > (1 << this->bbt_erase_shift));
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001061}
1062
1063/**
1064 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Sergey Lapin3a38a552013-01-14 03:46:50 +00001065 * @mtd: MTD device structure
1066 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001067 *
Sergey Lapin3a38a552013-01-14 03:46:50 +00001068 * The function checks, if a bad block table(s) is/are already available. If
1069 * not it scans the device for manufacturer marked good / bad blocks and writes
1070 * the bad block table(s) to the selected place.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001071 *
Sergey Lapin3a38a552013-01-14 03:46:50 +00001072 * The bad block table memory is allocated here. It must be freed by calling
1073 * the nand_free_bbt function.
1074 */
Scott Wood52ab7ce2016-05-30 13:57:58 -05001075static int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001076{
Scott Wood17fed142016-05-30 13:57:56 -05001077 struct nand_chip *this = mtd_to_nand(mtd);
Scott Wood52ab7ce2016-05-30 13:57:58 -05001078 int len, res;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001079 uint8_t *buf;
1080 struct nand_bbt_descr *td = this->bbt_td;
1081 struct nand_bbt_descr *md = this->bbt_md;
1082
Scott Wood52ab7ce2016-05-30 13:57:58 -05001083 len = (mtd->size >> (this->bbt_erase_shift + 2)) ? : 1;
Sergey Lapin3a38a552013-01-14 03:46:50 +00001084 /*
1085 * Allocate memory (2bit per block) and clear the memory bad block
1086 * table.
1087 */
William Juul52c07962007-10-31 13:53:06 +01001088 this->bbt = kzalloc(len, GFP_KERNEL);
Sergey Lapin3a38a552013-01-14 03:46:50 +00001089 if (!this->bbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001090 return -ENOMEM;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001091
Sergey Lapin3a38a552013-01-14 03:46:50 +00001092 /*
1093 * If no primary table decriptor is given, scan the device to build a
1094 * memory based bad block table.
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001095 */
William Juul52c07962007-10-31 13:53:06 +01001096 if (!td) {
1097 if ((res = nand_memory_bbt(mtd, bd))) {
Sergey Lapin3a38a552013-01-14 03:46:50 +00001098 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
Scott Wood52ab7ce2016-05-30 13:57:58 -05001099 goto err;
William Juul52c07962007-10-31 13:53:06 +01001100 }
Scott Wood52ab7ce2016-05-30 13:57:58 -05001101 return 0;
William Juul52c07962007-10-31 13:53:06 +01001102 }
Christian Hitz24e6ea42011-10-12 09:32:04 +02001103 verify_bbt_descr(mtd, td);
1104 verify_bbt_descr(mtd, md);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001105
1106 /* Allocate a temporary buffer for one eraseblock incl. oob */
1107 len = (1 << this->bbt_erase_shift);
1108 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +01001109 buf = vmalloc(len);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001110 if (!buf) {
Scott Wood52ab7ce2016-05-30 13:57:58 -05001111 res = -ENOMEM;
1112 goto err;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001113 }
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001114
Sergey Lapin3a38a552013-01-14 03:46:50 +00001115 /* Is the bbt at a given page? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001116 if (td->options & NAND_BBT_ABSPAGE) {
Sergey Lapin3a38a552013-01-14 03:46:50 +00001117 read_abs_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001118 } else {
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001119 /* Search the bad block table using a pattern in oob */
Sergey Lapin3a38a552013-01-14 03:46:50 +00001120 search_read_bbts(mtd, buf, td, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001121 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001122
Sergey Lapin3a38a552013-01-14 03:46:50 +00001123 res = check_create(mtd, buf, bd);
Scott Wood52ab7ce2016-05-30 13:57:58 -05001124 if (res)
1125 goto err;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001126
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001127 /* Prevent the bbt regions from erasing / writing */
William Juul52c07962007-10-31 13:53:06 +01001128 mark_bbt_region(mtd, td);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001129 if (md)
William Juul52c07962007-10-31 13:53:06 +01001130 mark_bbt_region(mtd, md);
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001131
William Juul52c07962007-10-31 13:53:06 +01001132 vfree(buf);
Scott Wood52ab7ce2016-05-30 13:57:58 -05001133 return 0;
1134
1135err:
1136 kfree(this->bbt);
1137 this->bbt = NULL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001138 return res;
1139}
1140
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001141/**
Heiko Schocherf5895d12014-06-24 10:10:04 +02001142 * nand_update_bbt - update bad block table(s)
Sergey Lapin3a38a552013-01-14 03:46:50 +00001143 * @mtd: MTD device structure
1144 * @offs: the offset of the newly marked block
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001145 *
Sergey Lapin3a38a552013-01-14 03:46:50 +00001146 * The function updates the bad block table(s).
1147 */
Heiko Schocherf5895d12014-06-24 10:10:04 +02001148static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001149{
Scott Wood17fed142016-05-30 13:57:56 -05001150 struct nand_chip *this = mtd_to_nand(mtd);
Sergey Lapin3a38a552013-01-14 03:46:50 +00001151 int len, res = 0;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001152 int chip, chipsel;
1153 uint8_t *buf;
1154 struct nand_bbt_descr *td = this->bbt_td;
1155 struct nand_bbt_descr *md = this->bbt_md;
1156
1157 if (!this->bbt || !td)
1158 return -EINVAL;
1159
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001160 /* Allocate a temporary buffer for one eraseblock incl. oob */
1161 len = (1 << this->bbt_erase_shift);
1162 len += (len >> this->page_shift) * mtd->oobsize;
William Juul52c07962007-10-31 13:53:06 +01001163 buf = kmalloc(len, GFP_KERNEL);
Sergey Lapin3a38a552013-01-14 03:46:50 +00001164 if (!buf)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001165 return -ENOMEM;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001166
Sergey Lapin3a38a552013-01-14 03:46:50 +00001167 /* Do we have a bbt per chip? */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001168 if (td->options & NAND_BBT_PERCHIP) {
William Juul52c07962007-10-31 13:53:06 +01001169 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001170 chipsel = chip;
1171 } else {
1172 chip = 0;
1173 chipsel = -1;
1174 }
1175
1176 td->version[chip]++;
1177 if (md)
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001178 md->version[chip]++;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001179
Sergey Lapin3a38a552013-01-14 03:46:50 +00001180 /* Write the bad block table to the device? */
1181 if (td->options & NAND_BBT_WRITE) {
William Juul52c07962007-10-31 13:53:06 +01001182 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001183 if (res < 0)
1184 goto out;
1185 }
Sergey Lapin3a38a552013-01-14 03:46:50 +00001186 /* Write the mirror bad block table to the device? */
1187 if (md && (md->options & NAND_BBT_WRITE)) {
William Juul52c07962007-10-31 13:53:06 +01001188 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001189 }
1190
William Juul52c07962007-10-31 13:53:06 +01001191 out:
1192 kfree(buf);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001193 return res;
1194}
1195
Sergey Lapin3a38a552013-01-14 03:46:50 +00001196/*
1197 * Define some generic bad / good block scan pattern which are used
1198 * while scanning a device for factory marked good / bad blocks.
1199 */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001200static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1201
Sergey Lapin3a38a552013-01-14 03:46:50 +00001202/* Generic flash bbt descriptors */
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001203static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1204static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1205
1206static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001207 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001208 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1209 .offs = 8,
1210 .len = 4,
1211 .veroffs = 12,
Sergey Lapin3a38a552013-01-14 03:46:50 +00001212 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001213 .pattern = bbt_pattern
1214};
1215
1216static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001217 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001218 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1219 .offs = 8,
1220 .len = 4,
1221 .veroffs = 12,
Sergey Lapin3a38a552013-01-14 03:46:50 +00001222 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001223 .pattern = mirror_pattern
1224};
1225
Sergey Lapin3a38a552013-01-14 03:46:50 +00001226static struct nand_bbt_descr bbt_main_no_oob_descr = {
Christian Hitz24e6ea42011-10-12 09:32:04 +02001227 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1228 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1229 | NAND_BBT_NO_OOB,
1230 .len = 4,
1231 .veroffs = 4,
Sergey Lapin3a38a552013-01-14 03:46:50 +00001232 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitz24e6ea42011-10-12 09:32:04 +02001233 .pattern = bbt_pattern
1234};
1235
Sergey Lapin3a38a552013-01-14 03:46:50 +00001236static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Christian Hitz24e6ea42011-10-12 09:32:04 +02001237 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1238 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1239 | NAND_BBT_NO_OOB,
1240 .len = 4,
1241 .veroffs = 4,
Sergey Lapin3a38a552013-01-14 03:46:50 +00001242 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitz24e6ea42011-10-12 09:32:04 +02001243 .pattern = mirror_pattern
1244};
1245
Sergey Lapin3a38a552013-01-14 03:46:50 +00001246#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Christian Hitz24e6ea42011-10-12 09:32:04 +02001247/**
Sergey Lapin3a38a552013-01-14 03:46:50 +00001248 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1249 * @this: NAND chip to create descriptor for
Christian Hitz24e6ea42011-10-12 09:32:04 +02001250 *
1251 * This function allocates and initializes a nand_bbt_descr for BBM detection
Sergey Lapin3a38a552013-01-14 03:46:50 +00001252 * based on the properties of @this. The new descriptor is stored in
Christian Hitz24e6ea42011-10-12 09:32:04 +02001253 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1254 * passed to this function.
Christian Hitz24e6ea42011-10-12 09:32:04 +02001255 */
Sergey Lapin3a38a552013-01-14 03:46:50 +00001256static int nand_create_badblock_pattern(struct nand_chip *this)
Christian Hitz24e6ea42011-10-12 09:32:04 +02001257{
1258 struct nand_bbt_descr *bd;
1259 if (this->badblock_pattern) {
Sergey Lapin3a38a552013-01-14 03:46:50 +00001260 pr_warn("Bad block pattern already allocated; not replacing\n");
Christian Hitz24e6ea42011-10-12 09:32:04 +02001261 return -EINVAL;
1262 }
1263 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Sergey Lapin3a38a552013-01-14 03:46:50 +00001264 if (!bd)
Christian Hitz24e6ea42011-10-12 09:32:04 +02001265 return -ENOMEM;
Sergey Lapin3a38a552013-01-14 03:46:50 +00001266 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Christian Hitz24e6ea42011-10-12 09:32:04 +02001267 bd->offs = this->badblockpos;
1268 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1269 bd->pattern = scan_ff_pattern;
1270 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1271 this->badblock_pattern = bd;
1272 return 0;
1273}
1274
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001275/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001276 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Sergey Lapin3a38a552013-01-14 03:46:50 +00001277 * @mtd: MTD device structure
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001278 *
Sergey Lapin3a38a552013-01-14 03:46:50 +00001279 * This function selects the default bad block table support for the device and
1280 * calls the nand_scan_bbt function.
1281 */
William Juul52c07962007-10-31 13:53:06 +01001282int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001283{
Scott Wood17fed142016-05-30 13:57:56 -05001284 struct nand_chip *this = mtd_to_nand(mtd);
Scott Wood3ea94ed2015-06-26 19:03:26 -05001285 int ret;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001286
Sergey Lapin3a38a552013-01-14 03:46:50 +00001287 /* Is a flash based bad block table requested? */
1288 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001289 /* Use the default pattern descriptors */
1290 if (!this->bbt_td) {
Sergey Lapin3a38a552013-01-14 03:46:50 +00001291 if (this->bbt_options & NAND_BBT_NO_OOB) {
1292 this->bbt_td = &bbt_main_no_oob_descr;
1293 this->bbt_md = &bbt_mirror_no_oob_descr;
Christian Hitz24e6ea42011-10-12 09:32:04 +02001294 } else {
1295 this->bbt_td = &bbt_main_descr;
1296 this->bbt_md = &bbt_mirror_descr;
1297 }
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001298 }
1299 } else {
1300 this->bbt_td = NULL;
1301 this->bbt_md = NULL;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001302 }
Christian Hitz24e6ea42011-10-12 09:32:04 +02001303
Scott Wood3ea94ed2015-06-26 19:03:26 -05001304 if (!this->badblock_pattern) {
1305 ret = nand_create_badblock_pattern(this);
1306 if (ret)
1307 return ret;
1308 }
Christian Hitz24e6ea42011-10-12 09:32:04 +02001309
William Juul52c07962007-10-31 13:53:06 +01001310 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001311}
1312
1313/**
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -03001314 * nand_isreserved_bbt - [NAND Interface] Check if a block is reserved
1315 * @mtd: MTD device structure
1316 * @offs: offset in the device
1317 */
1318int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs)
1319{
Scott Wood17fed142016-05-30 13:57:56 -05001320 struct nand_chip *this = mtd_to_nand(mtd);
Ezequiel Garciafc9d57c2014-05-21 19:06:12 -03001321 int block;
1322
1323 block = (int)(offs >> this->bbt_erase_shift);
1324 return bbt_get_entry(this, block) == BBT_BLOCK_RESERVED;
1325}
1326
1327/**
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001328 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Sergey Lapin3a38a552013-01-14 03:46:50 +00001329 * @mtd: MTD device structure
1330 * @offs: offset in the device
1331 * @allowbbt: allow access to bad block table region
1332 */
William Juul52c07962007-10-31 13:53:06 +01001333int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001334{
Scott Wood17fed142016-05-30 13:57:56 -05001335 struct nand_chip *this = mtd_to_nand(mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001336 int block, res;
Wolfgang Denk7b9bc3a2005-09-14 23:53:32 +02001337
Heiko Schocherf5895d12014-06-24 10:10:04 +02001338 block = (int)(offs >> this->bbt_erase_shift);
1339 res = bbt_get_entry(this, block);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001340
Scott Wood3ea94ed2015-06-26 19:03:26 -05001341 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: (block %d) 0x%02x\n",
1342 (unsigned int)offs, block, res);
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001343
Heiko Schocherf5895d12014-06-24 10:10:04 +02001344 switch (res) {
1345 case BBT_BLOCK_GOOD:
William Juul52c07962007-10-31 13:53:06 +01001346 return 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001347 case BBT_BLOCK_WORN:
William Juul52c07962007-10-31 13:53:06 +01001348 return 1;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001349 case BBT_BLOCK_RESERVED:
William Juul52c07962007-10-31 13:53:06 +01001350 return allowbbt ? 0 : 1;
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +02001351 }
1352 return 1;
1353}
Heiko Schocherf5895d12014-06-24 10:10:04 +02001354
1355/**
1356 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1357 * @mtd: MTD device structure
1358 * @offs: offset of the bad block
1359 */
1360int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1361{
Scott Wood17fed142016-05-30 13:57:56 -05001362 struct nand_chip *this = mtd_to_nand(mtd);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001363 int block, ret = 0;
1364
1365 block = (int)(offs >> this->bbt_erase_shift);
1366
1367 /* Mark bad block in memory */
1368 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1369
1370 /* Update flash-based bad block table */
1371 if (this->bbt_options & NAND_BBT_USE_FLASH)
1372 ret = nand_update_bbt(mtd, offs);
1373
1374 return ret;
1375}