2 * Copyright (C) 2006-2008 Nokia Corporation
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; see the file COPYING. If not, write to the Free Software
15 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 * Test random reads, writes and erases on MTD device.
19 * Author: Adrian Hunter <ext-adrian.hunter@nokia.com>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/err.h>
26 #include <linux/mtd/mtd.h>
27 #include <linux/sched.h>
28 #include <linux/vmalloc.h>
30 #define PRINT_PREF KERN_INFO "mtd_stresstest: "
33 module_param(dev, int, S_IRUGO);
34 MODULE_PARM_DESC(dev, "MTD device number to use");
36 static int count = 10000;
37 module_param(count, int, S_IRUGO);
38 MODULE_PARM_DESC(count, "Number of operations to do (default is 10000)");
40 static struct mtd_info *mtd;
41 static unsigned char *writebuf;
42 static unsigned char *readbuf;
43 static unsigned char *bbt;
50 static unsigned long next = 1;
52 static inline unsigned int simple_rand(void)
54 next = next * 1103515245 + 12345;
55 return (unsigned int)((next / 65536) % 32768);
58 static inline void simple_srand(unsigned long seed)
63 static int rand_eb(void)
71 eb = (simple_rand() << 15) | simple_rand();
72 /* Read or write up 2 eraseblocks at a time - hence 'ebcnt - 1' */
79 static int rand_offs(void)
86 offs = (simple_rand() << 15) | simple_rand();
91 static int rand_len(int offs)
98 len = (simple_rand() << 15) | simple_rand();
99 len %= (bufsize - offs);
103 static int erase_eraseblock(int ebnum)
106 struct erase_info ei;
107 loff_t addr = ebnum * mtd->erasesize;
109 memset(&ei, 0, sizeof(struct erase_info));
112 ei.len = mtd->erasesize;
114 err = mtd->erase(mtd, &ei);
116 printk(PRINT_PREF "error %d while erasing EB %d\n", err, ebnum);
120 if (unlikely(ei.state == MTD_ERASE_FAILED)) {
121 printk(PRINT_PREF "some erase error occurred at EB %d\n",
129 static int is_block_bad(int ebnum)
131 loff_t addr = ebnum * mtd->erasesize;
134 ret = mtd->block_isbad(mtd, addr);
136 printk(PRINT_PREF "block %d is bad\n", ebnum);
140 static int do_read(void)
144 int offs = rand_offs();
145 int len = rand_len(offs), err;
149 if (offs >= mtd->erasesize)
150 offs -= mtd->erasesize;
151 if (offs + len > mtd->erasesize)
152 len = mtd->erasesize - offs;
154 addr = eb * mtd->erasesize + offs;
155 err = mtd->read(mtd, addr, len, &read, readbuf);
158 if (unlikely(err || read != len)) {
159 printk(PRINT_PREF "error: read failed at 0x%llx\n",
168 static int do_write(void)
170 int eb = rand_eb(), offs, err, len;
175 if (offs >= mtd->erasesize) {
176 err = erase_eraseblock(eb);
179 offs = offsets[eb] = 0;
181 len = rand_len(offs);
182 len = ((len + pgsize - 1) / pgsize) * pgsize;
183 if (offs + len > mtd->erasesize) {
185 len = mtd->erasesize - offs;
187 err = erase_eraseblock(eb + 1);
193 addr = eb * mtd->erasesize + offs;
194 err = mtd->write(mtd, addr, len, &written, writebuf);
195 if (unlikely(err || written != len)) {
196 printk(PRINT_PREF "error: write failed at 0x%llx\n",
203 while (offs > mtd->erasesize) {
204 offsets[eb++] = mtd->erasesize;
205 offs -= mtd->erasesize;
211 static int do_operation(void)
213 if (simple_rand() & 1)
219 static int scan_for_bad_eraseblocks(void)
223 bbt = kmalloc(ebcnt, GFP_KERNEL);
225 printk(PRINT_PREF "error: cannot allocate memory\n");
228 memset(bbt, 0 , ebcnt);
230 printk(PRINT_PREF "scanning for bad eraseblocks\n");
231 for (i = 0; i < ebcnt; ++i) {
232 bbt[i] = is_block_bad(i) ? 1 : 0;
237 printk(PRINT_PREF "scanned %d eraseblocks, %d are bad\n", i, bad);
241 static int __init mtd_stresstest_init(void)
247 printk(KERN_INFO "\n");
248 printk(KERN_INFO "=================================================\n");
249 printk(PRINT_PREF "MTD device: %d\n", dev);
251 mtd = get_mtd_device(NULL, dev);
254 printk(PRINT_PREF "error: cannot get MTD device\n");
258 if (mtd->writesize == 1) {
259 printk(PRINT_PREF "not NAND flash, assume page size is 512 "
263 pgsize = mtd->writesize;
266 do_div(tmp, mtd->erasesize);
268 pgcnt = mtd->erasesize / mtd->writesize;
270 printk(PRINT_PREF "MTD device size %llu, eraseblock size %u, "
271 "page size %u, count of eraseblocks %u, pages per "
272 "eraseblock %u, OOB size %u\n",
273 (unsigned long long)mtd->size, mtd->erasesize,
274 pgsize, ebcnt, pgcnt, mtd->oobsize);
276 /* Read or write up 2 eraseblocks at a time */
277 bufsize = mtd->erasesize * 2;
280 readbuf = vmalloc(bufsize);
281 writebuf = vmalloc(bufsize);
282 offsets = kmalloc(ebcnt * sizeof(int), GFP_KERNEL);
283 if (!readbuf || !writebuf || !offsets) {
284 printk(PRINT_PREF "error: cannot allocate memory\n");
287 for (i = 0; i < ebcnt; i++)
288 offsets[i] = mtd->erasesize;
289 simple_srand(current->pid);
290 for (i = 0; i < bufsize; i++)
291 writebuf[i] = simple_rand();
293 err = scan_for_bad_eraseblocks();
298 printk(PRINT_PREF "doing operations\n");
299 for (op = 0; op < count; op++) {
300 if ((op & 1023) == 0)
301 printk(PRINT_PREF "%d operations done\n", op);
302 err = do_operation();
307 printk(PRINT_PREF "finished, %d operations done\n", op);
316 printk(PRINT_PREF "error %d occurred\n", err);
317 printk(KERN_INFO "=================================================\n");
320 module_init(mtd_stresstest_init);
322 static void __exit mtd_stresstest_exit(void)
326 module_exit(mtd_stresstest_exit);
328 MODULE_DESCRIPTION("Stress test module");
329 MODULE_AUTHOR("Adrian Hunter");
330 MODULE_LICENSE("GPL");