Merge tag 'pinctrl-for-v3.13-1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / mtd / tests / subpagetest.c
CommitLineData
bf60862a
AB
1/*
2 * Copyright (C) 2006-2007 Nokia Corporation
3 *
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.
7 *
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
11 * more details.
12 *
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.
16 *
17 * Test sub-page read and write on MTD device.
18 * Author: Adrian Hunter <ext-adrian.hunter@nokia.com>
19 *
20 */
21
cd66a2df
VN
22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
bf60862a
AB
24#include <linux/init.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/err.h>
28#include <linux/mtd/mtd.h>
5a0e3ad6 29#include <linux/slab.h>
bf60862a 30#include <linux/sched.h>
a312b78b 31#include <linux/random.h>
bf60862a 32
725cd71c
AM
33#include "mtd_test.h"
34
7406060e 35static int dev = -EINVAL;
bf60862a
AB
36module_param(dev, int, S_IRUGO);
37MODULE_PARM_DESC(dev, "MTD device number to use");
38
39static struct mtd_info *mtd;
40static unsigned char *writebuf;
41static unsigned char *readbuf;
42static unsigned char *bbt;
43
44static int subpgsize;
45static int bufsize;
46static int ebcnt;
47static int pgcnt;
48static int errcnt;
a312b78b 49static struct rnd_state rnd_state;
bf60862a
AB
50
51static inline void clear_data(unsigned char *buf, size_t len)
52{
53 memset(buf, 0, len);
54}
55
bf60862a
AB
56static int write_eraseblock(int ebnum)
57{
30fa9848 58 size_t written;
bf60862a
AB
59 int err = 0;
60 loff_t addr = ebnum * mtd->erasesize;
61
a312b78b 62 prandom_bytes_state(&rnd_state, writebuf, subpgsize);
eda95cbf 63 err = mtd_write(mtd, addr, subpgsize, &written, writebuf);
bf60862a 64 if (unlikely(err || written != subpgsize)) {
cd66a2df 65 pr_err("error: write failed at %#llx\n",
bf60862a
AB
66 (long long)addr);
67 if (written != subpgsize) {
cd66a2df
VN
68 pr_err(" write size: %#x\n", subpgsize);
69 pr_err(" written: %#zx\n", written);
bf60862a
AB
70 }
71 return err ? err : -1;
72 }
73
74 addr += subpgsize;
75
a312b78b 76 prandom_bytes_state(&rnd_state, writebuf, subpgsize);
eda95cbf 77 err = mtd_write(mtd, addr, subpgsize, &written, writebuf);
bf60862a 78 if (unlikely(err || written != subpgsize)) {
cd66a2df 79 pr_err("error: write failed at %#llx\n",
bf60862a
AB
80 (long long)addr);
81 if (written != subpgsize) {
cd66a2df
VN
82 pr_err(" write size: %#x\n", subpgsize);
83 pr_err(" written: %#zx\n", written);
bf60862a
AB
84 }
85 return err ? err : -1;
86 }
87
88 return err;
89}
90
91static int write_eraseblock2(int ebnum)
92{
30fa9848 93 size_t written;
bf60862a
AB
94 int err = 0, k;
95 loff_t addr = ebnum * mtd->erasesize;
96
97 for (k = 1; k < 33; ++k) {
98 if (addr + (subpgsize * k) > (ebnum + 1) * mtd->erasesize)
99 break;
a312b78b 100 prandom_bytes_state(&rnd_state, writebuf, subpgsize * k);
eda95cbf 101 err = mtd_write(mtd, addr, subpgsize * k, &written, writebuf);
bf60862a 102 if (unlikely(err || written != subpgsize * k)) {
cd66a2df 103 pr_err("error: write failed at %#llx\n",
bf60862a
AB
104 (long long)addr);
105 if (written != subpgsize) {
cd66a2df 106 pr_err(" write size: %#x\n",
bf60862a 107 subpgsize * k);
cd66a2df 108 pr_err(" written: %#08zx\n",
bf60862a
AB
109 written);
110 }
111 return err ? err : -1;
112 }
113 addr += subpgsize * k;
114 }
115
116 return err;
117}
118
119static void print_subpage(unsigned char *p)
120{
121 int i, j;
122
123 for (i = 0; i < subpgsize; ) {
124 for (j = 0; i < subpgsize && j < 32; ++i, ++j)
125 printk("%02x", *p++);
126 printk("\n");
127 }
128}
129
130static int verify_eraseblock(int ebnum)
131{
30fa9848 132 size_t read;
bf60862a
AB
133 int err = 0;
134 loff_t addr = ebnum * mtd->erasesize;
135
a312b78b 136 prandom_bytes_state(&rnd_state, writebuf, subpgsize);
bf60862a 137 clear_data(readbuf, subpgsize);
329ad399 138 err = mtd_read(mtd, addr, subpgsize, &read, readbuf);
bf60862a 139 if (unlikely(err || read != subpgsize)) {
d57f4054 140 if (mtd_is_bitflip(err) && read == subpgsize) {
cd66a2df 141 pr_info("ECC correction at %#llx\n",
bf60862a
AB
142 (long long)addr);
143 err = 0;
144 } else {
cd66a2df 145 pr_err("error: read failed at %#llx\n",
bf60862a
AB
146 (long long)addr);
147 return err ? err : -1;
148 }
149 }
150 if (unlikely(memcmp(readbuf, writebuf, subpgsize))) {
cd66a2df 151 pr_err("error: verify failed at %#llx\n",
bf60862a 152 (long long)addr);
cd66a2df 153 pr_info("------------- written----------------\n");
bf60862a 154 print_subpage(writebuf);
cd66a2df 155 pr_info("------------- read ------------------\n");
bf60862a 156 print_subpage(readbuf);
cd66a2df 157 pr_info("-------------------------------------\n");
bf60862a
AB
158 errcnt += 1;
159 }
160
161 addr += subpgsize;
162
a312b78b 163 prandom_bytes_state(&rnd_state, writebuf, subpgsize);
bf60862a 164 clear_data(readbuf, subpgsize);
329ad399 165 err = mtd_read(mtd, addr, subpgsize, &read, readbuf);
bf60862a 166 if (unlikely(err || read != subpgsize)) {
d57f4054 167 if (mtd_is_bitflip(err) && read == subpgsize) {
cd66a2df 168 pr_info("ECC correction at %#llx\n",
bf60862a
AB
169 (long long)addr);
170 err = 0;
171 } else {
cd66a2df 172 pr_err("error: read failed at %#llx\n",
bf60862a
AB
173 (long long)addr);
174 return err ? err : -1;
175 }
176 }
177 if (unlikely(memcmp(readbuf, writebuf, subpgsize))) {
cd66a2df 178 pr_info("error: verify failed at %#llx\n",
bf60862a 179 (long long)addr);
cd66a2df 180 pr_info("------------- written----------------\n");
bf60862a 181 print_subpage(writebuf);
cd66a2df 182 pr_info("------------- read ------------------\n");
bf60862a 183 print_subpage(readbuf);
cd66a2df 184 pr_info("-------------------------------------\n");
bf60862a
AB
185 errcnt += 1;
186 }
187
188 return err;
189}
190
191static int verify_eraseblock2(int ebnum)
192{
30fa9848 193 size_t read;
bf60862a
AB
194 int err = 0, k;
195 loff_t addr = ebnum * mtd->erasesize;
196
197 for (k = 1; k < 33; ++k) {
198 if (addr + (subpgsize * k) > (ebnum + 1) * mtd->erasesize)
199 break;
a312b78b 200 prandom_bytes_state(&rnd_state, writebuf, subpgsize * k);
bf60862a 201 clear_data(readbuf, subpgsize * k);
329ad399 202 err = mtd_read(mtd, addr, subpgsize * k, &read, readbuf);
bf60862a 203 if (unlikely(err || read != subpgsize * k)) {
d57f4054 204 if (mtd_is_bitflip(err) && read == subpgsize * k) {
cd66a2df 205 pr_info("ECC correction at %#llx\n",
bf60862a
AB
206 (long long)addr);
207 err = 0;
208 } else {
cd66a2df 209 pr_err("error: read failed at "
bf60862a
AB
210 "%#llx\n", (long long)addr);
211 return err ? err : -1;
212 }
213 }
214 if (unlikely(memcmp(readbuf, writebuf, subpgsize * k))) {
cd66a2df 215 pr_err("error: verify failed at %#llx\n",
bf60862a
AB
216 (long long)addr);
217 errcnt += 1;
218 }
219 addr += subpgsize * k;
220 }
221
222 return err;
223}
224
225static int verify_eraseblock_ff(int ebnum)
226{
227 uint32_t j;
30fa9848 228 size_t read;
bf60862a
AB
229 int err = 0;
230 loff_t addr = ebnum * mtd->erasesize;
231
232 memset(writebuf, 0xff, subpgsize);
233 for (j = 0; j < mtd->erasesize / subpgsize; ++j) {
234 clear_data(readbuf, subpgsize);
329ad399 235 err = mtd_read(mtd, addr, subpgsize, &read, readbuf);
bf60862a 236 if (unlikely(err || read != subpgsize)) {
d57f4054 237 if (mtd_is_bitflip(err) && read == subpgsize) {
cd66a2df 238 pr_info("ECC correction at %#llx\n",
bf60862a
AB
239 (long long)addr);
240 err = 0;
241 } else {
cd66a2df 242 pr_err("error: read failed at "
bf60862a
AB
243 "%#llx\n", (long long)addr);
244 return err ? err : -1;
245 }
246 }
247 if (unlikely(memcmp(readbuf, writebuf, subpgsize))) {
cd66a2df 248 pr_err("error: verify 0xff failed at "
bf60862a
AB
249 "%#llx\n", (long long)addr);
250 errcnt += 1;
251 }
252 addr += subpgsize;
253 }
254
255 return err;
256}
257
258static int verify_all_eraseblocks_ff(void)
259{
260 int err;
261 unsigned int i;
262
cd66a2df 263 pr_info("verifying all eraseblocks for 0xff\n");
bf60862a
AB
264 for (i = 0; i < ebcnt; ++i) {
265 if (bbt[i])
266 continue;
267 err = verify_eraseblock_ff(i);
268 if (err)
269 return err;
270 if (i % 256 == 0)
cd66a2df 271 pr_info("verified up to eraseblock %u\n", i);
bf60862a
AB
272 cond_resched();
273 }
cd66a2df 274 pr_info("verified %u eraseblocks\n", i);
bf60862a
AB
275 return 0;
276}
277
bf60862a
AB
278static int __init mtd_subpagetest_init(void)
279{
280 int err = 0;
281 uint32_t i;
282 uint64_t tmp;
283
284 printk(KERN_INFO "\n");
285 printk(KERN_INFO "=================================================\n");
7406060e
WS
286
287 if (dev < 0) {
064a7694 288 pr_info("Please specify a valid mtd-device via module parameter\n");
cd66a2df 289 pr_crit("CAREFUL: This test wipes all data on the specified MTD device!\n");
7406060e
WS
290 return -EINVAL;
291 }
292
cd66a2df 293 pr_info("MTD device: %d\n", dev);
bf60862a
AB
294
295 mtd = get_mtd_device(NULL, dev);
296 if (IS_ERR(mtd)) {
297 err = PTR_ERR(mtd);
cd66a2df 298 pr_err("error: cannot get MTD device\n");
bf60862a
AB
299 return err;
300 }
301
302 if (mtd->type != MTD_NANDFLASH) {
cd66a2df 303 pr_info("this test requires NAND flash\n");
bf60862a
AB
304 goto out;
305 }
306
307 subpgsize = mtd->writesize >> mtd->subpage_sft;
7b7e905e
RT
308 tmp = mtd->size;
309 do_div(tmp, mtd->erasesize);
310 ebcnt = tmp;
311 pgcnt = mtd->erasesize / mtd->writesize;
312
cd66a2df 313 pr_info("MTD device size %llu, eraseblock size %u, "
bf60862a
AB
314 "page size %u, subpage size %u, count of eraseblocks %u, "
315 "pages per eraseblock %u, OOB size %u\n",
316 (unsigned long long)mtd->size, mtd->erasesize,
317 mtd->writesize, subpgsize, ebcnt, pgcnt, mtd->oobsize);
318
319 err = -ENOMEM;
320 bufsize = subpgsize * 32;
321 writebuf = kmalloc(bufsize, GFP_KERNEL);
33777e66 322 if (!writebuf)
bf60862a 323 goto out;
bf60862a 324 readbuf = kmalloc(bufsize, GFP_KERNEL);
33777e66 325 if (!readbuf)
bf60862a 326 goto out;
725cd71c
AM
327 bbt = kzalloc(ebcnt, GFP_KERNEL);
328 if (!bbt)
329 goto out;
bf60862a 330
725cd71c 331 err = mtdtest_scan_for_bad_eraseblocks(mtd, bbt, 0, ebcnt);
bf60862a
AB
332 if (err)
333 goto out;
334
725cd71c 335 err = mtdtest_erase_good_eraseblocks(mtd, bbt, 0, ebcnt);
bf60862a
AB
336 if (err)
337 goto out;
338
cd66a2df 339 pr_info("writing whole device\n");
a312b78b 340 prandom_seed_state(&rnd_state, 1);
bf60862a
AB
341 for (i = 0; i < ebcnt; ++i) {
342 if (bbt[i])
343 continue;
344 err = write_eraseblock(i);
345 if (unlikely(err))
346 goto out;
347 if (i % 256 == 0)
cd66a2df 348 pr_info("written up to eraseblock %u\n", i);
bf60862a
AB
349 cond_resched();
350 }
cd66a2df 351 pr_info("written %u eraseblocks\n", i);
bf60862a 352
a312b78b 353 prandom_seed_state(&rnd_state, 1);
cd66a2df 354 pr_info("verifying all eraseblocks\n");
bf60862a
AB
355 for (i = 0; i < ebcnt; ++i) {
356 if (bbt[i])
357 continue;
358 err = verify_eraseblock(i);
359 if (unlikely(err))
360 goto out;
361 if (i % 256 == 0)
cd66a2df 362 pr_info("verified up to eraseblock %u\n", i);
bf60862a
AB
363 cond_resched();
364 }
cd66a2df 365 pr_info("verified %u eraseblocks\n", i);
bf60862a 366
725cd71c 367 err = mtdtest_erase_good_eraseblocks(mtd, bbt, 0, ebcnt);
bf60862a
AB
368 if (err)
369 goto out;
370
371 err = verify_all_eraseblocks_ff();
372 if (err)
373 goto out;
374
375 /* Write all eraseblocks */
a312b78b 376 prandom_seed_state(&rnd_state, 3);
cd66a2df 377 pr_info("writing whole device\n");
bf60862a
AB
378 for (i = 0; i < ebcnt; ++i) {
379 if (bbt[i])
380 continue;
381 err = write_eraseblock2(i);
382 if (unlikely(err))
383 goto out;
384 if (i % 256 == 0)
cd66a2df 385 pr_info("written up to eraseblock %u\n", i);
bf60862a
AB
386 cond_resched();
387 }
cd66a2df 388 pr_info("written %u eraseblocks\n", i);
bf60862a
AB
389
390 /* Check all eraseblocks */
a312b78b 391 prandom_seed_state(&rnd_state, 3);
cd66a2df 392 pr_info("verifying all eraseblocks\n");
bf60862a
AB
393 for (i = 0; i < ebcnt; ++i) {
394 if (bbt[i])
395 continue;
396 err = verify_eraseblock2(i);
397 if (unlikely(err))
398 goto out;
399 if (i % 256 == 0)
cd66a2df 400 pr_info("verified up to eraseblock %u\n", i);
bf60862a
AB
401 cond_resched();
402 }
cd66a2df 403 pr_info("verified %u eraseblocks\n", i);
bf60862a 404
725cd71c 405 err = mtdtest_erase_good_eraseblocks(mtd, bbt, 0, ebcnt);
bf60862a
AB
406 if (err)
407 goto out;
408
409 err = verify_all_eraseblocks_ff();
410 if (err)
411 goto out;
412
cd66a2df 413 pr_info("finished with %d errors\n", errcnt);
bf60862a
AB
414
415out:
416 kfree(bbt);
417 kfree(readbuf);
418 kfree(writebuf);
419 put_mtd_device(mtd);
420 if (err)
cd66a2df 421 pr_info("error %d occurred\n", err);
bf60862a
AB
422 printk(KERN_INFO "=================================================\n");
423 return err;
424}
425module_init(mtd_subpagetest_init);
426
427static void __exit mtd_subpagetest_exit(void)
428{
429 return;
430}
431module_exit(mtd_subpagetest_exit);
432
433MODULE_DESCRIPTION("Subpage test module");
434MODULE_AUTHOR("Adrian Hunter");
435MODULE_LICENSE("GPL");
This page took 0.344903 seconds and 5 git commands to generate.