blob: 18c32af9aa4002851a46b798583b55fbba65ff16 [file] [log] [blame]
Wolfgang Denk932394a2005-08-17 12:55:25 +02001/*
2 * drivers/mtd/nand_bbt.c
3 *
4 * Overview:
5 * Bad block table support for the NAND driver
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02006 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00007 * Copyright © 2004 Thomas Gleixner (tglx@linutronix.de)
Wolfgang Denk932394a2005-08-17 12:55:25 +02008 *
Wolfgang Denk932394a2005-08-17 12:55:25 +02009 * 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 Denkac7eb8a2005-09-14 23:53:32 +020015 * When nand_scan_bbt is called, then it tries to find the bad block table
Christian Hitzff8a8a72011-10-12 09:32:04 +020016 * depending on the options in the BBT descriptor(s). If no flash based BBT
Sergey Lapindfe64e22013-01-14 03:46:50 +000017 * (NAND_BBT_USE_FLASH) is specified then the device is scanned for factory
Christian Hitzff8a8a72011-10-12 09:32:04 +020018 * 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 Lapindfe64e22013-01-14 03:46:50 +000025 * version number, then the mirror BBT is used to build the memory based BBT.
Wolfgang Denk932394a2005-08-17 12:55:25 +020026 * If the tables are not versioned, then we "or" the bad block information.
Christian Hitzff8a8a72011-10-12 09:32:04 +020027 * 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 Denkac7eb8a2005-09-14 23:53:32 +020029 * good / bad blocks and the bad block tables are created.
Wolfgang Denk932394a2005-08-17 12:55:25 +020030 *
Christian Hitzff8a8a72011-10-12 09:32:04 +020031 * For manufacturer created BBTs like the one found on M-SYS DOC devices
32 * the BBT is searched and read but never created
Wolfgang Denk932394a2005-08-17 12:55:25 +020033 *
Christian Hitzff8a8a72011-10-12 09:32:04 +020034 * The auto generated bad block table is located in the last good blocks
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020035 * of the device. The table is mirrored, so it can be updated eventually.
Christian Hitzff8a8a72011-10-12 09:32:04 +020036 * 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 Lapindfe64e22013-01-14 03:46:50 +000039 * 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 Denk932394a2005-08-17 12:55:25 +020042 *
43 * The table uses 2 bits per block
Christian Hitzff8a8a72011-10-12 09:32:04 +020044 * 11b: block is good
45 * 00b: block is factory marked bad
Wolfgang Denk53677ef2008-05-20 16:00:29 +020046 * 01b, 10b: block is marked bad due to wear
Wolfgang Denk932394a2005-08-17 12:55:25 +020047 *
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 Denkac7eb8a2005-09-14 23:53:32 +020053 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020054 * 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 Juulcfa460a2007-10-31 13:53:06 +010058 * - the space necessary for a bbt in FLASH does not exceed a block boundary
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020059 *
Wolfgang Denk932394a2005-08-17 12:55:25 +020060 */
61
Scott Wood27331062015-06-22 22:38:32 -050062#include <common.h>
63#include <malloc.h>
64#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020065#include <linux/mtd/mtd.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000066#include <linux/mtd/bbm.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020067#include <linux/mtd/nand.h>
Christian Hitzff8a8a72011-10-12 09:32:04 +020068#include <linux/mtd/nand_ecc.h>
69#include <linux/bitops.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000070#include <linux/string.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020071
72#define BBT_BLOCK_GOOD 0x00
73#define BBT_BLOCK_WORN 0x01
74#define BBT_BLOCK_RESERVED 0x02
75#define BBT_BLOCK_FACTORY_BAD 0x03
76
77#define BBT_ENTRY_MASK 0x03
78#define BBT_ENTRY_SHIFT 2
79
80static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
81
82static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
83{
84 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
85 entry >>= (block & BBT_ENTRY_MASK) * 2;
86 return entry & BBT_ENTRY_MASK;
87}
88
89static inline void bbt_mark_entry(struct nand_chip *chip, int block,
90 uint8_t mark)
91{
92 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
93 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
94}
Wolfgang Denk932394a2005-08-17 12:55:25 +020095
Christian Hitzff8a8a72011-10-12 09:32:04 +020096static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
97{
Sergey Lapindfe64e22013-01-14 03:46:50 +000098 if (memcmp(buf, td->pattern, td->len))
99 return -1;
100 return 0;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200101}
102
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200103/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200104 * check_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000105 * @buf: the buffer to search
106 * @len: the length of buffer to search
107 * @paglen: the pagelength
108 * @td: search pattern descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200109 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000110 * Check for a pattern at the given place. Used to search bad block tables and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200111 * good / bad block identifiers.
Sergey Lapindfe64e22013-01-14 03:46:50 +0000112 */
William Juulcfa460a2007-10-31 13:53:06 +0100113static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200114{
Christian Hitzff8a8a72011-10-12 09:32:04 +0200115 if (td->options & NAND_BBT_NO_OOB)
116 return check_pattern_no_oob(buf, td);
117
Wolfgang Denk932394a2005-08-17 12:55:25 +0200118 /* Compare the pattern */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200119 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Sergey Lapindfe64e22013-01-14 03:46:50 +0000120 return -1;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200121
Wolfgang Denk932394a2005-08-17 12:55:25 +0200122 return 0;
123}
124
125/**
William Juulcfa460a2007-10-31 13:53:06 +0100126 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000127 * @buf: the buffer to search
128 * @td: search pattern descriptor
William Juulcfa460a2007-10-31 13:53:06 +0100129 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000130 * Check for a pattern at the given place. Used to search bad block tables and
131 * good / bad block identifiers. Same as check_pattern, but no optional empty
132 * check.
133 */
William Juulcfa460a2007-10-31 13:53:06 +0100134static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
135{
William Juulcfa460a2007-10-31 13:53:06 +0100136 /* Compare the pattern */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000137 if (memcmp(buf + td->offs, td->pattern, td->len))
138 return -1;
William Juulcfa460a2007-10-31 13:53:06 +0100139 return 0;
140}
141
142/**
Christian Hitzff8a8a72011-10-12 09:32:04 +0200143 * add_marker_len - compute the length of the marker in data area
Sergey Lapindfe64e22013-01-14 03:46:50 +0000144 * @td: BBT descriptor used for computation
Christian Hitzff8a8a72011-10-12 09:32:04 +0200145 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000146 * The length will be 0 if the marker is located in OOB area.
Christian Hitzff8a8a72011-10-12 09:32:04 +0200147 */
148static u32 add_marker_len(struct nand_bbt_descr *td)
149{
150 u32 len;
151
152 if (!(td->options & NAND_BBT_NO_OOB))
153 return 0;
154
155 len = td->len;
156 if (td->options & NAND_BBT_VERSION)
157 len++;
158 return len;
159}
160
161/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200162 * read_bbt - [GENERIC] Read the bad block table starting from page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000163 * @mtd: MTD device structure
164 * @buf: temporary buffer
165 * @page: the starting page
166 * @num: the number of bbt descriptors to read
167 * @td: the bbt describtion table
Heiko Schocherff94bc42014-06-24 10:10:04 +0200168 * @offs: block number offset in the table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200169 *
170 * Read the bad block table starting from page.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200171 */
William Juulcfa460a2007-10-31 13:53:06 +0100172static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200173 struct nand_bbt_descr *td, int offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200174{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000175 int res, ret = 0, i, j, act = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200176 struct nand_chip *this = mtd->priv;
177 size_t retlen, len, totlen;
178 loff_t from;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200179 int bits = td->options & NAND_BBT_NRBITS_MSK;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000180 uint8_t msk = (uint8_t)((1 << bits) - 1);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200181 u32 marker_len;
182 int reserved_block_code = td->reserved_block_code;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200183
184 totlen = (num * bits) >> 3;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200185 marker_len = add_marker_len(td);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000186 from = ((loff_t)page) << this->page_shift;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200187
Wolfgang Denk932394a2005-08-17 12:55:25 +0200188 while (totlen) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000189 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Christian Hitzff8a8a72011-10-12 09:32:04 +0200190 if (marker_len) {
191 /*
192 * In case the BBT marker is not in the OOB area it
193 * will be just in the first page.
194 */
195 len -= marker_len;
196 from += marker_len;
197 marker_len = 0;
198 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000199 res = mtd_read(mtd, from, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200200 if (res < 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000201 if (mtd_is_eccerr(res)) {
202 pr_info("nand_bbt: ECC error in BBT at "
203 "0x%012llx\n", from & ~mtd->writesize);
204 return res;
205 } else if (mtd_is_bitflip(res)) {
206 pr_info("nand_bbt: corrected error in BBT at "
207 "0x%012llx\n", from & ~mtd->writesize);
208 ret = res;
209 } else {
210 pr_info("nand_bbt: error reading BBT\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200211 return res;
212 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200213 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200214
215 /* Analyse data */
216 for (i = 0; i < len; i++) {
217 uint8_t dat = buf[i];
Heiko Schocherff94bc42014-06-24 10:10:04 +0200218 for (j = 0; j < 8; j += bits, act++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200219 uint8_t tmp = (dat >> j) & msk;
220 if (tmp == msk)
221 continue;
William Juulcfa460a2007-10-31 13:53:06 +0100222 if (reserved_block_code && (tmp == reserved_block_code)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000223 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200224 (loff_t)(offs + act) <<
225 this->bbt_erase_shift);
226 bbt_mark_entry(this, offs + act,
227 BBT_BLOCK_RESERVED);
William Juulcfa460a2007-10-31 13:53:06 +0100228 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200229 continue;
230 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200231 /*
232 * Leave it for now, if it's matured we can
233 * move this message to pr_debug.
234 */
235 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
236 (loff_t)(offs + act) <<
237 this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000238 /* Factory marked bad or worn out? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200239 if (tmp == 0)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200240 bbt_mark_entry(this, offs + act,
241 BBT_BLOCK_FACTORY_BAD);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200242 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200243 bbt_mark_entry(this, offs + act,
244 BBT_BLOCK_WORN);
William Juulcfa460a2007-10-31 13:53:06 +0100245 mtd->ecc_stats.badblocks++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200246 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200247 }
248 totlen -= len;
249 from += len;
250 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000251 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200252}
253
254/**
255 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000256 * @mtd: MTD device structure
257 * @buf: temporary buffer
258 * @td: descriptor for the bad block table
259 * @chip: read the table for a specific chip, -1 read all chips; applies only if
260 * NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200261 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000262 * Read the bad block table for all chips starting at a given page. We assume
263 * that the bbt bits are in consecutive order.
264 */
William Juulcfa460a2007-10-31 13:53:06 +0100265static int read_abs_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200266{
267 struct nand_chip *this = mtd->priv;
268 int res = 0, i;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200269
Wolfgang Denk932394a2005-08-17 12:55:25 +0200270 if (td->options & NAND_BBT_PERCHIP) {
271 int offs = 0;
272 for (i = 0; i < this->numchips; i++) {
273 if (chip == -1 || chip == i)
Christian Hitzff8a8a72011-10-12 09:32:04 +0200274 res = read_bbt(mtd, buf, td->pages[i],
275 this->chipsize >> this->bbt_erase_shift,
276 td, offs);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200277 if (res)
278 return res;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200279 offs += this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200280 }
281 } else {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200282 res = read_bbt(mtd, buf, td->pages[0],
283 mtd->size >> this->bbt_erase_shift, td, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200284 if (res)
285 return res;
286 }
287 return 0;
288}
289
Sergey Lapindfe64e22013-01-14 03:46:50 +0000290/* BBT marker is in the first page, no OOB */
291static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200292 struct nand_bbt_descr *td)
293{
294 size_t retlen;
295 size_t len;
296
297 len = td->len;
298 if (td->options & NAND_BBT_VERSION)
299 len++;
300
Sergey Lapindfe64e22013-01-14 03:46:50 +0000301 return mtd_read(mtd, offs, len, &retlen, buf);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200302}
303
Sergey Lapindfe64e22013-01-14 03:46:50 +0000304/**
305 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
306 * @mtd: MTD device structure
307 * @buf: temporary buffer
308 * @offs: offset at which to scan
309 * @len: length of data region to read
310 *
311 * Scan read data from data+OOB. May traverse multiple pages, interleaving
312 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
313 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
William Juulcfa460a2007-10-31 13:53:06 +0100314 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000315static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
William Juulcfa460a2007-10-31 13:53:06 +0100316 size_t len)
317{
318 struct mtd_oob_ops ops;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000319 int res, ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100320
Sergey Lapindfe64e22013-01-14 03:46:50 +0000321 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100322 ops.ooboffs = 0;
323 ops.ooblen = mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +0100324
Christian Hitzff8a8a72011-10-12 09:32:04 +0200325 while (len > 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000326 ops.datbuf = buf;
327 ops.len = min(len, (size_t)mtd->writesize);
328 ops.oobbuf = buf + ops.len;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200329
Sergey Lapindfe64e22013-01-14 03:46:50 +0000330 res = mtd_read_oob(mtd, offs, &ops);
331 if (res) {
332 if (!mtd_is_bitflip_or_eccerr(res))
Christian Hitzff8a8a72011-10-12 09:32:04 +0200333 return res;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000334 else if (mtd_is_eccerr(res) || !ret)
335 ret = res;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200336 }
337
338 buf += mtd->oobsize + mtd->writesize;
339 len -= mtd->writesize;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000340 offs += mtd->writesize;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200341 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000342 return ret;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200343}
344
Sergey Lapindfe64e22013-01-14 03:46:50 +0000345static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200346 size_t len, struct nand_bbt_descr *td)
347{
348 if (td->options & NAND_BBT_NO_OOB)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000349 return scan_read_data(mtd, buf, offs, td);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200350 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000351 return scan_read_oob(mtd, buf, offs, len);
William Juulcfa460a2007-10-31 13:53:06 +0100352}
353
Sergey Lapindfe64e22013-01-14 03:46:50 +0000354/* Scan write data with oob to flash */
William Juulcfa460a2007-10-31 13:53:06 +0100355static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
356 uint8_t *buf, uint8_t *oob)
357{
358 struct mtd_oob_ops ops;
359
Sergey Lapindfe64e22013-01-14 03:46:50 +0000360 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100361 ops.ooboffs = 0;
362 ops.ooblen = mtd->oobsize;
363 ops.datbuf = buf;
364 ops.oobbuf = oob;
365 ops.len = len;
366
Sergey Lapindfe64e22013-01-14 03:46:50 +0000367 return mtd_write_oob(mtd, offs, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100368}
369
Christian Hitzff8a8a72011-10-12 09:32:04 +0200370static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
371{
372 u32 ver_offs = td->veroffs;
373
374 if (!(td->options & NAND_BBT_NO_OOB))
375 ver_offs += mtd->writesize;
376 return ver_offs;
377}
378
Wolfgang Denk932394a2005-08-17 12:55:25 +0200379/**
380 * read_abs_bbts - [GENERIC] Read the bad block table(s) for all chips starting at a given page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000381 * @mtd: MTD device structure
382 * @buf: temporary buffer
383 * @td: descriptor for the bad block table
384 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200385 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000386 * Read the bad block table(s) for all chips starting at a given page. We
387 * assume that the bbt bits are in consecutive order.
388 */
389static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
390 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200391{
392 struct nand_chip *this = mtd->priv;
393
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200394 /* Read the primary version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200395 if (td->options & NAND_BBT_VERSION) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000396 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200397 mtd->writesize, td);
398 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000399 pr_info("Bad block table at page %d, version 0x%02X\n",
400 td->pages[0], td->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200401 }
402
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200403 /* Read the mirror version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200404 if (md && (md->options & NAND_BBT_VERSION)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000405 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
406 mtd->writesize, md);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200407 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000408 pr_info("Bad block table at page %d, version 0x%02X\n",
409 md->pages[0], md->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200410 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200411}
412
Sergey Lapindfe64e22013-01-14 03:46:50 +0000413/* Scan a given block partially */
William Juulcfa460a2007-10-31 13:53:06 +0100414static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000415 loff_t offs, uint8_t *buf, int numpages)
William Juulcfa460a2007-10-31 13:53:06 +0100416{
417 struct mtd_oob_ops ops;
418 int j, ret;
419
420 ops.ooblen = mtd->oobsize;
421 ops.oobbuf = buf;
422 ops.ooboffs = 0;
423 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000424 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100425
Sergey Lapindfe64e22013-01-14 03:46:50 +0000426 for (j = 0; j < numpages; j++) {
William Juulcfa460a2007-10-31 13:53:06 +0100427 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000428 * Read the full oob until read_oob is fixed to handle single
429 * byte reads for 16 bit buswidth.
William Juulcfa460a2007-10-31 13:53:06 +0100430 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000431 ret = mtd_read_oob(mtd, offs, &ops);
432 /* Ignore ECC errors when checking for BBM */
433 if (ret && !mtd_is_bitflip_or_eccerr(ret))
William Juulcfa460a2007-10-31 13:53:06 +0100434 return ret;
435
436 if (check_short_pattern(buf, bd))
437 return 1;
438
439 offs += mtd->writesize;
440 }
441 return 0;
442}
443
Wolfgang Denk932394a2005-08-17 12:55:25 +0200444/**
445 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000446 * @mtd: MTD device structure
447 * @buf: temporary buffer
448 * @bd: descriptor for the good/bad block search pattern
449 * @chip: create the table for a specific chip, -1 read all chips; applies only
450 * if NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200451 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000452 * Create a bad block table by scanning the device for the given good/bad block
453 * identify pattern.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200454 */
William Juulcfa460a2007-10-31 13:53:06 +0100455static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
456 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200457{
458 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200459 int i, numblocks, numpages;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200460 int startblock;
461 loff_t from;
William Juulcfa460a2007-10-31 13:53:06 +0100462
Sergey Lapindfe64e22013-01-14 03:46:50 +0000463 pr_info("Scanning device for bad blocks\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200464
Heiko Schocherff94bc42014-06-24 10:10:04 +0200465 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000466 numpages = 2;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200467 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000468 numpages = 1;
William Juulcfa460a2007-10-31 13:53:06 +0100469
Wolfgang Denk932394a2005-08-17 12:55:25 +0200470 if (chip == -1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200471 numblocks = mtd->size >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200472 startblock = 0;
473 from = 0;
474 } else {
475 if (chip >= this->numchips) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000476 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
William Juulcfa460a2007-10-31 13:53:06 +0100477 chip + 1, this->numchips);
478 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200479 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200480 numblocks = this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200481 startblock = chip * numblocks;
482 numblocks += startblock;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200483 from = (loff_t)startblock << this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200484 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200485
Sergey Lapindfe64e22013-01-14 03:46:50 +0000486 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
487 from += mtd->erasesize - (mtd->writesize * numpages);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200488
Heiko Schocherff94bc42014-06-24 10:10:04 +0200489 for (i = startblock; i < numblocks; i++) {
William Juulcfa460a2007-10-31 13:53:06 +0100490 int ret;
491
Christian Hitzff8a8a72011-10-12 09:32:04 +0200492 BUG_ON(bd->options & NAND_BBT_NO_OOB);
493
Heiko Schocherff94bc42014-06-24 10:10:04 +0200494 ret = scan_block_fast(mtd, bd, from, buf, numpages);
William Juulcfa460a2007-10-31 13:53:06 +0100495 if (ret < 0)
496 return ret;
497
498 if (ret) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200499 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000500 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200501 i, (unsigned long long)from);
William Juulcfa460a2007-10-31 13:53:06 +0100502 mtd->ecc_stats.badblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200503 }
William Juulcfa460a2007-10-31 13:53:06 +0100504
Wolfgang Denk932394a2005-08-17 12:55:25 +0200505 from += (1 << this->bbt_erase_shift);
506 }
William Juulcfa460a2007-10-31 13:53:06 +0100507 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200508}
509
510/**
511 * search_bbt - [GENERIC] scan the device for a specific bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000512 * @mtd: MTD device structure
513 * @buf: temporary buffer
514 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200515 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000516 * Read the bad block table by searching for a given ident pattern. Search is
517 * preformed either from the beginning up or from the end of the device
518 * downwards. The search starts always at the start of a block. If the option
519 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
520 * the bad block information of this chip. This is necessary to provide support
521 * for certain DOC devices.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200522 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000523 * The bbt ident pattern resides in the oob area of the first page in a block.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200524 */
William Juulcfa460a2007-10-31 13:53:06 +0100525static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200526{
527 struct nand_chip *this = mtd->priv;
528 int i, chips;
Marek Vasut89131e92011-09-30 12:13:22 +0200529 int startblock, block, dir;
William Juulcfa460a2007-10-31 13:53:06 +0100530 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200531 int bbtblocks;
William Juulcfa460a2007-10-31 13:53:06 +0100532 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200533
Sergey Lapindfe64e22013-01-14 03:46:50 +0000534 /* Search direction top -> down? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200535 if (td->options & NAND_BBT_LASTBLOCK) {
William Juulcfa460a2007-10-31 13:53:06 +0100536 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200537 dir = -1;
538 } else {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200539 startblock = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200540 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200541 }
542
Sergey Lapindfe64e22013-01-14 03:46:50 +0000543 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200544 if (td->options & NAND_BBT_PERCHIP) {
545 chips = this->numchips;
546 bbtblocks = this->chipsize >> this->bbt_erase_shift;
547 startblock &= bbtblocks - 1;
548 } else {
549 chips = 1;
550 bbtblocks = mtd->size >> this->bbt_erase_shift;
551 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200552
Wolfgang Denk932394a2005-08-17 12:55:25 +0200553 for (i = 0; i < chips; i++) {
554 /* Reset version information */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200555 td->version[i] = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200556 td->pages[i] = -1;
557 /* Scan the maximum number of blocks */
558 for (block = 0; block < td->maxblocks; block++) {
William Juulcfa460a2007-10-31 13:53:06 +0100559
Wolfgang Denk932394a2005-08-17 12:55:25 +0200560 int actblock = startblock + dir * block;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400561 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100562
Wolfgang Denk932394a2005-08-17 12:55:25 +0200563 /* Read first page */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000564 scan_read(mtd, buf, offs, mtd->writesize, td);
William Juulcfa460a2007-10-31 13:53:06 +0100565 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
566 td->pages[i] = actblock << blocktopage;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200567 if (td->options & NAND_BBT_VERSION) {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200568 offs = bbt_get_ver_offs(mtd, td);
569 td->version[i] = buf[offs];
Wolfgang Denk932394a2005-08-17 12:55:25 +0200570 }
571 break;
572 }
573 }
574 startblock += this->chipsize >> this->bbt_erase_shift;
575 }
576 /* Check, if we found a bbt for each requested chip */
577 for (i = 0; i < chips; i++) {
578 if (td->pages[i] == -1)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000579 pr_warn("Bad block table not found for chip %d\n", i);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200580 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200581 pr_info("Bad block table found at page %d, version "
582 "0x%02X\n", td->pages[i], td->version[i]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200583 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200584 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200585}
586
587/**
588 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000589 * @mtd: MTD device structure
590 * @buf: temporary buffer
591 * @td: descriptor for the bad block table
592 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200593 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000594 * Search and read the bad block table(s).
595 */
596static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
597 struct nand_bbt_descr *td,
598 struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200599{
600 /* Search the primary table */
William Juulcfa460a2007-10-31 13:53:06 +0100601 search_bbt(mtd, buf, td);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200602
Wolfgang Denk932394a2005-08-17 12:55:25 +0200603 /* Search the mirror table */
604 if (md)
William Juulcfa460a2007-10-31 13:53:06 +0100605 search_bbt(mtd, buf, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200606}
607
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200608/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200609 * write_bbt - [GENERIC] (Re)write the bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000610 * @mtd: MTD device structure
611 * @buf: temporary buffer
612 * @td: descriptor for the bad block table
613 * @md: descriptor for the bad block table mirror
614 * @chipsel: selector for a specific chip, -1 for all
Wolfgang Denk932394a2005-08-17 12:55:25 +0200615 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000616 * (Re)write the bad block table.
617 */
William Juulcfa460a2007-10-31 13:53:06 +0100618static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
619 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
620 int chipsel)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200621{
622 struct nand_chip *this = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200623 struct erase_info einfo;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200624 int i, res, chip = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200625 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200626 int nrchips, pageoffs, ooboffs;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200627 uint8_t msk[4];
628 uint8_t rcode = td->reserved_block_code;
629 size_t retlen, len = 0;
630 loff_t to;
William Juulcfa460a2007-10-31 13:53:06 +0100631 struct mtd_oob_ops ops;
632
633 ops.ooblen = mtd->oobsize;
634 ops.ooboffs = 0;
635 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000636 ops.mode = MTD_OPS_PLACE_OOB;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200637
638 if (!rcode)
639 rcode = 0xff;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000640 /* Write bad block table per chip rather than per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200641 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +0100642 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000643 /* Full device write or specific chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200644 if (chipsel == -1) {
645 nrchips = this->numchips;
646 } else {
647 nrchips = chipsel + 1;
648 chip = chipsel;
649 }
650 } else {
William Juulcfa460a2007-10-31 13:53:06 +0100651 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200652 nrchips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200653 }
654
Wolfgang Denk932394a2005-08-17 12:55:25 +0200655 /* Loop through the chips */
656 for (; chip < nrchips; chip++) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000657 /*
658 * There was already a version of the table, reuse the page
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200659 * This applies for absolute placement too, as we have the
Wolfgang Denk932394a2005-08-17 12:55:25 +0200660 * page nr. in td->pages.
661 */
662 if (td->pages[chip] != -1) {
663 page = td->pages[chip];
664 goto write;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200665 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200666
Sergey Lapindfe64e22013-01-14 03:46:50 +0000667 /*
668 * Automatic placement of the bad block table. Search direction
669 * top -> down?
670 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200671 if (td->options & NAND_BBT_LASTBLOCK) {
672 startblock = numblocks * (chip + 1) - 1;
673 dir = -1;
674 } else {
675 startblock = chip * numblocks;
676 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200677 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200678
679 for (i = 0; i < td->maxblocks; i++) {
680 int block = startblock + dir * i;
681 /* Check, if the block is bad */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200682 switch (bbt_get_entry(this, block)) {
683 case BBT_BLOCK_WORN:
684 case BBT_BLOCK_FACTORY_BAD:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200685 continue;
686 }
William Juulcfa460a2007-10-31 13:53:06 +0100687 page = block <<
688 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200689 /* Check, if the block is used by the mirror table */
690 if (!md || md->pages[chip] != page)
691 goto write;
692 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000693 pr_err("No space left to write bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200694 return -ENOSPC;
William Juulcfa460a2007-10-31 13:53:06 +0100695 write:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200696
697 /* Set up shift count and masks for the flash table */
698 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juulcfa460a2007-10-31 13:53:06 +0100699 msk[2] = ~rcode;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200700 switch (bits) {
William Juulcfa460a2007-10-31 13:53:06 +0100701 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
702 msk[3] = 0x01;
703 break;
704 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
705 msk[3] = 0x03;
706 break;
707 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
708 msk[3] = 0x0f;
709 break;
710 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
711 msk[3] = 0xff;
712 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200713 default: return -EINVAL;
714 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200715
Sergey Lapindfe64e22013-01-14 03:46:50 +0000716 to = ((loff_t)page) << this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200717
Sergey Lapindfe64e22013-01-14 03:46:50 +0000718 /* Must we save the block contents? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200719 if (td->options & NAND_BBT_SAVECONTENT) {
720 /* Make it block aligned */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000721 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200722 len = 1 << this->bbt_erase_shift;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000723 res = mtd_read(mtd, to, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200724 if (res < 0) {
725 if (retlen != len) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000726 pr_info("nand_bbt: error reading block "
727 "for writing the bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200728 return res;
729 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000730 pr_warn("nand_bbt: ECC error while reading "
731 "block for writing bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200732 }
William Juulcfa460a2007-10-31 13:53:06 +0100733 /* Read oob data */
734 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
735 ops.oobbuf = &buf[len];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000736 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100737 if (res < 0 || ops.oobretlen != ops.ooblen)
738 goto outerr;
739
Wolfgang Denk932394a2005-08-17 12:55:25 +0200740 /* Calc the byte offset in the buffer */
741 pageoffs = page - (int)(to >> this->page_shift);
742 offs = pageoffs << this->page_shift;
743 /* Preset the bbt area with 0xff */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000744 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
William Juulcfa460a2007-10-31 13:53:06 +0100745 ooboffs = len + (pageoffs * mtd->oobsize);
746
Christian Hitzff8a8a72011-10-12 09:32:04 +0200747 } else if (td->options & NAND_BBT_NO_OOB) {
748 ooboffs = 0;
749 offs = td->len;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000750 /* The version byte */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200751 if (td->options & NAND_BBT_VERSION)
752 offs++;
753 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000754 len = (size_t)(numblocks >> sft);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200755 len += offs;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000756 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200757 len = ALIGN(len, mtd->writesize);
758 /* Preset the buffer with 0xff */
759 memset(buf, 0xff, len);
760 /* Pattern is located at the begin of first page */
761 memcpy(buf, td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200762 } else {
763 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000764 len = (size_t)(numblocks >> sft);
765 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200766 len = ALIGN(len, mtd->writesize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200767 /* Preset the buffer with 0xff */
William Juulcfa460a2007-10-31 13:53:06 +0100768 memset(buf, 0xff, len +
769 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200770 offs = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100771 ooboffs = len;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200772 /* Pattern is located in oob area of first page */
William Juulcfa460a2007-10-31 13:53:06 +0100773 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200774 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200775
William Juulcfa460a2007-10-31 13:53:06 +0100776 if (td->options & NAND_BBT_VERSION)
777 buf[ooboffs + td->veroffs] = td->version[chip];
778
Sergey Lapindfe64e22013-01-14 03:46:50 +0000779 /* Walk through the memory table */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200780 for (i = 0; i < numblocks; i++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200781 uint8_t dat;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200782 int sftcnt = (i << (3 - sft)) & sftmsk;
783 dat = bbt_get_entry(this, chip * numblocks + i);
784 /* Do not store the reserved bbt blocks! */
785 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200786 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200787
William Juulcfa460a2007-10-31 13:53:06 +0100788 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200789 einfo.mtd = mtd;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400790 einfo.addr = to;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200791 einfo.len = 1 << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100792 res = nand_erase_nand(mtd, &einfo, 1);
793 if (res < 0)
794 goto outerr;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200795
Christian Hitzff8a8a72011-10-12 09:32:04 +0200796 res = scan_write_bbt(mtd, to, len, buf,
797 td->options & NAND_BBT_NO_OOB ? NULL :
798 &buf[len]);
William Juulcfa460a2007-10-31 13:53:06 +0100799 if (res < 0)
800 goto outerr;
801
Sergey Lapindfe64e22013-01-14 03:46:50 +0000802 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
803 (unsigned long long)to, td->version[chip]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200804
Wolfgang Denk932394a2005-08-17 12:55:25 +0200805 /* Mark it as used */
806 td->pages[chip] = page;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200807 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200808 return 0;
William Juulcfa460a2007-10-31 13:53:06 +0100809
810 outerr:
Sergey Lapindfe64e22013-01-14 03:46:50 +0000811 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
William Juulcfa460a2007-10-31 13:53:06 +0100812 return res;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200813}
814
815/**
816 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000817 * @mtd: MTD device structure
818 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200819 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000820 * The function creates a memory based bbt by scanning the device for
821 * manufacturer / software marked good / bad blocks.
822 */
William Juulcfa460a2007-10-31 13:53:06 +0100823static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200824{
825 struct nand_chip *this = mtd->priv;
826
William Juulcfa460a2007-10-31 13:53:06 +0100827 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200828}
829
830/**
William Juulcfa460a2007-10-31 13:53:06 +0100831 * check_create - [GENERIC] create and write bbt(s) if necessary
Sergey Lapindfe64e22013-01-14 03:46:50 +0000832 * @mtd: MTD device structure
833 * @buf: temporary buffer
834 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200835 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000836 * The function checks the results of the previous call to read_bbt and creates
837 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
838 * for the chip/device. Update is necessary if one of the tables is missing or
839 * the version nr. of one table is less than the other.
840 */
William Juulcfa460a2007-10-31 13:53:06 +0100841static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200842{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000843 int i, chips, writeops, create, chipsel, res, res2;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200844 struct nand_chip *this = mtd->priv;
845 struct nand_bbt_descr *td = this->bbt_td;
846 struct nand_bbt_descr *md = this->bbt_md;
847 struct nand_bbt_descr *rd, *rd2;
848
Sergey Lapindfe64e22013-01-14 03:46:50 +0000849 /* Do we have a bbt per chip? */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200850 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200851 chips = this->numchips;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200852 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200853 chips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200854
Wolfgang Denk932394a2005-08-17 12:55:25 +0200855 for (i = 0; i < chips; i++) {
856 writeops = 0;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000857 create = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200858 rd = NULL;
859 rd2 = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000860 res = res2 = 0;
861 /* Per chip or per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200862 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000863 /* Mirrored table available? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200864 if (md) {
865 if (td->pages[i] == -1 && md->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000866 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200867 writeops = 0x03;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000868 } else if (td->pages[i] == -1) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200869 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000870 writeops = 0x01;
871 } else if (md->pages[i] == -1) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200872 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000873 writeops = 0x02;
874 } else if (td->version[i] == md->version[i]) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200875 rd = td;
876 if (!(td->options & NAND_BBT_VERSION))
877 rd2 = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000878 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200879 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000880 writeops = 0x02;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200881 } else {
882 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000883 writeops = 0x01;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200884 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200885 } else {
886 if (td->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000887 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200888 writeops = 0x01;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000889 } else {
890 rd = td;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200891 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200892 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200893
Sergey Lapindfe64e22013-01-14 03:46:50 +0000894 if (create) {
895 /* Create the bad block table by scanning the device? */
896 if (!(td->options & NAND_BBT_CREATE))
897 continue;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200898
Sergey Lapindfe64e22013-01-14 03:46:50 +0000899 /* Create the table in memory by scanning the chip(s) */
900 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
901 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200902
Sergey Lapindfe64e22013-01-14 03:46:50 +0000903 td->version[i] = 1;
904 if (md)
905 md->version[i] = 1;
906 }
907
908 /* Read back first? */
909 if (rd) {
910 res = read_abs_bbt(mtd, buf, rd, chipsel);
911 if (mtd_is_eccerr(res)) {
912 /* Mark table as invalid */
913 rd->pages[i] = -1;
914 rd->version[i] = 0;
915 i--;
916 continue;
917 }
918 }
919 /* If they weren't versioned, read both */
920 if (rd2) {
921 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
922 if (mtd_is_eccerr(res2)) {
923 /* Mark table as invalid */
924 rd2->pages[i] = -1;
925 rd2->version[i] = 0;
926 i--;
927 continue;
928 }
929 }
930
931 /* Scrub the flash table(s)? */
932 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
933 writeops = 0x03;
934
935 /* Update version numbers before writing */
936 if (md) {
937 td->version[i] = max(td->version[i], md->version[i]);
938 md->version[i] = td->version[i];
939 }
940
941 /* Write the bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200942 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100943 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200944 if (res < 0)
945 return res;
946 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200947
Sergey Lapindfe64e22013-01-14 03:46:50 +0000948 /* Write the mirror bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200949 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100950 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200951 if (res < 0)
952 return res;
953 }
954 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200955 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200956}
957
958/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200959 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Sergey Lapindfe64e22013-01-14 03:46:50 +0000960 * @mtd: MTD device structure
961 * @td: bad block table descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200962 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000963 * The bad block table regions are marked as "bad" to prevent accidental
964 * erasures / writes. The regions are identified by the mark 0x02.
965 */
William Juulcfa460a2007-10-31 13:53:06 +0100966static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200967{
968 struct nand_chip *this = mtd->priv;
969 int i, j, chips, block, nrblocks, update;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200970 uint8_t oldval;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200971
Sergey Lapindfe64e22013-01-14 03:46:50 +0000972 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200973 if (td->options & NAND_BBT_PERCHIP) {
974 chips = this->numchips;
975 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
976 } else {
977 chips = 1;
978 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200979 }
980
Wolfgang Denk932394a2005-08-17 12:55:25 +0200981 for (i = 0; i < chips; i++) {
982 if ((td->options & NAND_BBT_ABSPAGE) ||
983 !(td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100984 if (td->pages[i] == -1)
985 continue;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200986 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200987 oldval = bbt_get_entry(this, block);
988 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
989 if ((oldval != BBT_BLOCK_RESERVED) &&
990 td->reserved_block_code)
991 nand_update_bbt(mtd, (loff_t)block <<
992 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200993 continue;
994 }
995 update = 0;
996 if (td->options & NAND_BBT_LASTBLOCK)
997 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200998 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200999 block = i * nrblocks;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001000 for (j = 0; j < td->maxblocks; j++) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001001 oldval = bbt_get_entry(this, block);
1002 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1003 if (oldval != BBT_BLOCK_RESERVED)
William Juulcfa460a2007-10-31 13:53:06 +01001004 update = 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001005 block++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001006 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001007 /*
1008 * If we want reserved blocks to be recorded to flash, and some
1009 * new ones have been marked, then we need to update the stored
1010 * bbts. This should only happen once.
1011 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001012 if (update && td->reserved_block_code)
Heiko Schocherff94bc42014-06-24 10:10:04 +02001013 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1014 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001015 }
1016}
1017
1018/**
Christian Hitzff8a8a72011-10-12 09:32:04 +02001019 * verify_bbt_descr - verify the bad block description
Sergey Lapindfe64e22013-01-14 03:46:50 +00001020 * @mtd: MTD device structure
1021 * @bd: the table to verify
Christian Hitzff8a8a72011-10-12 09:32:04 +02001022 *
1023 * This functions performs a few sanity checks on the bad block description
1024 * table.
1025 */
1026static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1027{
1028 struct nand_chip *this = mtd->priv;
1029 u32 pattern_len;
1030 u32 bits;
1031 u32 table_size;
1032
1033 if (!bd)
1034 return;
1035
1036 pattern_len = bd->len;
1037 bits = bd->options & NAND_BBT_NRBITS_MSK;
1038
Sergey Lapindfe64e22013-01-14 03:46:50 +00001039 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1040 !(this->bbt_options & NAND_BBT_USE_FLASH));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001041 BUG_ON(!bits);
1042
1043 if (bd->options & NAND_BBT_VERSION)
1044 pattern_len++;
1045
1046 if (bd->options & NAND_BBT_NO_OOB) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001047 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1048 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001049 BUG_ON(bd->offs);
1050 if (bd->options & NAND_BBT_VERSION)
1051 BUG_ON(bd->veroffs != bd->len);
1052 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1053 }
1054
1055 if (bd->options & NAND_BBT_PERCHIP)
1056 table_size = this->chipsize >> this->bbt_erase_shift;
1057 else
1058 table_size = mtd->size >> this->bbt_erase_shift;
1059 table_size >>= 3;
1060 table_size *= bits;
1061 if (bd->options & NAND_BBT_NO_OOB)
1062 table_size += pattern_len;
1063 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1064}
1065
1066/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02001067 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001068 * @mtd: MTD device structure
1069 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +02001070 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001071 * The function checks, if a bad block table(s) is/are already available. If
1072 * not it scans the device for manufacturer marked good / bad blocks and writes
1073 * the bad block table(s) to the selected place.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001074 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001075 * The bad block table memory is allocated here. It must be freed by calling
1076 * the nand_free_bbt function.
1077 */
William Juulcfa460a2007-10-31 13:53:06 +01001078int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001079{
1080 struct nand_chip *this = mtd->priv;
1081 int len, res = 0;
1082 uint8_t *buf;
1083 struct nand_bbt_descr *td = this->bbt_td;
1084 struct nand_bbt_descr *md = this->bbt_md;
1085
1086 len = mtd->size >> (this->bbt_erase_shift + 2);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001087 /*
1088 * Allocate memory (2bit per block) and clear the memory bad block
1089 * table.
1090 */
William Juulcfa460a2007-10-31 13:53:06 +01001091 this->bbt = kzalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001092 if (!this->bbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001093 return -ENOMEM;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001094
Sergey Lapindfe64e22013-01-14 03:46:50 +00001095 /*
1096 * If no primary table decriptor is given, scan the device to build a
1097 * memory based bad block table.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001098 */
William Juulcfa460a2007-10-31 13:53:06 +01001099 if (!td) {
1100 if ((res = nand_memory_bbt(mtd, bd))) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001101 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
William Juulcfa460a2007-10-31 13:53:06 +01001102 kfree(this->bbt);
1103 this->bbt = NULL;
1104 }
1105 return res;
1106 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001107 verify_bbt_descr(mtd, td);
1108 verify_bbt_descr(mtd, md);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001109
1110 /* Allocate a temporary buffer for one eraseblock incl. oob */
1111 len = (1 << this->bbt_erase_shift);
1112 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001113 buf = vmalloc(len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001114 if (!buf) {
William Juulcfa460a2007-10-31 13:53:06 +01001115 kfree(this->bbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001116 this->bbt = NULL;
1117 return -ENOMEM;
1118 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001119
Sergey Lapindfe64e22013-01-14 03:46:50 +00001120 /* Is the bbt at a given page? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001121 if (td->options & NAND_BBT_ABSPAGE) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001122 read_abs_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001123 } else {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001124 /* Search the bad block table using a pattern in oob */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001125 search_read_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001126 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001127
Sergey Lapindfe64e22013-01-14 03:46:50 +00001128 res = check_create(mtd, buf, bd);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001129
Wolfgang Denk932394a2005-08-17 12:55:25 +02001130 /* Prevent the bbt regions from erasing / writing */
William Juulcfa460a2007-10-31 13:53:06 +01001131 mark_bbt_region(mtd, td);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001132 if (md)
William Juulcfa460a2007-10-31 13:53:06 +01001133 mark_bbt_region(mtd, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001134
William Juulcfa460a2007-10-31 13:53:06 +01001135 vfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001136 return res;
1137}
1138
Wolfgang Denk932394a2005-08-17 12:55:25 +02001139/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001140 * nand_update_bbt - update bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001141 * @mtd: MTD device structure
1142 * @offs: the offset of the newly marked block
Wolfgang Denk932394a2005-08-17 12:55:25 +02001143 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001144 * The function updates the bad block table(s).
1145 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001146static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001147{
1148 struct nand_chip *this = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001149 int len, res = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001150 int chip, chipsel;
1151 uint8_t *buf;
1152 struct nand_bbt_descr *td = this->bbt_td;
1153 struct nand_bbt_descr *md = this->bbt_md;
1154
1155 if (!this->bbt || !td)
1156 return -EINVAL;
1157
Wolfgang Denk932394a2005-08-17 12:55:25 +02001158 /* Allocate a temporary buffer for one eraseblock incl. oob */
1159 len = (1 << this->bbt_erase_shift);
1160 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001161 buf = kmalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001162 if (!buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001163 return -ENOMEM;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001164
Sergey Lapindfe64e22013-01-14 03:46:50 +00001165 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001166 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +01001167 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001168 chipsel = chip;
1169 } else {
1170 chip = 0;
1171 chipsel = -1;
1172 }
1173
1174 td->version[chip]++;
1175 if (md)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001176 md->version[chip]++;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001177
Sergey Lapindfe64e22013-01-14 03:46:50 +00001178 /* Write the bad block table to the device? */
1179 if (td->options & NAND_BBT_WRITE) {
William Juulcfa460a2007-10-31 13:53:06 +01001180 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001181 if (res < 0)
1182 goto out;
1183 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001184 /* Write the mirror bad block table to the device? */
1185 if (md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001186 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001187 }
1188
William Juulcfa460a2007-10-31 13:53:06 +01001189 out:
1190 kfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001191 return res;
1192}
1193
Sergey Lapindfe64e22013-01-14 03:46:50 +00001194/*
1195 * Define some generic bad / good block scan pattern which are used
1196 * while scanning a device for factory marked good / bad blocks.
1197 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001198static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1199
Sergey Lapindfe64e22013-01-14 03:46:50 +00001200/* Generic flash bbt descriptors */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001201static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1202static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1203
1204static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001205 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001206 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1207 .offs = 8,
1208 .len = 4,
1209 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001210 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001211 .pattern = bbt_pattern
1212};
1213
1214static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001215 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001216 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1217 .offs = 8,
1218 .len = 4,
1219 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001220 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001221 .pattern = mirror_pattern
1222};
1223
Sergey Lapindfe64e22013-01-14 03:46:50 +00001224static struct nand_bbt_descr bbt_main_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001225 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1226 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1227 | NAND_BBT_NO_OOB,
1228 .len = 4,
1229 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001230 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001231 .pattern = bbt_pattern
1232};
1233
Sergey Lapindfe64e22013-01-14 03:46:50 +00001234static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001235 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1236 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1237 | NAND_BBT_NO_OOB,
1238 .len = 4,
1239 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001240 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001241 .pattern = mirror_pattern
1242};
1243
Sergey Lapindfe64e22013-01-14 03:46:50 +00001244#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001245/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001246 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1247 * @this: NAND chip to create descriptor for
Christian Hitzff8a8a72011-10-12 09:32:04 +02001248 *
1249 * This function allocates and initializes a nand_bbt_descr for BBM detection
Sergey Lapindfe64e22013-01-14 03:46:50 +00001250 * based on the properties of @this. The new descriptor is stored in
Christian Hitzff8a8a72011-10-12 09:32:04 +02001251 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1252 * passed to this function.
Christian Hitzff8a8a72011-10-12 09:32:04 +02001253 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001254static int nand_create_badblock_pattern(struct nand_chip *this)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001255{
1256 struct nand_bbt_descr *bd;
1257 if (this->badblock_pattern) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001258 pr_warn("Bad block pattern already allocated; not replacing\n");
Christian Hitzff8a8a72011-10-12 09:32:04 +02001259 return -EINVAL;
1260 }
1261 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001262 if (!bd)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001263 return -ENOMEM;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001264 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001265 bd->offs = this->badblockpos;
1266 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1267 bd->pattern = scan_ff_pattern;
1268 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1269 this->badblock_pattern = bd;
1270 return 0;
1271}
1272
Wolfgang Denk932394a2005-08-17 12:55:25 +02001273/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001274 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Sergey Lapindfe64e22013-01-14 03:46:50 +00001275 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02001276 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001277 * This function selects the default bad block table support for the device and
1278 * calls the nand_scan_bbt function.
1279 */
William Juulcfa460a2007-10-31 13:53:06 +01001280int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001281{
1282 struct nand_chip *this = mtd->priv;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001283
Sergey Lapindfe64e22013-01-14 03:46:50 +00001284 /* Is a flash based bad block table requested? */
1285 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001286 /* Use the default pattern descriptors */
1287 if (!this->bbt_td) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001288 if (this->bbt_options & NAND_BBT_NO_OOB) {
1289 this->bbt_td = &bbt_main_no_oob_descr;
1290 this->bbt_md = &bbt_mirror_no_oob_descr;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001291 } else {
1292 this->bbt_td = &bbt_main_descr;
1293 this->bbt_md = &bbt_mirror_descr;
1294 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001295 }
1296 } else {
1297 this->bbt_td = NULL;
1298 this->bbt_md = NULL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001299 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001300
1301 if (!this->badblock_pattern)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001302 nand_create_badblock_pattern(this);
Christian Hitzff8a8a72011-10-12 09:32:04 +02001303
William Juulcfa460a2007-10-31 13:53:06 +01001304 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001305}
1306
1307/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001308 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00001309 * @mtd: MTD device structure
1310 * @offs: offset in the device
1311 * @allowbbt: allow access to bad block table region
1312 */
William Juulcfa460a2007-10-31 13:53:06 +01001313int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001314{
1315 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001316 int block, res;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001317
Heiko Schocherff94bc42014-06-24 10:10:04 +02001318 block = (int)(offs >> this->bbt_erase_shift);
1319 res = bbt_get_entry(this, block);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001320
Heiko Schocherff94bc42014-06-24 10:10:04 +02001321 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1322 "(block %d) 0x%02x\n",
1323 (unsigned int)offs, block, res);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001324
Heiko Schocherff94bc42014-06-24 10:10:04 +02001325 switch (res) {
1326 case BBT_BLOCK_GOOD:
William Juulcfa460a2007-10-31 13:53:06 +01001327 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001328 case BBT_BLOCK_WORN:
William Juulcfa460a2007-10-31 13:53:06 +01001329 return 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001330 case BBT_BLOCK_RESERVED:
William Juulcfa460a2007-10-31 13:53:06 +01001331 return allowbbt ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001332 }
1333 return 1;
1334}
Heiko Schocherff94bc42014-06-24 10:10:04 +02001335
1336/**
1337 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1338 * @mtd: MTD device structure
1339 * @offs: offset of the bad block
1340 */
1341int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1342{
1343 struct nand_chip *this = mtd->priv;
1344 int block, ret = 0;
1345
1346 block = (int)(offs >> this->bbt_erase_shift);
1347
1348 /* Mark bad block in memory */
1349 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1350
1351 /* Update flash-based bad block table */
1352 if (this->bbt_options & NAND_BBT_USE_FLASH)
1353 ret = nand_update_bbt(mtd, offs);
1354
1355 return ret;
1356}
1357
1358EXPORT_SYMBOL(nand_scan_bbt);