blob: c8f28c792b2a3e21c919be0a725aca19fe794a28 [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
Heiko Schocherff94bc42014-06-24 10:10:04 +020062#define __UBOOT__
63#ifndef __UBOOT__
64#include <linux/slab.h>
65#include <linux/types.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020066#include <linux/mtd/mtd.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000067#include <linux/mtd/bbm.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020068#include <linux/mtd/nand.h>
Christian Hitzff8a8a72011-10-12 09:32:04 +020069#include <linux/mtd/nand_ecc.h>
70#include <linux/bitops.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020071#include <linux/delay.h>
72#include <linux/vmalloc.h>
73#include <linux/export.h>
Sergey Lapindfe64e22013-01-14 03:46:50 +000074#include <linux/string.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020075#else
76#include <common.h>
77#include <malloc.h>
78#include <linux/compat.h>
Wolfgang Denk932394a2005-08-17 12:55:25 +020079
Heiko Schocherff94bc42014-06-24 10:10:04 +020080 #include <linux/mtd/mtd.h>
81 #include <linux/mtd/bbm.h>
82 #include <linux/mtd/nand.h>
83 #include <linux/mtd/nand_ecc.h>
84 #include <linux/bitops.h>
85 #include <linux/string.h>
86#endif
87
88#define BBT_BLOCK_GOOD 0x00
89#define BBT_BLOCK_WORN 0x01
90#define BBT_BLOCK_RESERVED 0x02
91#define BBT_BLOCK_FACTORY_BAD 0x03
92
93#define BBT_ENTRY_MASK 0x03
94#define BBT_ENTRY_SHIFT 2
95
96static int nand_update_bbt(struct mtd_info *mtd, loff_t offs);
97
98static inline uint8_t bbt_get_entry(struct nand_chip *chip, int block)
99{
100 uint8_t entry = chip->bbt[block >> BBT_ENTRY_SHIFT];
101 entry >>= (block & BBT_ENTRY_MASK) * 2;
102 return entry & BBT_ENTRY_MASK;
103}
104
105static inline void bbt_mark_entry(struct nand_chip *chip, int block,
106 uint8_t mark)
107{
108 uint8_t msk = (mark & BBT_ENTRY_MASK) << ((block & BBT_ENTRY_MASK) * 2);
109 chip->bbt[block >> BBT_ENTRY_SHIFT] |= msk;
110}
Wolfgang Denk932394a2005-08-17 12:55:25 +0200111
Christian Hitzff8a8a72011-10-12 09:32:04 +0200112static int check_pattern_no_oob(uint8_t *buf, struct nand_bbt_descr *td)
113{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000114 if (memcmp(buf, td->pattern, td->len))
115 return -1;
116 return 0;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200117}
118
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200119/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200120 * check_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000121 * @buf: the buffer to search
122 * @len: the length of buffer to search
123 * @paglen: the pagelength
124 * @td: search pattern descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200125 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000126 * Check for a pattern at the given place. Used to search bad block tables and
Heiko Schocherff94bc42014-06-24 10:10:04 +0200127 * good / bad block identifiers.
Sergey Lapindfe64e22013-01-14 03:46:50 +0000128 */
William Juulcfa460a2007-10-31 13:53:06 +0100129static int check_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200130{
Christian Hitzff8a8a72011-10-12 09:32:04 +0200131 if (td->options & NAND_BBT_NO_OOB)
132 return check_pattern_no_oob(buf, td);
133
Wolfgang Denk932394a2005-08-17 12:55:25 +0200134 /* Compare the pattern */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200135 if (memcmp(buf + paglen + td->offs, td->pattern, td->len))
Sergey Lapindfe64e22013-01-14 03:46:50 +0000136 return -1;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200137
Wolfgang Denk932394a2005-08-17 12:55:25 +0200138 return 0;
139}
140
141/**
William Juulcfa460a2007-10-31 13:53:06 +0100142 * check_short_pattern - [GENERIC] check if a pattern is in the buffer
Sergey Lapindfe64e22013-01-14 03:46:50 +0000143 * @buf: the buffer to search
144 * @td: search pattern descriptor
William Juulcfa460a2007-10-31 13:53:06 +0100145 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000146 * Check for a pattern at the given place. Used to search bad block tables and
147 * good / bad block identifiers. Same as check_pattern, but no optional empty
148 * check.
149 */
William Juulcfa460a2007-10-31 13:53:06 +0100150static int check_short_pattern(uint8_t *buf, struct nand_bbt_descr *td)
151{
William Juulcfa460a2007-10-31 13:53:06 +0100152 /* Compare the pattern */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000153 if (memcmp(buf + td->offs, td->pattern, td->len))
154 return -1;
William Juulcfa460a2007-10-31 13:53:06 +0100155 return 0;
156}
157
158/**
Christian Hitzff8a8a72011-10-12 09:32:04 +0200159 * add_marker_len - compute the length of the marker in data area
Sergey Lapindfe64e22013-01-14 03:46:50 +0000160 * @td: BBT descriptor used for computation
Christian Hitzff8a8a72011-10-12 09:32:04 +0200161 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000162 * The length will be 0 if the marker is located in OOB area.
Christian Hitzff8a8a72011-10-12 09:32:04 +0200163 */
164static u32 add_marker_len(struct nand_bbt_descr *td)
165{
166 u32 len;
167
168 if (!(td->options & NAND_BBT_NO_OOB))
169 return 0;
170
171 len = td->len;
172 if (td->options & NAND_BBT_VERSION)
173 len++;
174 return len;
175}
176
177/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200178 * read_bbt - [GENERIC] Read the bad block table starting from page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000179 * @mtd: MTD device structure
180 * @buf: temporary buffer
181 * @page: the starting page
182 * @num: the number of bbt descriptors to read
183 * @td: the bbt describtion table
Heiko Schocherff94bc42014-06-24 10:10:04 +0200184 * @offs: block number offset in the table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200185 *
186 * Read the bad block table starting from page.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200187 */
William Juulcfa460a2007-10-31 13:53:06 +0100188static int read_bbt(struct mtd_info *mtd, uint8_t *buf, int page, int num,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200189 struct nand_bbt_descr *td, int offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200190{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000191 int res, ret = 0, i, j, act = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200192 struct nand_chip *this = mtd->priv;
193 size_t retlen, len, totlen;
194 loff_t from;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200195 int bits = td->options & NAND_BBT_NRBITS_MSK;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000196 uint8_t msk = (uint8_t)((1 << bits) - 1);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200197 u32 marker_len;
198 int reserved_block_code = td->reserved_block_code;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200199
200 totlen = (num * bits) >> 3;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200201 marker_len = add_marker_len(td);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000202 from = ((loff_t)page) << this->page_shift;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200203
Wolfgang Denk932394a2005-08-17 12:55:25 +0200204 while (totlen) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000205 len = min(totlen, (size_t)(1 << this->bbt_erase_shift));
Christian Hitzff8a8a72011-10-12 09:32:04 +0200206 if (marker_len) {
207 /*
208 * In case the BBT marker is not in the OOB area it
209 * will be just in the first page.
210 */
211 len -= marker_len;
212 from += marker_len;
213 marker_len = 0;
214 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000215 res = mtd_read(mtd, from, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200216 if (res < 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000217 if (mtd_is_eccerr(res)) {
218 pr_info("nand_bbt: ECC error in BBT at "
219 "0x%012llx\n", from & ~mtd->writesize);
220 return res;
221 } else if (mtd_is_bitflip(res)) {
222 pr_info("nand_bbt: corrected error in BBT at "
223 "0x%012llx\n", from & ~mtd->writesize);
224 ret = res;
225 } else {
226 pr_info("nand_bbt: error reading BBT\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200227 return res;
228 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200229 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200230
231 /* Analyse data */
232 for (i = 0; i < len; i++) {
233 uint8_t dat = buf[i];
Heiko Schocherff94bc42014-06-24 10:10:04 +0200234 for (j = 0; j < 8; j += bits, act++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200235 uint8_t tmp = (dat >> j) & msk;
236 if (tmp == msk)
237 continue;
William Juulcfa460a2007-10-31 13:53:06 +0100238 if (reserved_block_code && (tmp == reserved_block_code)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000239 pr_info("nand_read_bbt: reserved block at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200240 (loff_t)(offs + act) <<
241 this->bbt_erase_shift);
242 bbt_mark_entry(this, offs + act,
243 BBT_BLOCK_RESERVED);
William Juulcfa460a2007-10-31 13:53:06 +0100244 mtd->ecc_stats.bbtblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200245 continue;
246 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200247 /*
248 * Leave it for now, if it's matured we can
249 * move this message to pr_debug.
250 */
251 pr_info("nand_read_bbt: bad block at 0x%012llx\n",
252 (loff_t)(offs + act) <<
253 this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000254 /* Factory marked bad or worn out? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200255 if (tmp == 0)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200256 bbt_mark_entry(this, offs + act,
257 BBT_BLOCK_FACTORY_BAD);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200258 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200259 bbt_mark_entry(this, offs + act,
260 BBT_BLOCK_WORN);
William Juulcfa460a2007-10-31 13:53:06 +0100261 mtd->ecc_stats.badblocks++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200262 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200263 }
264 totlen -= len;
265 from += len;
266 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000267 return ret;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200268}
269
270/**
271 * read_abs_bbt - [GENERIC] Read the bad block table starting at a given page
Sergey Lapindfe64e22013-01-14 03:46:50 +0000272 * @mtd: MTD device structure
273 * @buf: temporary buffer
274 * @td: descriptor for the bad block table
275 * @chip: read the table for a specific chip, -1 read all chips; applies only if
276 * NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200277 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000278 * Read the bad block table for all chips starting at a given page. We assume
279 * that the bbt bits are in consecutive order.
280 */
William Juulcfa460a2007-10-31 13:53:06 +0100281static 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 +0200282{
283 struct nand_chip *this = mtd->priv;
284 int res = 0, i;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200285
Wolfgang Denk932394a2005-08-17 12:55:25 +0200286 if (td->options & NAND_BBT_PERCHIP) {
287 int offs = 0;
288 for (i = 0; i < this->numchips; i++) {
289 if (chip == -1 || chip == i)
Christian Hitzff8a8a72011-10-12 09:32:04 +0200290 res = read_bbt(mtd, buf, td->pages[i],
291 this->chipsize >> this->bbt_erase_shift,
292 td, offs);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200293 if (res)
294 return res;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200295 offs += this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200296 }
297 } else {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200298 res = read_bbt(mtd, buf, td->pages[0],
299 mtd->size >> this->bbt_erase_shift, td, 0);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200300 if (res)
301 return res;
302 }
303 return 0;
304}
305
Sergey Lapindfe64e22013-01-14 03:46:50 +0000306/* BBT marker is in the first page, no OOB */
307static int scan_read_data(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200308 struct nand_bbt_descr *td)
309{
310 size_t retlen;
311 size_t len;
312
313 len = td->len;
314 if (td->options & NAND_BBT_VERSION)
315 len++;
316
Sergey Lapindfe64e22013-01-14 03:46:50 +0000317 return mtd_read(mtd, offs, len, &retlen, buf);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200318}
319
Sergey Lapindfe64e22013-01-14 03:46:50 +0000320/**
321 * scan_read_oob - [GENERIC] Scan data+OOB region to buffer
322 * @mtd: MTD device structure
323 * @buf: temporary buffer
324 * @offs: offset at which to scan
325 * @len: length of data region to read
326 *
327 * Scan read data from data+OOB. May traverse multiple pages, interleaving
328 * page,OOB,page,OOB,... in buf. Completes transfer and returns the "strongest"
329 * ECC condition (error or bitflip). May quit on the first (non-ECC) error.
William Juulcfa460a2007-10-31 13:53:06 +0100330 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000331static int scan_read_oob(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
William Juulcfa460a2007-10-31 13:53:06 +0100332 size_t len)
333{
334 struct mtd_oob_ops ops;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000335 int res, ret = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100336
Sergey Lapindfe64e22013-01-14 03:46:50 +0000337 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100338 ops.ooboffs = 0;
339 ops.ooblen = mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +0100340
Christian Hitzff8a8a72011-10-12 09:32:04 +0200341 while (len > 0) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000342 ops.datbuf = buf;
343 ops.len = min(len, (size_t)mtd->writesize);
344 ops.oobbuf = buf + ops.len;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200345
Sergey Lapindfe64e22013-01-14 03:46:50 +0000346 res = mtd_read_oob(mtd, offs, &ops);
347 if (res) {
348 if (!mtd_is_bitflip_or_eccerr(res))
Christian Hitzff8a8a72011-10-12 09:32:04 +0200349 return res;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000350 else if (mtd_is_eccerr(res) || !ret)
351 ret = res;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200352 }
353
354 buf += mtd->oobsize + mtd->writesize;
355 len -= mtd->writesize;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000356 offs += mtd->writesize;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200357 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000358 return ret;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200359}
360
Sergey Lapindfe64e22013-01-14 03:46:50 +0000361static int scan_read(struct mtd_info *mtd, uint8_t *buf, loff_t offs,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200362 size_t len, struct nand_bbt_descr *td)
363{
364 if (td->options & NAND_BBT_NO_OOB)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000365 return scan_read_data(mtd, buf, offs, td);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200366 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000367 return scan_read_oob(mtd, buf, offs, len);
William Juulcfa460a2007-10-31 13:53:06 +0100368}
369
Sergey Lapindfe64e22013-01-14 03:46:50 +0000370/* Scan write data with oob to flash */
William Juulcfa460a2007-10-31 13:53:06 +0100371static int scan_write_bbt(struct mtd_info *mtd, loff_t offs, size_t len,
372 uint8_t *buf, uint8_t *oob)
373{
374 struct mtd_oob_ops ops;
375
Sergey Lapindfe64e22013-01-14 03:46:50 +0000376 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100377 ops.ooboffs = 0;
378 ops.ooblen = mtd->oobsize;
379 ops.datbuf = buf;
380 ops.oobbuf = oob;
381 ops.len = len;
382
Sergey Lapindfe64e22013-01-14 03:46:50 +0000383 return mtd_write_oob(mtd, offs, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100384}
385
Christian Hitzff8a8a72011-10-12 09:32:04 +0200386static u32 bbt_get_ver_offs(struct mtd_info *mtd, struct nand_bbt_descr *td)
387{
388 u32 ver_offs = td->veroffs;
389
390 if (!(td->options & NAND_BBT_NO_OOB))
391 ver_offs += mtd->writesize;
392 return ver_offs;
393}
394
Wolfgang Denk932394a2005-08-17 12:55:25 +0200395/**
396 * 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 +0000397 * @mtd: MTD device structure
398 * @buf: temporary buffer
399 * @td: descriptor for the bad block table
400 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200401 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000402 * Read the bad block table(s) for all chips starting at a given page. We
403 * assume that the bbt bits are in consecutive order.
404 */
405static void read_abs_bbts(struct mtd_info *mtd, uint8_t *buf,
406 struct nand_bbt_descr *td, struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200407{
408 struct nand_chip *this = mtd->priv;
409
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200410 /* Read the primary version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200411 if (td->options & NAND_BBT_VERSION) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000412 scan_read(mtd, buf, (loff_t)td->pages[0] << this->page_shift,
Christian Hitzff8a8a72011-10-12 09:32:04 +0200413 mtd->writesize, td);
414 td->version[0] = buf[bbt_get_ver_offs(mtd, td)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000415 pr_info("Bad block table at page %d, version 0x%02X\n",
416 td->pages[0], td->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200417 }
418
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200419 /* Read the mirror version, if available */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200420 if (md && (md->options & NAND_BBT_VERSION)) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000421 scan_read(mtd, buf, (loff_t)md->pages[0] << this->page_shift,
422 mtd->writesize, md);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200423 md->version[0] = buf[bbt_get_ver_offs(mtd, md)];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000424 pr_info("Bad block table at page %d, version 0x%02X\n",
425 md->pages[0], md->version[0]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200426 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200427}
428
Sergey Lapindfe64e22013-01-14 03:46:50 +0000429/* Scan a given block partially */
William Juulcfa460a2007-10-31 13:53:06 +0100430static int scan_block_fast(struct mtd_info *mtd, struct nand_bbt_descr *bd,
Sergey Lapindfe64e22013-01-14 03:46:50 +0000431 loff_t offs, uint8_t *buf, int numpages)
William Juulcfa460a2007-10-31 13:53:06 +0100432{
433 struct mtd_oob_ops ops;
434 int j, ret;
435
436 ops.ooblen = mtd->oobsize;
437 ops.oobbuf = buf;
438 ops.ooboffs = 0;
439 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000440 ops.mode = MTD_OPS_PLACE_OOB;
William Juulcfa460a2007-10-31 13:53:06 +0100441
Sergey Lapindfe64e22013-01-14 03:46:50 +0000442 for (j = 0; j < numpages; j++) {
William Juulcfa460a2007-10-31 13:53:06 +0100443 /*
Sergey Lapindfe64e22013-01-14 03:46:50 +0000444 * Read the full oob until read_oob is fixed to handle single
445 * byte reads for 16 bit buswidth.
William Juulcfa460a2007-10-31 13:53:06 +0100446 */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000447 ret = mtd_read_oob(mtd, offs, &ops);
448 /* Ignore ECC errors when checking for BBM */
449 if (ret && !mtd_is_bitflip_or_eccerr(ret))
William Juulcfa460a2007-10-31 13:53:06 +0100450 return ret;
451
452 if (check_short_pattern(buf, bd))
453 return 1;
454
455 offs += mtd->writesize;
456 }
457 return 0;
458}
459
Wolfgang Denk932394a2005-08-17 12:55:25 +0200460/**
461 * create_bbt - [GENERIC] Create a bad block table by scanning the device
Sergey Lapindfe64e22013-01-14 03:46:50 +0000462 * @mtd: MTD device structure
463 * @buf: temporary buffer
464 * @bd: descriptor for the good/bad block search pattern
465 * @chip: create the table for a specific chip, -1 read all chips; applies only
466 * if NAND_BBT_PERCHIP option is set
Wolfgang Denk932394a2005-08-17 12:55:25 +0200467 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000468 * Create a bad block table by scanning the device for the given good/bad block
469 * identify pattern.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200470 */
William Juulcfa460a2007-10-31 13:53:06 +0100471static int create_bbt(struct mtd_info *mtd, uint8_t *buf,
472 struct nand_bbt_descr *bd, int chip)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200473{
474 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200475 int i, numblocks, numpages;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200476 int startblock;
477 loff_t from;
William Juulcfa460a2007-10-31 13:53:06 +0100478
Sergey Lapindfe64e22013-01-14 03:46:50 +0000479 pr_info("Scanning device for bad blocks\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200480
Heiko Schocherff94bc42014-06-24 10:10:04 +0200481 if (bd->options & NAND_BBT_SCAN2NDPAGE)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000482 numpages = 2;
Christian Hitzff8a8a72011-10-12 09:32:04 +0200483 else
Sergey Lapindfe64e22013-01-14 03:46:50 +0000484 numpages = 1;
William Juulcfa460a2007-10-31 13:53:06 +0100485
Wolfgang Denk932394a2005-08-17 12:55:25 +0200486 if (chip == -1) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200487 numblocks = mtd->size >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200488 startblock = 0;
489 from = 0;
490 } else {
491 if (chip >= this->numchips) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000492 pr_warn("create_bbt(): chipnr (%d) > available chips (%d)\n",
William Juulcfa460a2007-10-31 13:53:06 +0100493 chip + 1, this->numchips);
494 return -EINVAL;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200495 }
Heiko Schocherff94bc42014-06-24 10:10:04 +0200496 numblocks = this->chipsize >> this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200497 startblock = chip * numblocks;
498 numblocks += startblock;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200499 from = (loff_t)startblock << this->bbt_erase_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200500 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200501
Sergey Lapindfe64e22013-01-14 03:46:50 +0000502 if (this->bbt_options & NAND_BBT_SCANLASTPAGE)
503 from += mtd->erasesize - (mtd->writesize * numpages);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200504
Heiko Schocherff94bc42014-06-24 10:10:04 +0200505 for (i = startblock; i < numblocks; i++) {
William Juulcfa460a2007-10-31 13:53:06 +0100506 int ret;
507
Christian Hitzff8a8a72011-10-12 09:32:04 +0200508 BUG_ON(bd->options & NAND_BBT_NO_OOB);
509
Heiko Schocherff94bc42014-06-24 10:10:04 +0200510 ret = scan_block_fast(mtd, bd, from, buf, numpages);
William Juulcfa460a2007-10-31 13:53:06 +0100511 if (ret < 0)
512 return ret;
513
514 if (ret) {
Heiko Schocherff94bc42014-06-24 10:10:04 +0200515 bbt_mark_entry(this, i, BBT_BLOCK_FACTORY_BAD);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000516 pr_warn("Bad eraseblock %d at 0x%012llx\n",
Heiko Schocherff94bc42014-06-24 10:10:04 +0200517 i, (unsigned long long)from);
William Juulcfa460a2007-10-31 13:53:06 +0100518 mtd->ecc_stats.badblocks++;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200519 }
William Juulcfa460a2007-10-31 13:53:06 +0100520
Wolfgang Denk932394a2005-08-17 12:55:25 +0200521 from += (1 << this->bbt_erase_shift);
522 }
William Juulcfa460a2007-10-31 13:53:06 +0100523 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200524}
525
526/**
527 * search_bbt - [GENERIC] scan the device for a specific bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000528 * @mtd: MTD device structure
529 * @buf: temporary buffer
530 * @td: descriptor for the bad block table
Wolfgang Denk932394a2005-08-17 12:55:25 +0200531 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000532 * Read the bad block table by searching for a given ident pattern. Search is
533 * preformed either from the beginning up or from the end of the device
534 * downwards. The search starts always at the start of a block. If the option
535 * NAND_BBT_PERCHIP is given, each chip is searched for a bbt, which contains
536 * the bad block information of this chip. This is necessary to provide support
537 * for certain DOC devices.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200538 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000539 * The bbt ident pattern resides in the oob area of the first page in a block.
Wolfgang Denk932394a2005-08-17 12:55:25 +0200540 */
William Juulcfa460a2007-10-31 13:53:06 +0100541static int search_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200542{
543 struct nand_chip *this = mtd->priv;
544 int i, chips;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200545#ifndef __UBOOT__
546 int bits, startblock, block, dir;
547#else
Marek Vasut89131e92011-09-30 12:13:22 +0200548 int startblock, block, dir;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200549#endif
William Juulcfa460a2007-10-31 13:53:06 +0100550 int scanlen = mtd->writesize + mtd->oobsize;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200551 int bbtblocks;
William Juulcfa460a2007-10-31 13:53:06 +0100552 int blocktopage = this->bbt_erase_shift - this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200553
Sergey Lapindfe64e22013-01-14 03:46:50 +0000554 /* Search direction top -> down? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200555 if (td->options & NAND_BBT_LASTBLOCK) {
William Juulcfa460a2007-10-31 13:53:06 +0100556 startblock = (mtd->size >> this->bbt_erase_shift) - 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200557 dir = -1;
558 } else {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200559 startblock = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200560 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200561 }
562
Sergey Lapindfe64e22013-01-14 03:46:50 +0000563 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200564 if (td->options & NAND_BBT_PERCHIP) {
565 chips = this->numchips;
566 bbtblocks = this->chipsize >> this->bbt_erase_shift;
567 startblock &= bbtblocks - 1;
568 } else {
569 chips = 1;
570 bbtblocks = mtd->size >> this->bbt_erase_shift;
571 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200572
Heiko Schocherff94bc42014-06-24 10:10:04 +0200573#ifndef __UBOOT__
574 /* Number of bits for each erase block in the bbt */
575 bits = td->options & NAND_BBT_NRBITS_MSK;
576#endif
577
Wolfgang Denk932394a2005-08-17 12:55:25 +0200578 for (i = 0; i < chips; i++) {
579 /* Reset version information */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200580 td->version[i] = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200581 td->pages[i] = -1;
582 /* Scan the maximum number of blocks */
583 for (block = 0; block < td->maxblocks; block++) {
William Juulcfa460a2007-10-31 13:53:06 +0100584
Wolfgang Denk932394a2005-08-17 12:55:25 +0200585 int actblock = startblock + dir * block;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400586 loff_t offs = (loff_t)actblock << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100587
Wolfgang Denk932394a2005-08-17 12:55:25 +0200588 /* Read first page */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000589 scan_read(mtd, buf, offs, mtd->writesize, td);
William Juulcfa460a2007-10-31 13:53:06 +0100590 if (!check_pattern(buf, scanlen, mtd->writesize, td)) {
591 td->pages[i] = actblock << blocktopage;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200592 if (td->options & NAND_BBT_VERSION) {
Christian Hitzff8a8a72011-10-12 09:32:04 +0200593 offs = bbt_get_ver_offs(mtd, td);
594 td->version[i] = buf[offs];
Wolfgang Denk932394a2005-08-17 12:55:25 +0200595 }
596 break;
597 }
598 }
599 startblock += this->chipsize >> this->bbt_erase_shift;
600 }
601 /* Check, if we found a bbt for each requested chip */
602 for (i = 0; i < chips; i++) {
603 if (td->pages[i] == -1)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000604 pr_warn("Bad block table not found for chip %d\n", i);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200605 else
Heiko Schocherff94bc42014-06-24 10:10:04 +0200606 pr_info("Bad block table found at page %d, version "
607 "0x%02X\n", td->pages[i], td->version[i]);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200608 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200609 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200610}
611
612/**
613 * search_read_bbts - [GENERIC] scan the device for bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +0000614 * @mtd: MTD device structure
615 * @buf: temporary buffer
616 * @td: descriptor for the bad block table
617 * @md: descriptor for the bad block table mirror
Wolfgang Denk932394a2005-08-17 12:55:25 +0200618 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000619 * Search and read the bad block table(s).
620 */
621static void search_read_bbts(struct mtd_info *mtd, uint8_t *buf,
622 struct nand_bbt_descr *td,
623 struct nand_bbt_descr *md)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200624{
625 /* Search the primary table */
William Juulcfa460a2007-10-31 13:53:06 +0100626 search_bbt(mtd, buf, td);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200627
Wolfgang Denk932394a2005-08-17 12:55:25 +0200628 /* Search the mirror table */
629 if (md)
William Juulcfa460a2007-10-31 13:53:06 +0100630 search_bbt(mtd, buf, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200631}
632
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200633/**
Wolfgang Denk932394a2005-08-17 12:55:25 +0200634 * write_bbt - [GENERIC] (Re)write the bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000635 * @mtd: MTD device structure
636 * @buf: temporary buffer
637 * @td: descriptor for the bad block table
638 * @md: descriptor for the bad block table mirror
639 * @chipsel: selector for a specific chip, -1 for all
Wolfgang Denk932394a2005-08-17 12:55:25 +0200640 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000641 * (Re)write the bad block table.
642 */
William Juulcfa460a2007-10-31 13:53:06 +0100643static int write_bbt(struct mtd_info *mtd, uint8_t *buf,
644 struct nand_bbt_descr *td, struct nand_bbt_descr *md,
645 int chipsel)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200646{
647 struct nand_chip *this = mtd->priv;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200648 struct erase_info einfo;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200649 int i, res, chip = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200650 int bits, startblock, dir, page, offs, numblocks, sft, sftmsk;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200651 int nrchips, pageoffs, ooboffs;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200652 uint8_t msk[4];
653 uint8_t rcode = td->reserved_block_code;
654 size_t retlen, len = 0;
655 loff_t to;
William Juulcfa460a2007-10-31 13:53:06 +0100656 struct mtd_oob_ops ops;
657
658 ops.ooblen = mtd->oobsize;
659 ops.ooboffs = 0;
660 ops.datbuf = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000661 ops.mode = MTD_OPS_PLACE_OOB;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200662
663 if (!rcode)
664 rcode = 0xff;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000665 /* Write bad block table per chip rather than per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200666 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +0100667 numblocks = (int)(this->chipsize >> this->bbt_erase_shift);
Sergey Lapindfe64e22013-01-14 03:46:50 +0000668 /* Full device write or specific chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200669 if (chipsel == -1) {
670 nrchips = this->numchips;
671 } else {
672 nrchips = chipsel + 1;
673 chip = chipsel;
674 }
675 } else {
William Juulcfa460a2007-10-31 13:53:06 +0100676 numblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200677 nrchips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200678 }
679
Wolfgang Denk932394a2005-08-17 12:55:25 +0200680 /* Loop through the chips */
681 for (; chip < nrchips; chip++) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000682 /*
683 * There was already a version of the table, reuse the page
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200684 * This applies for absolute placement too, as we have the
Wolfgang Denk932394a2005-08-17 12:55:25 +0200685 * page nr. in td->pages.
686 */
687 if (td->pages[chip] != -1) {
688 page = td->pages[chip];
689 goto write;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200690 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200691
Sergey Lapindfe64e22013-01-14 03:46:50 +0000692 /*
693 * Automatic placement of the bad block table. Search direction
694 * top -> down?
695 */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200696 if (td->options & NAND_BBT_LASTBLOCK) {
697 startblock = numblocks * (chip + 1) - 1;
698 dir = -1;
699 } else {
700 startblock = chip * numblocks;
701 dir = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200702 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200703
704 for (i = 0; i < td->maxblocks; i++) {
705 int block = startblock + dir * i;
706 /* Check, if the block is bad */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200707 switch (bbt_get_entry(this, block)) {
708 case BBT_BLOCK_WORN:
709 case BBT_BLOCK_FACTORY_BAD:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200710 continue;
711 }
William Juulcfa460a2007-10-31 13:53:06 +0100712 page = block <<
713 (this->bbt_erase_shift - this->page_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200714 /* Check, if the block is used by the mirror table */
715 if (!md || md->pages[chip] != page)
716 goto write;
717 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000718 pr_err("No space left to write bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200719 return -ENOSPC;
William Juulcfa460a2007-10-31 13:53:06 +0100720 write:
Wolfgang Denk932394a2005-08-17 12:55:25 +0200721
722 /* Set up shift count and masks for the flash table */
723 bits = td->options & NAND_BBT_NRBITS_MSK;
William Juulcfa460a2007-10-31 13:53:06 +0100724 msk[2] = ~rcode;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200725 switch (bits) {
William Juulcfa460a2007-10-31 13:53:06 +0100726 case 1: sft = 3; sftmsk = 0x07; msk[0] = 0x00; msk[1] = 0x01;
727 msk[3] = 0x01;
728 break;
729 case 2: sft = 2; sftmsk = 0x06; msk[0] = 0x00; msk[1] = 0x01;
730 msk[3] = 0x03;
731 break;
732 case 4: sft = 1; sftmsk = 0x04; msk[0] = 0x00; msk[1] = 0x0C;
733 msk[3] = 0x0f;
734 break;
735 case 8: sft = 0; sftmsk = 0x00; msk[0] = 0x00; msk[1] = 0x0F;
736 msk[3] = 0xff;
737 break;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200738 default: return -EINVAL;
739 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200740
Sergey Lapindfe64e22013-01-14 03:46:50 +0000741 to = ((loff_t)page) << this->page_shift;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200742
Sergey Lapindfe64e22013-01-14 03:46:50 +0000743 /* Must we save the block contents? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200744 if (td->options & NAND_BBT_SAVECONTENT) {
745 /* Make it block aligned */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000746 to &= ~((loff_t)((1 << this->bbt_erase_shift) - 1));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200747 len = 1 << this->bbt_erase_shift;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000748 res = mtd_read(mtd, to, len, &retlen, buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200749 if (res < 0) {
750 if (retlen != len) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000751 pr_info("nand_bbt: error reading block "
752 "for writing the bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200753 return res;
754 }
Sergey Lapindfe64e22013-01-14 03:46:50 +0000755 pr_warn("nand_bbt: ECC error while reading "
756 "block for writing bad block table\n");
Wolfgang Denk932394a2005-08-17 12:55:25 +0200757 }
William Juulcfa460a2007-10-31 13:53:06 +0100758 /* Read oob data */
759 ops.ooblen = (len >> this->page_shift) * mtd->oobsize;
760 ops.oobbuf = &buf[len];
Sergey Lapindfe64e22013-01-14 03:46:50 +0000761 res = mtd_read_oob(mtd, to + mtd->writesize, &ops);
William Juulcfa460a2007-10-31 13:53:06 +0100762 if (res < 0 || ops.oobretlen != ops.ooblen)
763 goto outerr;
764
Wolfgang Denk932394a2005-08-17 12:55:25 +0200765 /* Calc the byte offset in the buffer */
766 pageoffs = page - (int)(to >> this->page_shift);
767 offs = pageoffs << this->page_shift;
768 /* Preset the bbt area with 0xff */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000769 memset(&buf[offs], 0xff, (size_t)(numblocks >> sft));
William Juulcfa460a2007-10-31 13:53:06 +0100770 ooboffs = len + (pageoffs * mtd->oobsize);
771
Christian Hitzff8a8a72011-10-12 09:32:04 +0200772 } else if (td->options & NAND_BBT_NO_OOB) {
773 ooboffs = 0;
774 offs = td->len;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000775 /* The version byte */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200776 if (td->options & NAND_BBT_VERSION)
777 offs++;
778 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000779 len = (size_t)(numblocks >> sft);
Christian Hitzff8a8a72011-10-12 09:32:04 +0200780 len += offs;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000781 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200782 len = ALIGN(len, mtd->writesize);
783 /* Preset the buffer with 0xff */
784 memset(buf, 0xff, len);
785 /* Pattern is located at the begin of first page */
786 memcpy(buf, td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200787 } else {
788 /* Calc length */
Sergey Lapindfe64e22013-01-14 03:46:50 +0000789 len = (size_t)(numblocks >> sft);
790 /* Make it page aligned! */
Christian Hitzff8a8a72011-10-12 09:32:04 +0200791 len = ALIGN(len, mtd->writesize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200792 /* Preset the buffer with 0xff */
William Juulcfa460a2007-10-31 13:53:06 +0100793 memset(buf, 0xff, len +
794 (len >> this->page_shift)* mtd->oobsize);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200795 offs = 0;
William Juulcfa460a2007-10-31 13:53:06 +0100796 ooboffs = len;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200797 /* Pattern is located in oob area of first page */
William Juulcfa460a2007-10-31 13:53:06 +0100798 memcpy(&buf[ooboffs + td->offs], td->pattern, td->len);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200799 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200800
William Juulcfa460a2007-10-31 13:53:06 +0100801 if (td->options & NAND_BBT_VERSION)
802 buf[ooboffs + td->veroffs] = td->version[chip];
803
Sergey Lapindfe64e22013-01-14 03:46:50 +0000804 /* Walk through the memory table */
Heiko Schocherff94bc42014-06-24 10:10:04 +0200805 for (i = 0; i < numblocks; i++) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200806 uint8_t dat;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200807 int sftcnt = (i << (3 - sft)) & sftmsk;
808 dat = bbt_get_entry(this, chip * numblocks + i);
809 /* Do not store the reserved bbt blocks! */
810 buf[offs + (i >> sft)] &= ~(msk[dat] << sftcnt);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200811 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200812
William Juulcfa460a2007-10-31 13:53:06 +0100813 memset(&einfo, 0, sizeof(einfo));
Wolfgang Denk932394a2005-08-17 12:55:25 +0200814 einfo.mtd = mtd;
Sandeep Paulrajaaa8eec2009-10-30 13:51:23 -0400815 einfo.addr = to;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200816 einfo.len = 1 << this->bbt_erase_shift;
William Juulcfa460a2007-10-31 13:53:06 +0100817 res = nand_erase_nand(mtd, &einfo, 1);
818 if (res < 0)
819 goto outerr;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200820
Christian Hitzff8a8a72011-10-12 09:32:04 +0200821 res = scan_write_bbt(mtd, to, len, buf,
822 td->options & NAND_BBT_NO_OOB ? NULL :
823 &buf[len]);
William Juulcfa460a2007-10-31 13:53:06 +0100824 if (res < 0)
825 goto outerr;
826
Sergey Lapindfe64e22013-01-14 03:46:50 +0000827 pr_info("Bad block table written to 0x%012llx, version 0x%02X\n",
828 (unsigned long long)to, td->version[chip]);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200829
Wolfgang Denk932394a2005-08-17 12:55:25 +0200830 /* Mark it as used */
831 td->pages[chip] = page;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200832 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200833 return 0;
William Juulcfa460a2007-10-31 13:53:06 +0100834
835 outerr:
Sergey Lapindfe64e22013-01-14 03:46:50 +0000836 pr_warn("nand_bbt: error while writing bad block table %d\n", res);
William Juulcfa460a2007-10-31 13:53:06 +0100837 return res;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200838}
839
840/**
841 * nand_memory_bbt - [GENERIC] create a memory based bad block table
Sergey Lapindfe64e22013-01-14 03:46:50 +0000842 * @mtd: MTD device structure
843 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200844 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000845 * The function creates a memory based bbt by scanning the device for
846 * manufacturer / software marked good / bad blocks.
847 */
William Juulcfa460a2007-10-31 13:53:06 +0100848static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200849{
850 struct nand_chip *this = mtd->priv;
851
William Juulcfa460a2007-10-31 13:53:06 +0100852 return create_bbt(mtd, this->buffers->databuf, bd, -1);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200853}
854
855/**
William Juulcfa460a2007-10-31 13:53:06 +0100856 * check_create - [GENERIC] create and write bbt(s) if necessary
Sergey Lapindfe64e22013-01-14 03:46:50 +0000857 * @mtd: MTD device structure
858 * @buf: temporary buffer
859 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +0200860 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000861 * The function checks the results of the previous call to read_bbt and creates
862 * / updates the bbt(s) if necessary. Creation is necessary if no bbt was found
863 * for the chip/device. Update is necessary if one of the tables is missing or
864 * the version nr. of one table is less than the other.
865 */
William Juulcfa460a2007-10-31 13:53:06 +0100866static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200867{
Sergey Lapindfe64e22013-01-14 03:46:50 +0000868 int i, chips, writeops, create, chipsel, res, res2;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200869 struct nand_chip *this = mtd->priv;
870 struct nand_bbt_descr *td = this->bbt_td;
871 struct nand_bbt_descr *md = this->bbt_md;
872 struct nand_bbt_descr *rd, *rd2;
873
Sergey Lapindfe64e22013-01-14 03:46:50 +0000874 /* Do we have a bbt per chip? */
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200875 if (td->options & NAND_BBT_PERCHIP)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200876 chips = this->numchips;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200877 else
Wolfgang Denk932394a2005-08-17 12:55:25 +0200878 chips = 1;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200879
Wolfgang Denk932394a2005-08-17 12:55:25 +0200880 for (i = 0; i < chips; i++) {
881 writeops = 0;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000882 create = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200883 rd = NULL;
884 rd2 = NULL;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000885 res = res2 = 0;
886 /* Per chip or per device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200887 chipsel = (td->options & NAND_BBT_PERCHIP) ? i : -1;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000888 /* Mirrored table available? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200889 if (md) {
890 if (td->pages[i] == -1 && md->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000891 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200892 writeops = 0x03;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000893 } else if (td->pages[i] == -1) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200894 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000895 writeops = 0x01;
896 } else if (md->pages[i] == -1) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200897 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000898 writeops = 0x02;
899 } else if (td->version[i] == md->version[i]) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200900 rd = td;
901 if (!(td->options & NAND_BBT_VERSION))
902 rd2 = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000903 } else if (((int8_t)(td->version[i] - md->version[i])) > 0) {
Wolfgang Denk932394a2005-08-17 12:55:25 +0200904 rd = td;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000905 writeops = 0x02;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200906 } else {
907 rd = md;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000908 writeops = 0x01;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200909 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200910 } else {
911 if (td->pages[i] == -1) {
Sergey Lapindfe64e22013-01-14 03:46:50 +0000912 create = 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200913 writeops = 0x01;
Sergey Lapindfe64e22013-01-14 03:46:50 +0000914 } else {
915 rd = td;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200916 }
Wolfgang Denk932394a2005-08-17 12:55:25 +0200917 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200918
Sergey Lapindfe64e22013-01-14 03:46:50 +0000919 if (create) {
920 /* Create the bad block table by scanning the device? */
921 if (!(td->options & NAND_BBT_CREATE))
922 continue;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200923
Sergey Lapindfe64e22013-01-14 03:46:50 +0000924 /* Create the table in memory by scanning the chip(s) */
925 if (!(this->bbt_options & NAND_BBT_CREATE_EMPTY))
926 create_bbt(mtd, buf, bd, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200927
Sergey Lapindfe64e22013-01-14 03:46:50 +0000928 td->version[i] = 1;
929 if (md)
930 md->version[i] = 1;
931 }
932
933 /* Read back first? */
934 if (rd) {
935 res = read_abs_bbt(mtd, buf, rd, chipsel);
936 if (mtd_is_eccerr(res)) {
937 /* Mark table as invalid */
938 rd->pages[i] = -1;
939 rd->version[i] = 0;
940 i--;
941 continue;
942 }
943 }
944 /* If they weren't versioned, read both */
945 if (rd2) {
946 res2 = read_abs_bbt(mtd, buf, rd2, chipsel);
947 if (mtd_is_eccerr(res2)) {
948 /* Mark table as invalid */
949 rd2->pages[i] = -1;
950 rd2->version[i] = 0;
951 i--;
952 continue;
953 }
954 }
955
956 /* Scrub the flash table(s)? */
957 if (mtd_is_bitflip(res) || mtd_is_bitflip(res2))
958 writeops = 0x03;
959
960 /* Update version numbers before writing */
961 if (md) {
962 td->version[i] = max(td->version[i], md->version[i]);
963 md->version[i] = td->version[i];
964 }
965
966 /* Write the bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200967 if ((writeops & 0x01) && (td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100968 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200969 if (res < 0)
970 return res;
971 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200972
Sergey Lapindfe64e22013-01-14 03:46:50 +0000973 /* Write the mirror bad block table to the device? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200974 if ((writeops & 0x02) && md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +0100975 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +0200976 if (res < 0)
977 return res;
978 }
979 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200980 return 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200981}
982
983/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200984 * mark_bbt_regions - [GENERIC] mark the bad block table regions
Sergey Lapindfe64e22013-01-14 03:46:50 +0000985 * @mtd: MTD device structure
986 * @td: bad block table descriptor
Wolfgang Denk932394a2005-08-17 12:55:25 +0200987 *
Sergey Lapindfe64e22013-01-14 03:46:50 +0000988 * The bad block table regions are marked as "bad" to prevent accidental
989 * erasures / writes. The regions are identified by the mark 0x02.
990 */
William Juulcfa460a2007-10-31 13:53:06 +0100991static void mark_bbt_region(struct mtd_info *mtd, struct nand_bbt_descr *td)
Wolfgang Denk932394a2005-08-17 12:55:25 +0200992{
993 struct nand_chip *this = mtd->priv;
994 int i, j, chips, block, nrblocks, update;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200995 uint8_t oldval;
Wolfgang Denk932394a2005-08-17 12:55:25 +0200996
Sergey Lapindfe64e22013-01-14 03:46:50 +0000997 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +0200998 if (td->options & NAND_BBT_PERCHIP) {
999 chips = this->numchips;
1000 nrblocks = (int)(this->chipsize >> this->bbt_erase_shift);
1001 } else {
1002 chips = 1;
1003 nrblocks = (int)(mtd->size >> this->bbt_erase_shift);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001004 }
1005
Wolfgang Denk932394a2005-08-17 12:55:25 +02001006 for (i = 0; i < chips; i++) {
1007 if ((td->options & NAND_BBT_ABSPAGE) ||
1008 !(td->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001009 if (td->pages[i] == -1)
1010 continue;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001011 block = td->pages[i] >> (this->bbt_erase_shift - this->page_shift);
Heiko Schocherff94bc42014-06-24 10:10:04 +02001012 oldval = bbt_get_entry(this, block);
1013 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1014 if ((oldval != BBT_BLOCK_RESERVED) &&
1015 td->reserved_block_code)
1016 nand_update_bbt(mtd, (loff_t)block <<
1017 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001018 continue;
1019 }
1020 update = 0;
1021 if (td->options & NAND_BBT_LASTBLOCK)
1022 block = ((i + 1) * nrblocks) - td->maxblocks;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001023 else
Wolfgang Denk932394a2005-08-17 12:55:25 +02001024 block = i * nrblocks;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001025 for (j = 0; j < td->maxblocks; j++) {
Heiko Schocherff94bc42014-06-24 10:10:04 +02001026 oldval = bbt_get_entry(this, block);
1027 bbt_mark_entry(this, block, BBT_BLOCK_RESERVED);
1028 if (oldval != BBT_BLOCK_RESERVED)
William Juulcfa460a2007-10-31 13:53:06 +01001029 update = 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001030 block++;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001031 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001032 /*
1033 * If we want reserved blocks to be recorded to flash, and some
1034 * new ones have been marked, then we need to update the stored
1035 * bbts. This should only happen once.
1036 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001037 if (update && td->reserved_block_code)
Heiko Schocherff94bc42014-06-24 10:10:04 +02001038 nand_update_bbt(mtd, (loff_t)(block - 1) <<
1039 this->bbt_erase_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001040 }
1041}
1042
1043/**
Christian Hitzff8a8a72011-10-12 09:32:04 +02001044 * verify_bbt_descr - verify the bad block description
Sergey Lapindfe64e22013-01-14 03:46:50 +00001045 * @mtd: MTD device structure
1046 * @bd: the table to verify
Christian Hitzff8a8a72011-10-12 09:32:04 +02001047 *
1048 * This functions performs a few sanity checks on the bad block description
1049 * table.
1050 */
1051static void verify_bbt_descr(struct mtd_info *mtd, struct nand_bbt_descr *bd)
1052{
1053 struct nand_chip *this = mtd->priv;
1054 u32 pattern_len;
1055 u32 bits;
1056 u32 table_size;
1057
1058 if (!bd)
1059 return;
1060
1061 pattern_len = bd->len;
1062 bits = bd->options & NAND_BBT_NRBITS_MSK;
1063
Sergey Lapindfe64e22013-01-14 03:46:50 +00001064 BUG_ON((this->bbt_options & NAND_BBT_NO_OOB) &&
1065 !(this->bbt_options & NAND_BBT_USE_FLASH));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001066 BUG_ON(!bits);
1067
1068 if (bd->options & NAND_BBT_VERSION)
1069 pattern_len++;
1070
1071 if (bd->options & NAND_BBT_NO_OOB) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001072 BUG_ON(!(this->bbt_options & NAND_BBT_USE_FLASH));
1073 BUG_ON(!(this->bbt_options & NAND_BBT_NO_OOB));
Christian Hitzff8a8a72011-10-12 09:32:04 +02001074 BUG_ON(bd->offs);
1075 if (bd->options & NAND_BBT_VERSION)
1076 BUG_ON(bd->veroffs != bd->len);
1077 BUG_ON(bd->options & NAND_BBT_SAVECONTENT);
1078 }
1079
1080 if (bd->options & NAND_BBT_PERCHIP)
1081 table_size = this->chipsize >> this->bbt_erase_shift;
1082 else
1083 table_size = mtd->size >> this->bbt_erase_shift;
1084 table_size >>= 3;
1085 table_size *= bits;
1086 if (bd->options & NAND_BBT_NO_OOB)
1087 table_size += pattern_len;
1088 BUG_ON(table_size > (1 << this->bbt_erase_shift));
1089}
1090
1091/**
Wolfgang Denk932394a2005-08-17 12:55:25 +02001092 * nand_scan_bbt - [NAND Interface] scan, find, read and maybe create bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001093 * @mtd: MTD device structure
1094 * @bd: descriptor for the good/bad block search pattern
Wolfgang Denk932394a2005-08-17 12:55:25 +02001095 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001096 * The function checks, if a bad block table(s) is/are already available. If
1097 * not it scans the device for manufacturer marked good / bad blocks and writes
1098 * the bad block table(s) to the selected place.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001099 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001100 * The bad block table memory is allocated here. It must be freed by calling
1101 * the nand_free_bbt function.
1102 */
William Juulcfa460a2007-10-31 13:53:06 +01001103int nand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001104{
1105 struct nand_chip *this = mtd->priv;
1106 int len, res = 0;
1107 uint8_t *buf;
1108 struct nand_bbt_descr *td = this->bbt_td;
1109 struct nand_bbt_descr *md = this->bbt_md;
1110
1111 len = mtd->size >> (this->bbt_erase_shift + 2);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001112 /*
1113 * Allocate memory (2bit per block) and clear the memory bad block
1114 * table.
1115 */
William Juulcfa460a2007-10-31 13:53:06 +01001116 this->bbt = kzalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001117 if (!this->bbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001118 return -ENOMEM;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001119
Sergey Lapindfe64e22013-01-14 03:46:50 +00001120 /*
1121 * If no primary table decriptor is given, scan the device to build a
1122 * memory based bad block table.
Wolfgang Denk932394a2005-08-17 12:55:25 +02001123 */
William Juulcfa460a2007-10-31 13:53:06 +01001124 if (!td) {
1125 if ((res = nand_memory_bbt(mtd, bd))) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001126 pr_err("nand_bbt: can't scan flash and build the RAM-based BBT\n");
William Juulcfa460a2007-10-31 13:53:06 +01001127 kfree(this->bbt);
1128 this->bbt = NULL;
1129 }
1130 return res;
1131 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001132 verify_bbt_descr(mtd, td);
1133 verify_bbt_descr(mtd, md);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001134
1135 /* Allocate a temporary buffer for one eraseblock incl. oob */
1136 len = (1 << this->bbt_erase_shift);
1137 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001138 buf = vmalloc(len);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001139 if (!buf) {
William Juulcfa460a2007-10-31 13:53:06 +01001140 kfree(this->bbt);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001141 this->bbt = NULL;
1142 return -ENOMEM;
1143 }
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001144
Sergey Lapindfe64e22013-01-14 03:46:50 +00001145 /* Is the bbt at a given page? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001146 if (td->options & NAND_BBT_ABSPAGE) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001147 read_abs_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001148 } else {
Wolfgang Denk932394a2005-08-17 12:55:25 +02001149 /* Search the bad block table using a pattern in oob */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001150 search_read_bbts(mtd, buf, td, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001151 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001152
Sergey Lapindfe64e22013-01-14 03:46:50 +00001153 res = check_create(mtd, buf, bd);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001154
Wolfgang Denk932394a2005-08-17 12:55:25 +02001155 /* Prevent the bbt regions from erasing / writing */
William Juulcfa460a2007-10-31 13:53:06 +01001156 mark_bbt_region(mtd, td);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001157 if (md)
William Juulcfa460a2007-10-31 13:53:06 +01001158 mark_bbt_region(mtd, md);
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001159
William Juulcfa460a2007-10-31 13:53:06 +01001160 vfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001161 return res;
1162}
1163
Wolfgang Denk932394a2005-08-17 12:55:25 +02001164/**
Heiko Schocherff94bc42014-06-24 10:10:04 +02001165 * nand_update_bbt - update bad block table(s)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001166 * @mtd: MTD device structure
1167 * @offs: the offset of the newly marked block
Wolfgang Denk932394a2005-08-17 12:55:25 +02001168 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001169 * The function updates the bad block table(s).
1170 */
Heiko Schocherff94bc42014-06-24 10:10:04 +02001171static int nand_update_bbt(struct mtd_info *mtd, loff_t offs)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001172{
1173 struct nand_chip *this = mtd->priv;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001174 int len, res = 0;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001175 int chip, chipsel;
1176 uint8_t *buf;
1177 struct nand_bbt_descr *td = this->bbt_td;
1178 struct nand_bbt_descr *md = this->bbt_md;
1179
1180 if (!this->bbt || !td)
1181 return -EINVAL;
1182
Wolfgang Denk932394a2005-08-17 12:55:25 +02001183 /* Allocate a temporary buffer for one eraseblock incl. oob */
1184 len = (1 << this->bbt_erase_shift);
1185 len += (len >> this->page_shift) * mtd->oobsize;
William Juulcfa460a2007-10-31 13:53:06 +01001186 buf = kmalloc(len, GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001187 if (!buf)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001188 return -ENOMEM;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001189
Sergey Lapindfe64e22013-01-14 03:46:50 +00001190 /* Do we have a bbt per chip? */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001191 if (td->options & NAND_BBT_PERCHIP) {
William Juulcfa460a2007-10-31 13:53:06 +01001192 chip = (int)(offs >> this->chip_shift);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001193 chipsel = chip;
1194 } else {
1195 chip = 0;
1196 chipsel = -1;
1197 }
1198
1199 td->version[chip]++;
1200 if (md)
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001201 md->version[chip]++;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001202
Sergey Lapindfe64e22013-01-14 03:46:50 +00001203 /* Write the bad block table to the device? */
1204 if (td->options & NAND_BBT_WRITE) {
William Juulcfa460a2007-10-31 13:53:06 +01001205 res = write_bbt(mtd, buf, td, md, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001206 if (res < 0)
1207 goto out;
1208 }
Sergey Lapindfe64e22013-01-14 03:46:50 +00001209 /* Write the mirror bad block table to the device? */
1210 if (md && (md->options & NAND_BBT_WRITE)) {
William Juulcfa460a2007-10-31 13:53:06 +01001211 res = write_bbt(mtd, buf, md, td, chipsel);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001212 }
1213
William Juulcfa460a2007-10-31 13:53:06 +01001214 out:
1215 kfree(buf);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001216 return res;
1217}
1218
Sergey Lapindfe64e22013-01-14 03:46:50 +00001219/*
1220 * Define some generic bad / good block scan pattern which are used
1221 * while scanning a device for factory marked good / bad blocks.
1222 */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001223static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
1224
Sergey Lapindfe64e22013-01-14 03:46:50 +00001225/* Generic flash bbt descriptors */
Wolfgang Denk932394a2005-08-17 12:55:25 +02001226static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1227static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1228
1229static struct nand_bbt_descr bbt_main_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001230 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001231 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1232 .offs = 8,
1233 .len = 4,
1234 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001235 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001236 .pattern = bbt_pattern
1237};
1238
1239static struct nand_bbt_descr bbt_mirror_descr = {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001240 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
Wolfgang Denk932394a2005-08-17 12:55:25 +02001241 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1242 .offs = 8,
1243 .len = 4,
1244 .veroffs = 12,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001245 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Wolfgang Denk932394a2005-08-17 12:55:25 +02001246 .pattern = mirror_pattern
1247};
1248
Sergey Lapindfe64e22013-01-14 03:46:50 +00001249static struct nand_bbt_descr bbt_main_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001250 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1251 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1252 | NAND_BBT_NO_OOB,
1253 .len = 4,
1254 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001255 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001256 .pattern = bbt_pattern
1257};
1258
Sergey Lapindfe64e22013-01-14 03:46:50 +00001259static struct nand_bbt_descr bbt_mirror_no_oob_descr = {
Christian Hitzff8a8a72011-10-12 09:32:04 +02001260 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1261 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP
1262 | NAND_BBT_NO_OOB,
1263 .len = 4,
1264 .veroffs = 4,
Sergey Lapindfe64e22013-01-14 03:46:50 +00001265 .maxblocks = NAND_BBT_SCAN_MAXBLOCKS,
Christian Hitzff8a8a72011-10-12 09:32:04 +02001266 .pattern = mirror_pattern
1267};
1268
Sergey Lapindfe64e22013-01-14 03:46:50 +00001269#define BADBLOCK_SCAN_MASK (~NAND_BBT_NO_OOB)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001270/**
Sergey Lapindfe64e22013-01-14 03:46:50 +00001271 * nand_create_badblock_pattern - [INTERN] Creates a BBT descriptor structure
1272 * @this: NAND chip to create descriptor for
Christian Hitzff8a8a72011-10-12 09:32:04 +02001273 *
1274 * This function allocates and initializes a nand_bbt_descr for BBM detection
Sergey Lapindfe64e22013-01-14 03:46:50 +00001275 * based on the properties of @this. The new descriptor is stored in
Christian Hitzff8a8a72011-10-12 09:32:04 +02001276 * this->badblock_pattern. Thus, this->badblock_pattern should be NULL when
1277 * passed to this function.
Christian Hitzff8a8a72011-10-12 09:32:04 +02001278 */
Sergey Lapindfe64e22013-01-14 03:46:50 +00001279static int nand_create_badblock_pattern(struct nand_chip *this)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001280{
1281 struct nand_bbt_descr *bd;
1282 if (this->badblock_pattern) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001283 pr_warn("Bad block pattern already allocated; not replacing\n");
Christian Hitzff8a8a72011-10-12 09:32:04 +02001284 return -EINVAL;
1285 }
1286 bd = kzalloc(sizeof(*bd), GFP_KERNEL);
Sergey Lapindfe64e22013-01-14 03:46:50 +00001287 if (!bd)
Christian Hitzff8a8a72011-10-12 09:32:04 +02001288 return -ENOMEM;
Sergey Lapindfe64e22013-01-14 03:46:50 +00001289 bd->options = this->bbt_options & BADBLOCK_SCAN_MASK;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001290 bd->offs = this->badblockpos;
1291 bd->len = (this->options & NAND_BUSWIDTH_16) ? 2 : 1;
1292 bd->pattern = scan_ff_pattern;
1293 bd->options |= NAND_BBT_DYNAMICSTRUCT;
1294 this->badblock_pattern = bd;
1295 return 0;
1296}
1297
Wolfgang Denk932394a2005-08-17 12:55:25 +02001298/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001299 * nand_default_bbt - [NAND Interface] Select a default bad block table for the device
Sergey Lapindfe64e22013-01-14 03:46:50 +00001300 * @mtd: MTD device structure
Wolfgang Denk932394a2005-08-17 12:55:25 +02001301 *
Sergey Lapindfe64e22013-01-14 03:46:50 +00001302 * This function selects the default bad block table support for the device and
1303 * calls the nand_scan_bbt function.
1304 */
William Juulcfa460a2007-10-31 13:53:06 +01001305int nand_default_bbt(struct mtd_info *mtd)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001306{
1307 struct nand_chip *this = mtd->priv;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001308
Sergey Lapindfe64e22013-01-14 03:46:50 +00001309 /* Is a flash based bad block table requested? */
1310 if (this->bbt_options & NAND_BBT_USE_FLASH) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001311 /* Use the default pattern descriptors */
1312 if (!this->bbt_td) {
Sergey Lapindfe64e22013-01-14 03:46:50 +00001313 if (this->bbt_options & NAND_BBT_NO_OOB) {
1314 this->bbt_td = &bbt_main_no_oob_descr;
1315 this->bbt_md = &bbt_mirror_no_oob_descr;
Christian Hitzff8a8a72011-10-12 09:32:04 +02001316 } else {
1317 this->bbt_td = &bbt_main_descr;
1318 this->bbt_md = &bbt_mirror_descr;
1319 }
Wolfgang Denk932394a2005-08-17 12:55:25 +02001320 }
1321 } else {
1322 this->bbt_td = NULL;
1323 this->bbt_md = NULL;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001324 }
Christian Hitzff8a8a72011-10-12 09:32:04 +02001325
1326 if (!this->badblock_pattern)
Sergey Lapindfe64e22013-01-14 03:46:50 +00001327 nand_create_badblock_pattern(this);
Christian Hitzff8a8a72011-10-12 09:32:04 +02001328
William Juulcfa460a2007-10-31 13:53:06 +01001329 return nand_scan_bbt(mtd, this->badblock_pattern);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001330}
1331
1332/**
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001333 * nand_isbad_bbt - [NAND Interface] Check if a block is bad
Sergey Lapindfe64e22013-01-14 03:46:50 +00001334 * @mtd: MTD device structure
1335 * @offs: offset in the device
1336 * @allowbbt: allow access to bad block table region
1337 */
William Juulcfa460a2007-10-31 13:53:06 +01001338int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
Wolfgang Denk932394a2005-08-17 12:55:25 +02001339{
1340 struct nand_chip *this = mtd->priv;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001341 int block, res;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001342
Heiko Schocherff94bc42014-06-24 10:10:04 +02001343 block = (int)(offs >> this->bbt_erase_shift);
1344 res = bbt_get_entry(this, block);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001345
Heiko Schocherff94bc42014-06-24 10:10:04 +02001346 pr_debug("nand_isbad_bbt(): bbt info for offs 0x%08x: "
1347 "(block %d) 0x%02x\n",
1348 (unsigned int)offs, block, res);
Wolfgang Denk932394a2005-08-17 12:55:25 +02001349
Heiko Schocherff94bc42014-06-24 10:10:04 +02001350 switch (res) {
1351 case BBT_BLOCK_GOOD:
William Juulcfa460a2007-10-31 13:53:06 +01001352 return 0;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001353 case BBT_BLOCK_WORN:
William Juulcfa460a2007-10-31 13:53:06 +01001354 return 1;
Heiko Schocherff94bc42014-06-24 10:10:04 +02001355 case BBT_BLOCK_RESERVED:
William Juulcfa460a2007-10-31 13:53:06 +01001356 return allowbbt ? 0 : 1;
Wolfgang Denk932394a2005-08-17 12:55:25 +02001357 }
1358 return 1;
1359}
Heiko Schocherff94bc42014-06-24 10:10:04 +02001360
1361/**
1362 * nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
1363 * @mtd: MTD device structure
1364 * @offs: offset of the bad block
1365 */
1366int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
1367{
1368 struct nand_chip *this = mtd->priv;
1369 int block, ret = 0;
1370
1371 block = (int)(offs >> this->bbt_erase_shift);
1372
1373 /* Mark bad block in memory */
1374 bbt_mark_entry(this, block, BBT_BLOCK_WORN);
1375
1376 /* Update flash-based bad block table */
1377 if (this->bbt_options & NAND_BBT_USE_FLASH)
1378 ret = nand_update_bbt(mtd, offs);
1379
1380 return ret;
1381}
1382
1383EXPORT_SYMBOL(nand_scan_bbt);