| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/drivers/mtd/onenand/onenand_bbt.c | 
|  | 3 | * | 
|  | 4 | *  Bad Block Table support for the OneNAND driver | 
|  | 5 | * | 
|  | 6 | *  Copyright(c) 2005 Samsung Electronics | 
|  | 7 | *  Kyungmin Park <kyungmin.park@samsung.com> | 
|  | 8 | * | 
|  | 9 | *  Derived from nand_bbt.c | 
|  | 10 | * | 
|  | 11 | *  TODO: | 
|  | 12 | *    Split BBT core and chip specific BBT. | 
|  | 13 | */ | 
|  | 14 |  | 
|  | 15 | #include <linux/slab.h> | 
|  | 16 | #include <linux/mtd/mtd.h> | 
|  | 17 | #include <linux/mtd/onenand.h> | 
|  | 18 | #include <linux/mtd/compatmac.h> | 
|  | 19 |  | 
|  | 20 | /** | 
|  | 21 | * check_short_pattern - [GENERIC] check if a pattern is in the buffer | 
|  | 22 | * @param buf		the buffer to search | 
|  | 23 | * @param len		the length of buffer to search | 
|  | 24 | * @param paglen	the pagelength | 
|  | 25 | * @param td		search pattern descriptor | 
|  | 26 | * | 
|  | 27 | * Check for a pattern at the given place. Used to search bad block | 
|  | 28 | * tables and good / bad block identifiers. Same as check_pattern, but | 
|  | 29 | * no optional empty check and the pattern is expected to start | 
|  | 30 | * at offset 0. | 
|  | 31 | * | 
|  | 32 | */ | 
|  | 33 | static int check_short_pattern(uint8_t *buf, int len, int paglen, struct nand_bbt_descr *td) | 
|  | 34 | { | 
|  | 35 | int i; | 
|  | 36 | uint8_t *p = buf; | 
|  | 37 |  | 
|  | 38 | /* Compare the pattern */ | 
|  | 39 | for (i = 0; i < td->len; i++) { | 
|  | 40 | if (p[i] != td->pattern[i]) | 
|  | 41 | return -1; | 
|  | 42 | } | 
|  | 43 | return 0; | 
|  | 44 | } | 
|  | 45 |  | 
|  | 46 | /** | 
|  | 47 | * create_bbt - [GENERIC] Create a bad block table by scanning the device | 
|  | 48 | * @param mtd		MTD device structure | 
|  | 49 | * @param buf		temporary buffer | 
|  | 50 | * @param bd		descriptor for the good/bad block search pattern | 
|  | 51 | * @param chip		create the table for a specific chip, -1 read all chips. | 
|  | 52 | *              Applies only if NAND_BBT_PERCHIP option is set | 
|  | 53 | * | 
|  | 54 | * Create a bad block table by scanning the device | 
|  | 55 | * for the given good/bad block identify pattern | 
|  | 56 | */ | 
|  | 57 | static int create_bbt(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_descr *bd, int chip) | 
|  | 58 | { | 
|  | 59 | struct onenand_chip *this = mtd->priv; | 
|  | 60 | struct bbm_info *bbm = this->bbm; | 
|  | 61 | int i, j, numblocks, len, scanlen; | 
|  | 62 | int startblock; | 
|  | 63 | loff_t from; | 
|  | 64 | size_t readlen, ooblen; | 
| Kyungmin Park | 211ac75 | 2007-02-07 12:15:01 +0900 | [diff] [blame] | 65 | struct mtd_oob_ops ops; | 
| Rohit Hagargundgi | 5988af2 | 2009-05-12 13:46:57 -0700 | [diff] [blame] | 66 | int rgn; | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 67 |  | 
|  | 68 | printk(KERN_INFO "Scanning device for bad blocks\n"); | 
|  | 69 |  | 
| Adrian Hunter | ec255e3 | 2007-01-22 21:30:31 +0900 | [diff] [blame] | 70 | len = 2; | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 71 |  | 
|  | 72 | /* We need only read few bytes from the OOB area */ | 
|  | 73 | scanlen = ooblen = 0; | 
|  | 74 | readlen = bd->len; | 
|  | 75 |  | 
|  | 76 | /* chip == -1 case only */ | 
|  | 77 | /* Note that numblocks is 2 * (real numblocks) here; | 
|  | 78 | * see i += 2 below as it makses shifting and masking less painful | 
|  | 79 | */ | 
| Rohit Hagargundgi | 5988af2 | 2009-05-12 13:46:57 -0700 | [diff] [blame] | 80 | numblocks = this->chipsize >> (bbm->bbt_erase_shift - 1); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 81 | startblock = 0; | 
|  | 82 | from = 0; | 
|  | 83 |  | 
| Kyungmin Park | 211ac75 | 2007-02-07 12:15:01 +0900 | [diff] [blame] | 84 | ops.mode = MTD_OOB_PLACE; | 
|  | 85 | ops.ooblen = readlen; | 
|  | 86 | ops.oobbuf = buf; | 
|  | 87 | ops.len = ops.ooboffs = ops.retlen = ops.oobretlen = 0; | 
|  | 88 |  | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 89 | for (i = startblock; i < numblocks; ) { | 
|  | 90 | int ret; | 
|  | 91 |  | 
|  | 92 | for (j = 0; j < len; j++) { | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 93 | /* No need to read pages fully, | 
|  | 94 | * just read required OOB bytes */ | 
| Kyungmin Park | 211ac75 | 2007-02-07 12:15:01 +0900 | [diff] [blame] | 95 | ret = onenand_bbt_read_oob(mtd, from + j * mtd->writesize + bd->offs, &ops); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 96 |  | 
| Kyungmin Park | f627248 | 2006-12-22 16:02:50 +0900 | [diff] [blame] | 97 | /* If it is a initial bad block, just ignore it */ | 
| Kyungmin Park | 211ac75 | 2007-02-07 12:15:01 +0900 | [diff] [blame] | 98 | if (ret == ONENAND_BBT_READ_FATAL_ERROR) | 
|  | 99 | return -EIO; | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 100 |  | 
| Kyungmin Park | 211ac75 | 2007-02-07 12:15:01 +0900 | [diff] [blame] | 101 | if (ret || check_short_pattern(&buf[j * scanlen], scanlen, mtd->writesize, bd)) { | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 102 | bbm->bbt[i >> 3] |= 0x03 << (i & 0x6); | 
|  | 103 | printk(KERN_WARNING "Bad eraseblock %d at 0x%08x\n", | 
|  | 104 | i >> 1, (unsigned int) from); | 
| Kyungmin Park | f4f91ac | 2006-11-16 12:03:56 +0900 | [diff] [blame] | 105 | mtd->ecc_stats.badblocks++; | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 106 | break; | 
|  | 107 | } | 
|  | 108 | } | 
|  | 109 | i += 2; | 
| Rohit Hagargundgi | 5988af2 | 2009-05-12 13:46:57 -0700 | [diff] [blame] | 110 |  | 
|  | 111 | if (FLEXONENAND(this)) { | 
|  | 112 | rgn = flexonenand_region(mtd, from); | 
|  | 113 | from += mtd->eraseregions[rgn].erasesize; | 
|  | 114 | } else | 
|  | 115 | from += (1 << bbm->bbt_erase_shift); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 116 | } | 
|  | 117 |  | 
|  | 118 | return 0; | 
|  | 119 | } | 
|  | 120 |  | 
|  | 121 |  | 
|  | 122 | /** | 
|  | 123 | * onenand_memory_bbt - [GENERIC] create a memory based bad block table | 
|  | 124 | * @param mtd		MTD device structure | 
|  | 125 | * @param bd		descriptor for the good/bad block search pattern | 
|  | 126 | * | 
|  | 127 | * The function creates a memory based bbt by scanning the device | 
|  | 128 | * for manufacturer / software marked good / bad blocks | 
|  | 129 | */ | 
|  | 130 | static inline int onenand_memory_bbt (struct mtd_info *mtd, struct nand_bbt_descr *bd) | 
|  | 131 | { | 
| Kyungmin Park | 532a37c | 2005-12-16 11:17:29 +0900 | [diff] [blame] | 132 | struct onenand_chip *this = mtd->priv; | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 133 |  | 
|  | 134 | bd->options &= ~NAND_BBT_SCANEMPTY; | 
| Kyungmin Park | 532a37c | 2005-12-16 11:17:29 +0900 | [diff] [blame] | 135 | return create_bbt(mtd, this->page_buf, bd, -1); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 136 | } | 
|  | 137 |  | 
|  | 138 | /** | 
|  | 139 | * onenand_isbad_bbt - [OneNAND Interface] Check if a block is bad | 
|  | 140 | * @param mtd		MTD device structure | 
|  | 141 | * @param offs		offset in the device | 
|  | 142 | * @param allowbbt	allow access to bad block table region | 
|  | 143 | */ | 
|  | 144 | static int onenand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt) | 
|  | 145 | { | 
|  | 146 | struct onenand_chip *this = mtd->priv; | 
|  | 147 | struct bbm_info *bbm = this->bbm; | 
|  | 148 | int block; | 
|  | 149 | uint8_t res; | 
|  | 150 |  | 
|  | 151 | /* Get block number * 2 */ | 
| Rohit Hagargundgi | 5988af2 | 2009-05-12 13:46:57 -0700 | [diff] [blame] | 152 | block = (int) (onenand_block(this, offs) << 1); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 153 | res = (bbm->bbt[block >> 3] >> (block & 0x06)) & 0x03; | 
|  | 154 |  | 
|  | 155 | DEBUG(MTD_DEBUG_LEVEL2, "onenand_isbad_bbt: bbt info for offs 0x%08x: (block %d) 0x%02x\n", | 
|  | 156 | (unsigned int) offs, block >> 1, res); | 
|  | 157 |  | 
|  | 158 | switch ((int) res) { | 
|  | 159 | case 0x00:	return 0; | 
|  | 160 | case 0x01:	return 1; | 
|  | 161 | case 0x02:	return allowbbt ? 0 : 1; | 
|  | 162 | } | 
|  | 163 |  | 
|  | 164 | return 1; | 
|  | 165 | } | 
|  | 166 |  | 
|  | 167 | /** | 
|  | 168 | * onenand_scan_bbt - [OneNAND Interface] scan, find, read and maybe create bad block table(s) | 
|  | 169 | * @param mtd		MTD device structure | 
|  | 170 | * @param bd		descriptor for the good/bad block search pattern | 
|  | 171 | * | 
|  | 172 | * The function checks, if a bad block table(s) is/are already | 
|  | 173 | * available. If not it scans the device for manufacturer | 
|  | 174 | * marked good / bad blocks and writes the bad block table(s) to | 
|  | 175 | * the selected place. | 
|  | 176 | * | 
| Adrian Hunter | f00b004 | 2007-01-22 17:01:01 +0900 | [diff] [blame] | 177 | * The bad block table memory is allocated here. It is freed | 
|  | 178 | * by the onenand_release function. | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 179 | * | 
|  | 180 | */ | 
|  | 181 | int onenand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd) | 
|  | 182 | { | 
|  | 183 | struct onenand_chip *this = mtd->priv; | 
|  | 184 | struct bbm_info *bbm = this->bbm; | 
|  | 185 | int len, ret = 0; | 
|  | 186 |  | 
| Rohit Hagargundgi | 5988af2 | 2009-05-12 13:46:57 -0700 | [diff] [blame] | 187 | len = this->chipsize >> (this->erase_shift + 2); | 
| Burman Yan | 95b93a0 | 2006-11-15 21:10:29 +0200 | [diff] [blame] | 188 | /* Allocate memory (2bit per block) and clear the memory bad block table */ | 
|  | 189 | bbm->bbt = kzalloc(len, GFP_KERNEL); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 190 | if (!bbm->bbt) { | 
|  | 191 | printk(KERN_ERR "onenand_scan_bbt: Out of memory\n"); | 
|  | 192 | return -ENOMEM; | 
|  | 193 | } | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 194 |  | 
|  | 195 | /* Set the bad block position */ | 
|  | 196 | bbm->badblockpos = ONENAND_BADBLOCK_POS; | 
|  | 197 |  | 
|  | 198 | /* Set erase shift */ | 
|  | 199 | bbm->bbt_erase_shift = this->erase_shift; | 
|  | 200 |  | 
|  | 201 | if (!bbm->isbad_bbt) | 
|  | 202 | bbm->isbad_bbt = onenand_isbad_bbt; | 
|  | 203 |  | 
|  | 204 | /* Scan the device to build a memory based bad block table */ | 
|  | 205 | if ((ret = onenand_memory_bbt(mtd, bd))) { | 
|  | 206 | printk(KERN_ERR "onenand_scan_bbt: Can't scan flash and build the RAM-based BBT\n"); | 
|  | 207 | kfree(bbm->bbt); | 
|  | 208 | bbm->bbt = NULL; | 
|  | 209 | } | 
|  | 210 |  | 
|  | 211 | return ret; | 
|  | 212 | } | 
|  | 213 |  | 
|  | 214 | /* | 
|  | 215 | * Define some generic bad / good block scan pattern which are used | 
|  | 216 | * while scanning a device for factory marked good / bad blocks. | 
|  | 217 | */ | 
|  | 218 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; | 
|  | 219 |  | 
|  | 220 | static struct nand_bbt_descr largepage_memorybased = { | 
|  | 221 | .options = 0, | 
|  | 222 | .offs = 0, | 
|  | 223 | .len = 2, | 
|  | 224 | .pattern = scan_ff_pattern, | 
|  | 225 | }; | 
|  | 226 |  | 
|  | 227 | /** | 
|  | 228 | * onenand_default_bbt - [OneNAND Interface] Select a default bad block table for the device | 
|  | 229 | * @param mtd		MTD device structure | 
|  | 230 | * | 
|  | 231 | * This function selects the default bad block table | 
|  | 232 | * support for the device and calls the onenand_scan_bbt function | 
|  | 233 | */ | 
|  | 234 | int onenand_default_bbt(struct mtd_info *mtd) | 
|  | 235 | { | 
|  | 236 | struct onenand_chip *this = mtd->priv; | 
|  | 237 | struct bbm_info *bbm; | 
|  | 238 |  | 
| Burman Yan | 95b93a0 | 2006-11-15 21:10:29 +0200 | [diff] [blame] | 239 | this->bbm = kzalloc(sizeof(struct bbm_info), GFP_KERNEL); | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 240 | if (!this->bbm) | 
|  | 241 | return -ENOMEM; | 
|  | 242 |  | 
|  | 243 | bbm = this->bbm; | 
|  | 244 |  | 
| Kyungmin Park | 87590e2 | 2005-09-27 11:26:39 +0100 | [diff] [blame] | 245 | /* 1KB page has same configuration as 2KB page */ | 
|  | 246 | if (!bbm->badblock_pattern) | 
|  | 247 | bbm->badblock_pattern = &largepage_memorybased; | 
|  | 248 |  | 
|  | 249 | return onenand_scan_bbt(mtd, bbm->badblock_pattern); | 
|  | 250 | } | 
|  | 251 |  | 
|  | 252 | EXPORT_SYMBOL(onenand_scan_bbt); | 
|  | 253 | EXPORT_SYMBOL(onenand_default_bbt); |