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