mtd_readtest.c 5.6 KB
Newer Older
A
Artem Bityutskiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (C) 2006-2008 Nokia Corporation
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; see the file COPYING. If not, write to the Free Software
 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * Check MTD device read.
 *
 * Author: Adrian Hunter <ext-adrian.hunter@nokia.com>
 */

22 23
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

A
Artem Bityutskiy 已提交
24 25 26 27 28
#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/err.h>
#include <linux/mtd/mtd.h>
29
#include <linux/slab.h>
A
Artem Bityutskiy 已提交
30 31
#include <linux/sched.h>

32
static int dev = -EINVAL;
A
Artem Bityutskiy 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46
module_param(dev, int, S_IRUGO);
MODULE_PARM_DESC(dev, "MTD device number to use");

static struct mtd_info *mtd;
static unsigned char *iobuf;
static unsigned char *iobuf1;
static unsigned char *bbt;

static int pgsize;
static int ebcnt;
static int pgcnt;

static int read_eraseblock_by_page(int ebnum)
{
47
	size_t read;
A
Artem Bityutskiy 已提交
48 49 50 51 52 53
	int i, ret, err = 0;
	loff_t addr = ebnum * mtd->erasesize;
	void *buf = iobuf;
	void *oobbuf = iobuf1;

	for (i = 0; i < pgcnt; i++) {
54
		memset(buf, 0 , pgsize);
55
		ret = mtd_read(mtd, addr, pgsize, &read, buf);
A
Artem Bityutskiy 已提交
56 57 58
		if (ret == -EUCLEAN)
			ret = 0;
		if (ret || read != pgsize) {
59
			pr_err("error: read failed at %#llx\n",
A
Artem Bityutskiy 已提交
60 61 62 63 64 65 66 67 68
			       (long long)addr);
			if (!err)
				err = ret;
			if (!err)
				err = -EINVAL;
		}
		if (mtd->oobsize) {
			struct mtd_oob_ops ops;

69
			ops.mode      = MTD_OPS_PLACE_OOB;
A
Artem Bityutskiy 已提交
70 71 72 73 74
			ops.len       = 0;
			ops.retlen    = 0;
			ops.ooblen    = mtd->oobsize;
			ops.oobretlen = 0;
			ops.ooboffs   = 0;
75
			ops.datbuf    = NULL;
A
Artem Bityutskiy 已提交
76
			ops.oobbuf    = oobbuf;
77
			ret = mtd_read_oob(mtd, addr, &ops);
78
			if ((ret && !mtd_is_bitflip(ret)) ||
79
					ops.oobretlen != mtd->oobsize) {
80
				pr_err("error: read oob failed at "
A
Artem Bityutskiy 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
						  "%#llx\n", (long long)addr);
				if (!err)
					err = ret;
				if (!err)
					err = -EINVAL;
			}
			oobbuf += mtd->oobsize;
		}
		addr += pgsize;
		buf += pgsize;
	}

	return err;
}

static void dump_eraseblock(int ebnum)
{
	int i, j, n;
	char line[128];
	int pg, oob;

102
	pr_info("dumping eraseblock %d\n", ebnum);
A
Artem Bityutskiy 已提交
103 104 105 106 107 108 109 110 111 112 113 114
	n = mtd->erasesize;
	for (i = 0; i < n;) {
		char *p = line;

		p += sprintf(p, "%05x: ", i);
		for (j = 0; j < 32 && i < n; j++, i++)
			p += sprintf(p, "%02x", (unsigned int)iobuf[i]);
		printk(KERN_CRIT "%s\n", line);
		cond_resched();
	}
	if (!mtd->oobsize)
		return;
115
	pr_info("dumping oob from eraseblock %d\n", ebnum);
A
Artem Bityutskiy 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
	n = mtd->oobsize;
	for (pg = 0, i = 0; pg < pgcnt; pg++)
		for (oob = 0; oob < n;) {
			char *p = line;

			p += sprintf(p, "%05x: ", i);
			for (j = 0; j < 32 && oob < n; j++, oob++, i++)
				p += sprintf(p, "%02x",
					     (unsigned int)iobuf1[i]);
			printk(KERN_CRIT "%s\n", line);
			cond_resched();
		}
}

static int is_block_bad(int ebnum)
{
	loff_t addr = ebnum * mtd->erasesize;
	int ret;

135
	ret = mtd_block_isbad(mtd, addr);
A
Artem Bityutskiy 已提交
136
	if (ret)
137
		pr_info("block %d is bad\n", ebnum);
A
Artem Bityutskiy 已提交
138 139 140 141 142 143 144
	return ret;
}

static int scan_for_bad_eraseblocks(void)
{
	int i, bad = 0;

J
Julia Lawall 已提交
145
	bbt = kzalloc(ebcnt, GFP_KERNEL);
146
	if (!bbt)
A
Artem Bityutskiy 已提交
147 148
		return -ENOMEM;

149
	if (!mtd_can_have_bb(mtd))
150 151
		return 0;

152
	pr_info("scanning for bad eraseblocks\n");
A
Artem Bityutskiy 已提交
153 154 155 156 157 158
	for (i = 0; i < ebcnt; ++i) {
		bbt[i] = is_block_bad(i) ? 1 : 0;
		if (bbt[i])
			bad += 1;
		cond_resched();
	}
159
	pr_info("scanned %d eraseblocks, %d are bad\n", i, bad);
A
Artem Bityutskiy 已提交
160 161 162 163 164 165 166 167 168 169
	return 0;
}

static int __init mtd_readtest_init(void)
{
	uint64_t tmp;
	int err, i;

	printk(KERN_INFO "\n");
	printk(KERN_INFO "=================================================\n");
170 171

	if (dev < 0) {
M
Masanari Iida 已提交
172
		pr_info("Please specify a valid mtd-device via module parameter\n");
173 174 175
		return -EINVAL;
	}

176
	pr_info("MTD device: %d\n", dev);
A
Artem Bityutskiy 已提交
177 178 179 180

	mtd = get_mtd_device(NULL, dev);
	if (IS_ERR(mtd)) {
		err = PTR_ERR(mtd);
181
		pr_err("error: Cannot get MTD device\n");
A
Artem Bityutskiy 已提交
182 183 184 185
		return err;
	}

	if (mtd->writesize == 1) {
186
		pr_info("not NAND flash, assume page size is 512 "
A
Artem Bityutskiy 已提交
187 188 189 190 191 192 193 194
		       "bytes.\n");
		pgsize = 512;
	} else
		pgsize = mtd->writesize;

	tmp = mtd->size;
	do_div(tmp, mtd->erasesize);
	ebcnt = tmp;
195
	pgcnt = mtd->erasesize / pgsize;
A
Artem Bityutskiy 已提交
196

197
	pr_info("MTD device size %llu, eraseblock size %u, "
A
Artem Bityutskiy 已提交
198 199 200 201 202 203 204
	       "page size %u, count of eraseblocks %u, pages per "
	       "eraseblock %u, OOB size %u\n",
	       (unsigned long long)mtd->size, mtd->erasesize,
	       pgsize, ebcnt, pgcnt, mtd->oobsize);

	err = -ENOMEM;
	iobuf = kmalloc(mtd->erasesize, GFP_KERNEL);
205
	if (!iobuf)
A
Artem Bityutskiy 已提交
206 207
		goto out;
	iobuf1 = kmalloc(mtd->erasesize, GFP_KERNEL);
208
	if (!iobuf1)
A
Artem Bityutskiy 已提交
209 210 211 212 213 214 215
		goto out;

	err = scan_for_bad_eraseblocks();
	if (err)
		goto out;

	/* Read all eraseblocks 1 page at a time */
216
	pr_info("testing page read\n");
A
Artem Bityutskiy 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	for (i = 0; i < ebcnt; ++i) {
		int ret;

		if (bbt[i])
			continue;
		ret = read_eraseblock_by_page(i);
		if (ret) {
			dump_eraseblock(i);
			if (!err)
				err = ret;
		}
		cond_resched();
	}

	if (err)
232
		pr_info("finished with errors\n");
A
Artem Bityutskiy 已提交
233
	else
234
		pr_info("finished\n");
A
Artem Bityutskiy 已提交
235 236 237 238 239 240 241 242

out:

	kfree(iobuf);
	kfree(iobuf1);
	kfree(bbt);
	put_mtd_device(mtd);
	if (err)
243
		pr_info("error %d occurred\n", err);
A
Artem Bityutskiy 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257
	printk(KERN_INFO "=================================================\n");
	return err;
}
module_init(mtd_readtest_init);

static void __exit mtd_readtest_exit(void)
{
	return;
}
module_exit(mtd_readtest_exit);

MODULE_DESCRIPTION("Read test module");
MODULE_AUTHOR("Adrian Hunter");
MODULE_LICENSE("GPL");