2 * sharpslpart.c - MTD partition parser for NAND flash using the SHARP FTL
3 * for logical addressing, as used on the PXA models of the SHARP SL Series.
7 * Based on SHARP GPL 2.4 sources:
8 * http://support.ezaurus.com/developer/source/source_dl.asp
9 * drivers/mtd/nand/sharp_sl_logical.c
10 * linux/include/asm-arm/sharp_nand_logical.h
12 * Copyright (C) 2002 SHARP
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/bitops.h>
31 #include <linux/sizes.h>
32 #include <linux/mtd/mtd.h>
33 #include <linux/mtd/partitions.h>
36 #define NAND_NOOB_LOGADDR_00 8
37 #define NAND_NOOB_LOGADDR_01 9
38 #define NAND_NOOB_LOGADDR_10 10
39 #define NAND_NOOB_LOGADDR_11 11
40 #define NAND_NOOB_LOGADDR_20 12
41 #define NAND_NOOB_LOGADDR_21 13
43 #define BLOCK_IS_RESERVED 0xffff
44 #define BLOCK_UNMASK_COMPLEMENT 1
46 /* factory defaults */
47 #define SHARPSL_NAND_PARTS 3
48 #define SHARPSL_FTL_PART_SIZE (7 * SZ_1M)
49 #define SHARPSL_PARTINFO1_LADDR 0x00060000
50 #define SHARPSL_PARTINFO2_LADDR 0x00064000
52 #define BOOT_MAGIC 0x424f4f54
53 #define FSRO_MAGIC 0x4653524f
54 #define FSRW_MAGIC 0x46535257
57 * struct sharpsl_ftl - Sharp FTL Logical Table
58 * @logmax: number of logical blocks
59 * @log2phy: the logical-to-physical table
61 * Structure containing the logical-to-physical translation table
62 * used by the SHARP SL FTL.
66 unsigned int *log2phy;
69 /* verify that the OOB bytes 8 to 15 are free and available for the FTL */
70 static int sharpsl_nand_check_ooblayout(struct mtd_info *mtd)
76 struct mtd_oob_region oobfree = { };
79 ret = mtd_ooblayout_free(mtd, section++, &oobfree);
83 if (!oobfree.length || oobfree.offset > 15 ||
84 (oobfree.offset + oobfree.length) < 8)
87 i = oobfree.offset >= 8 ? oobfree.offset : 8;
88 for (; i < oobfree.offset + oobfree.length && i < 16; i++)
89 freebytes |= BIT(i - 8);
91 if (freebytes == 0xff)
98 static int sharpsl_nand_read_oob(struct mtd_info *mtd, loff_t offs, u8 *buf)
100 struct mtd_oob_ops ops = { };
103 ops.mode = MTD_OPS_PLACE_OOB;
104 ops.ooblen = mtd->oobsize;
107 ret = mtd_read_oob(mtd, offs, &ops);
108 if (ret != 0 || mtd->oobsize != ops.oobretlen)
115 * The logical block number assigned to a physical block is stored in the OOB
116 * of the first page, in 3 16-bit copies with the following layout:
122 * When reading we check that the first two copies agree.
123 * In case of error, matching is tried using the following pairs.
124 * Reserved values 0xffff mean the block is kept for wear leveling.
128 * ECC BB xyxy oob[8]==oob[10] && oob[9]==oob[11] -> byte0=8 byte1=9
129 * ECC BB xyxy oob[10]==oob[12] && oob[11]==oob[13] -> byte0=10 byte1=11
130 * ECC BB xy xy oob[12]==oob[8] && oob[13]==oob[9] -> byte0=12 byte1=13
132 static int sharpsl_nand_get_logical_num(u8 *oob)
137 if (oob[NAND_NOOB_LOGADDR_00] == oob[NAND_NOOB_LOGADDR_10] &&
138 oob[NAND_NOOB_LOGADDR_01] == oob[NAND_NOOB_LOGADDR_11]) {
139 good0 = NAND_NOOB_LOGADDR_00;
140 good1 = NAND_NOOB_LOGADDR_01;
141 } else if (oob[NAND_NOOB_LOGADDR_10] == oob[NAND_NOOB_LOGADDR_20] &&
142 oob[NAND_NOOB_LOGADDR_11] == oob[NAND_NOOB_LOGADDR_21]) {
143 good0 = NAND_NOOB_LOGADDR_10;
144 good1 = NAND_NOOB_LOGADDR_11;
145 } else if (oob[NAND_NOOB_LOGADDR_20] == oob[NAND_NOOB_LOGADDR_00] &&
146 oob[NAND_NOOB_LOGADDR_21] == oob[NAND_NOOB_LOGADDR_01]) {
147 good0 = NAND_NOOB_LOGADDR_20;
148 good1 = NAND_NOOB_LOGADDR_21;
153 us = oob[good0] | oob[good1] << 8;
156 if (hweight16(us) & BLOCK_UNMASK_COMPLEMENT)
160 if (us == BLOCK_IS_RESERVED)
161 return BLOCK_IS_RESERVED;
163 return (us >> 1) & GENMASK(9, 0);
166 static int sharpsl_nand_init_ftl(struct mtd_info *mtd, struct sharpsl_ftl *ftl)
168 unsigned int block_num, log_num, phymax;
173 oob = kzalloc(mtd->oobsize, GFP_KERNEL);
177 phymax = mtd_div_by_eb(SHARPSL_FTL_PART_SIZE, mtd);
179 /* FTL reserves 5% of the blocks + 1 spare */
180 ftl->logmax = ((phymax * 95) / 100) - 1;
182 ftl->log2phy = kmalloc_array(ftl->logmax, sizeof(*ftl->log2phy),
189 /* initialize ftl->log2phy */
190 for (i = 0; i < ftl->logmax; i++)
191 ftl->log2phy[i] = UINT_MAX;
193 /* create physical-logical table */
194 for (block_num = 0; block_num < phymax; block_num++) {
195 block_adr = (loff_t)block_num * mtd->erasesize;
197 if (mtd_block_isbad(mtd, block_adr))
200 if (sharpsl_nand_read_oob(mtd, block_adr, oob))
203 /* get logical block */
204 log_num = sharpsl_nand_get_logical_num(oob);
206 /* cut-off errors and skip the out-of-range values */
207 if (log_num > 0 && log_num < ftl->logmax) {
208 if (ftl->log2phy[log_num] == UINT_MAX)
209 ftl->log2phy[log_num] = block_num;
213 pr_info("Sharp SL FTL: %d blocks used (%d logical, %d reserved)\n",
214 phymax, ftl->logmax, phymax - ftl->logmax);
222 static void sharpsl_nand_cleanup_ftl(struct sharpsl_ftl *ftl)
227 static int sharpsl_nand_read_laddr(struct mtd_info *mtd,
231 struct sharpsl_ftl *ftl)
233 unsigned int log_num, final_log_num;
234 unsigned int block_num;
240 log_num = mtd_div_by_eb((u32)from, mtd);
241 final_log_num = mtd_div_by_eb(((u32)from + len - 1), mtd);
243 if (len <= 0 || log_num >= ftl->logmax || final_log_num > log_num)
246 block_num = ftl->log2phy[log_num];
247 block_adr = (loff_t)block_num * mtd->erasesize;
248 block_ofs = mtd_mod_by_eb((u32)from, mtd);
250 err = mtd_read(mtd, block_adr + block_ofs, len, &retlen, buf);
251 /* Ignore corrected ECC errors */
252 if (mtd_is_bitflip(err))
255 if (!err && retlen != len)
259 pr_err("sharpslpart: error, read failed at %#llx\n",
260 block_adr + block_ofs);
266 * MTD Partition Parser
268 * Sample values read from SL-C860
271 * dev: size erasesize name
272 * mtd0: 006d0000 00020000 "Filesystem"
273 * mtd1: 00700000 00004000 "smf"
274 * mtd2: 03500000 00004000 "root"
275 * mtd3: 04400000 00004000 "home"
278 * 0x00060000: 00 00 00 00 00 00 70 00 42 4f 4f 54 00 00 00 00 ......p.BOOT....
279 * 0x00060010: 00 00 70 00 00 00 c0 03 46 53 52 4f 00 00 00 00 ..p.....FSRO....
280 * 0x00060020: 00 00 c0 03 00 00 00 04 46 53 52 57 00 00 00 00 ........FSRW....
282 struct sharpsl_nand_partinfo {
289 static int sharpsl_nand_read_partinfo(struct mtd_info *master,
292 struct sharpsl_nand_partinfo *buf,
293 struct sharpsl_ftl *ftl)
297 ret = sharpsl_nand_read_laddr(master, from, len, buf, ftl);
301 /* check for magics */
302 if (be32_to_cpu(buf[0].magic) != BOOT_MAGIC ||
303 be32_to_cpu(buf[1].magic) != FSRO_MAGIC ||
304 be32_to_cpu(buf[2].magic) != FSRW_MAGIC) {
305 pr_err("sharpslpart: magic values mismatch\n");
309 /* fixup for hardcoded value 64 MiB (for older models) */
310 buf[2].end = cpu_to_le32(master->size);
312 /* extra sanity check */
313 if (le32_to_cpu(buf[0].end) <= le32_to_cpu(buf[0].start) ||
314 le32_to_cpu(buf[1].start) < le32_to_cpu(buf[0].end) ||
315 le32_to_cpu(buf[1].end) <= le32_to_cpu(buf[1].start) ||
316 le32_to_cpu(buf[2].start) < le32_to_cpu(buf[1].end) ||
317 le32_to_cpu(buf[2].end) <= le32_to_cpu(buf[2].start)) {
318 pr_err("sharpslpart: partition sizes mismatch\n");
325 static int sharpsl_parse_mtd_partitions(struct mtd_info *master,
326 const struct mtd_partition **pparts,
327 struct mtd_part_parser_data *data)
329 struct sharpsl_ftl ftl;
330 struct sharpsl_nand_partinfo buf[SHARPSL_NAND_PARTS];
331 struct mtd_partition *sharpsl_nand_parts;
334 /* check that OOB bytes 8 to 15 used by the FTL are actually free */
335 err = sharpsl_nand_check_ooblayout(master);
339 /* init logical mgmt (FTL) */
340 err = sharpsl_nand_init_ftl(master, &ftl);
344 /* read and validate first partition table */
345 pr_info("sharpslpart: try reading first partition table\n");
346 err = sharpsl_nand_read_partinfo(master,
347 SHARPSL_PARTINFO1_LADDR,
348 sizeof(buf), buf, &ftl);
350 /* fallback: read second partition table */
351 pr_warn("sharpslpart: first partition table is invalid, retry using the second\n");
352 err = sharpsl_nand_read_partinfo(master,
353 SHARPSL_PARTINFO2_LADDR,
354 sizeof(buf), buf, &ftl);
357 /* cleanup logical mgmt (FTL) */
358 sharpsl_nand_cleanup_ftl(&ftl);
361 pr_err("sharpslpart: both partition tables are invalid\n");
365 sharpsl_nand_parts = kcalloc(SHARPSL_NAND_PARTS,
366 sizeof(*sharpsl_nand_parts),
368 if (!sharpsl_nand_parts)
372 sharpsl_nand_parts[0].name = "smf";
373 sharpsl_nand_parts[0].offset = le32_to_cpu(buf[0].start);
374 sharpsl_nand_parts[0].size = le32_to_cpu(buf[0].end) -
375 le32_to_cpu(buf[0].start);
377 sharpsl_nand_parts[1].name = "root";
378 sharpsl_nand_parts[1].offset = le32_to_cpu(buf[1].start);
379 sharpsl_nand_parts[1].size = le32_to_cpu(buf[1].end) -
380 le32_to_cpu(buf[1].start);
382 sharpsl_nand_parts[2].name = "home";
383 sharpsl_nand_parts[2].offset = le32_to_cpu(buf[2].start);
384 sharpsl_nand_parts[2].size = le32_to_cpu(buf[2].end) -
385 le32_to_cpu(buf[2].start);
387 *pparts = sharpsl_nand_parts;
388 return SHARPSL_NAND_PARTS;
391 static struct mtd_part_parser sharpsl_mtd_parser = {
392 .parse_fn = sharpsl_parse_mtd_partitions,
393 .name = "sharpslpart",
395 module_mtd_part_parser(sharpsl_mtd_parser);
397 MODULE_LICENSE("GPL");
399 MODULE_DESCRIPTION("MTD partitioning for NAND flash on Sharp SL Series");